From 11fba9015c645fc262ca27c0e91ca28245f4ba64 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 28 Feb 2015 08:57:21 +0100 Subject: [PATCH 001/291] tlsdate: blacklist darwin refs http://hydra.nixos.org/build/19975753 --- pkgs/tools/networking/tlsdate/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/tlsdate/default.nix b/pkgs/tools/networking/tlsdate/default.nix index eea7dfcccac..ae23978a756 100644 --- a/pkgs/tools/networking/tlsdate/default.nix +++ b/pkgs/tools/networking/tlsdate/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { meta = { description = "Secure parasitic rdate replacement"; homepage = https://github.com/ioerror/tlsdate; - platforms = stdenv.lib.platforms.all; maintainers = [ stdenv.lib.maintainers.tv ]; + platforms = stdenv.lib.platforms.allBut [ "darwin" ]; }; } From d596c3c4c26d8b8cd9732476945b07f7a102b3a4 Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sun, 28 Jun 2015 21:35:43 +0200 Subject: [PATCH 002/291] Fix detection of clang toolset This makes boost buildable under clangStdenv and libcxxStdenv on non-darwin. --- pkgs/development/libraries/boost/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index cd98c0a312b..727aa743f4f 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -1,5 +1,5 @@ { stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames -, toolset ? if stdenv.isDarwin then "clang" else null +, toolset ? if stdenv.cc.isClang then "clang" else null , enableRelease ? true , enableDebug ? false , enableSingleThreaded ? false From 91a2973dc3a33f76fa212be1258c00ea81c2d21e Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 30 Jun 2015 18:57:21 +0100 Subject: [PATCH 003/291] Add --ext option to nix-prefetch-zip --- pkgs/build-support/fetchzip/nix-prefetch-zip | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/build-support/fetchzip/nix-prefetch-zip b/pkgs/build-support/fetchzip/nix-prefetch-zip index ccc03e087e5..aeea134f192 100755 --- a/pkgs/build-support/fetchzip/nix-prefetch-zip +++ b/pkgs/build-support/fetchzip/nix-prefetch-zip @@ -6,6 +6,7 @@ usage(){ Options: --url url The url of the archive to fetch. --name name The name to use for the store path (defaults to \`basename \$url\`). + --ext ext The file extension (.zip, .tar.gz, ...) to be REMOVED from name --hash hash The hash of unpacked archive. --hash-type type Use the specified cryptographic hash algorithm, which can be one of md5, sha1, and sha256. --leave-root Keep the root directory of the archive. @@ -16,6 +17,7 @@ Options: name="" +ext="" argi=0 argfun="" for arg; do @@ -23,6 +25,7 @@ for arg; do case $arg in --url) argfun=set_url;; --name) argfun=set_name;; + --ext) argfun=set_ext;; --hash) argfun=set_expHash;; --hash-type) argfun=set_hashType;; --leave-root) leaveRoot=true;; @@ -67,10 +70,12 @@ hashFormat="--base32" tmp=$(mktemp -d 2>/dev/null || mktemp -d -t "$$") trap "rm -rf '$tmp'" EXIT -unpackDirTmp=$tmp/unpacked-tmp/$name +dirname=$(basename -s "$ext" "$name") + +unpackDirTmp=$tmp/unpacked-tmp/$dirname mkdir -p $unpackDirTmp -unpackDir=$tmp/unpacked/$name +unpackDir=$tmp/unpacked/$dirname mkdir -p $unpackDir downloadedFile=$tmp/$name From 26963cfc2dfd8ba6bce927535317d799dda15102 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 22 Oct 2015 19:40:00 +0200 Subject: [PATCH 004/291] switch-to-configuration: Fix unit name quoting. Clearly it would be the best if we'd directly generate mount units instead of converting /etc/fstab. But in order to do that we need to test it throughly so this approach is for the next stable release. This fix however is intended for inclusion into release-14.12 and release-15.09. Using a simple regular expression unfortunately isn't sufficient for proper mount unit name quoting/escaping and there is a utility in systemd called systemd-escape which does nothing less than that. Of course, using an external program to escape the unit name is way more expensive and causes us to fork for each mount point. But given that we already do quite a lot of forks just for unit starting and stopping, I think it doesn't matter that much. Well, except if you have a whole bunch of mount points. However, if the latter is the case and you have thousands of mount points, you probably have stumbled over this already if your mount point contains a dash. As for my motivation to fix this: I've stumbled on this while trying to fix the "none" backend test for NixOps (see NixOS/nixops#350), where the target machines use /nix/.ro-store and /nix/.rw-store as mount points. The implementation we had so far did improperly escape it so those mount points got the following unit files: * nix-.ro-store.mount * nix-.rw-store.mount The correct names for these units are however: * nix-.ro\x2dstore.mount * nix-.rw\x2dstore.mount So using systemd-escape now properly generates these names. Signed-off-by: aszlig --- .../system/activation/switch-to-configuration.pl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nixos/modules/system/activation/switch-to-configuration.pl b/nixos/modules/system/activation/switch-to-configuration.pl index 655fbab2a84..747de89905d 100644 --- a/nixos/modules/system/activation/switch-to-configuration.pl +++ b/nixos/modules/system/activation/switch-to-configuration.pl @@ -261,12 +261,12 @@ while (my ($unit, $state) = each %{$activePrev}) { sub pathToUnitName { my ($path) = @_; - die unless substr($path, 0, 1) eq "/"; - return "-" if $path eq "/"; - $path = substr($path, 1); - $path =~ s/\//-/g; - # FIXME: handle - and unprintable characters. - return $path; + open my $cmd, "-|", "systemd-escape", "--suffix=mount", "-p", $path + or die "Unable to escape $path!\n"; + my $escaped = join "", <$cmd>; + chomp $escaped; + close $cmd or die; + return $escaped; } sub unique { @@ -290,7 +290,7 @@ my ($newFss, $newSwaps) = parseFstab "$out/etc/fstab"; foreach my $mountPoint (keys %$prevFss) { my $prev = $prevFss->{$mountPoint}; my $new = $newFss->{$mountPoint}; - my $unit = pathToUnitName($mountPoint) . ".mount"; + my $unit = pathToUnitName($mountPoint); if (!defined $new) { # Filesystem entry disappeared, so unmount it. $unitsToStop{$unit} = 1; From 80fb17b251d163345ddf8aa14be283dd2f9cbcc5 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 22 Oct 2015 19:50:12 +0200 Subject: [PATCH 005/291] nixos/nix-daemon: Require .mount for /nix/store. Also related to NixOS/nixops#350, because while switching to the new configuration, depending on /nix/store also propagates to the mount points for /nix/.ro-store and /nix/.rw-store and we don't get an error while trying to unmount them (because nix-daemon needs to be stopped for unmounting these paths). While Nix does have the option to set a different store path, I've found only hardcoded references in nix-daemon.nix, so I'm using a hardcoded reference here as well, because after all customizing the store path will probably only make sense on non-NixOS systems. Signed-off-by: aszlig --- nixos/modules/services/misc/nix-daemon.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index 4aed91c3497..5f73191c639 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -366,6 +366,8 @@ in // { CURL_CA_BUNDLE = "/etc/ssl/certs/ca-bundle.crt"; } // config.networking.proxy.envVars; + unitConfig.RequiresMountsFor = "/nix/store"; + serviceConfig = { Nice = cfg.daemonNiceLevel; IOSchedulingPriority = cfg.daemonIONiceLevel; From a1ca4985e3f052302fc422f53acafc8eac73fc38 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Wed, 28 Oct 2015 11:22:40 -0500 Subject: [PATCH 006/291] Munge is buildable/usable on osx. Also update the url to point to the migrated from google code url to github. --- pkgs/tools/security/munge/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/security/munge/default.nix b/pkgs/tools/security/munge/default.nix index f94eaabd2a4..96847c983f1 100644 --- a/pkgs/tools/security/munge/default.nix +++ b/pkgs/tools/security/munge/default.nix @@ -1,11 +1,13 @@ -{ stdenv, fetchurl, gnused, perl, libgcrypt, zlib, bzip2 }: +{ stdenv, fetchFromGitHub, gnused, perl, libgcrypt, zlib, bzip2 }: stdenv.mkDerivation rec { name = "munge-0.5.11"; - src = fetchurl { - url = "http://munge.googlecode.com/files/${name}.tar.bz2"; - sha256 = "19aijdrjij2g0xpqgl198jh131j94p4gvam047gsdc0wz0a5c1wf"; + src = fetchFromGitHub { + owner = "dun"; + repo = "munge"; + rev = "${name}"; + sha256 = "02847p742nq3cb8ayf5blrdicybq72nfsnggqkxr33cpppmsfwg9"; }; buildInputs = [ gnused perl libgcrypt zlib bzip2 ]; @@ -20,11 +22,10 @@ stdenv.mkDerivation rec { ]; meta = { - homepage = http://code.google.com/p/munge/; description = '' An authentication service for creating and validating credentials ''; maintainers = [ stdenv.lib.maintainers.rickynils ]; - platforms = stdenv.lib.platforms.linux; + platforms = stdenv.lib.platforms.unix; }; } From aa196067b1022b4cac877f4d9c6a533f9e2db6b6 Mon Sep 17 00:00:00 2001 From: Robert Glossop Date: Mon, 9 Nov 2015 15:56:44 -0500 Subject: [PATCH 007/291] ldap-client: don't break on test failures --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index edafbe5eab6..5e25ce29d86 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -422,6 +422,7 @@ self: super: { itanium-abi = dontCheck super.itanium-abi; katt = dontCheck super.katt; language-slice = dontCheck super.language-slice; + ldap-client = dontCheck super.ldap-client; lensref = dontCheck super.lensref; liquidhaskell = dontCheck super.liquidhaskell; lucid = dontCheck super.lucid; #https://github.com/chrisdone/lucid/issues/25 From bf0725ac7de5bb7a274e85e032a06ef8644c82be Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Fri, 27 Nov 2015 20:07:31 -0800 Subject: [PATCH 008/291] FlameGraph: init at 182b24fb --- pkgs/development/tools/flamegraph/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/tools/flamegraph/default.nix diff --git a/pkgs/development/tools/flamegraph/default.nix b/pkgs/development/tools/flamegraph/default.nix new file mode 100644 index 00000000000..1a57afbfa90 --- /dev/null +++ b/pkgs/development/tools/flamegraph/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub, perl }: + +stdenv.mkDerivation { + name = "FlameGraph-2015-10-10"; + + src = fetchFromGitHub { + owner = "brendangregg"; + repo = "FlameGraph"; + rev = "182b24fb635345d48c91ed1de58a08b620312f3d"; + sha256 = "1djz0wl8202a6j87ka9j3d8iw3bli056lrn73gv2i65p16rwk9kc"; + }; + + buildInputs = [ perl ]; + + installPhase = '' + mkdir -p $out/bin + for x in $src/*.pl $src/*.awk $src/dev/*.pl $src/dev/*.d; do + cp $x $out/bin + done + ''; + + meta = with stdenv.lib; { + license = licenses.cddl; + homepage = http://www.brendangregg.com/flamegraphs.html; + description = "Visualization for profiled code"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3acd586706c..70ef13ed928 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1504,6 +1504,8 @@ let fdk_aac = callPackage ../development/libraries/fdk-aac { }; + flameGraph = callPackage ../development/tools/flamegraph { }; + flvtool2 = callPackage ../tools/video/flvtool2 { }; fontforge = lowPrio (callPackage ../tools/misc/fontforge { }); From 316406269d90c7aeb3194e94e1066fe3e2d95f57 Mon Sep 17 00:00:00 2001 From: Bojan Nikolic Date: Fri, 18 Dec 2015 11:51:10 +0000 Subject: [PATCH 009/291] recoll: Enable parallel builds --- pkgs/applications/search/recoll/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 555da3de6d5..1867fa53253 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -48,6 +48,8 @@ stdenv.mkDerivation rec { done ''; + enableParallelBuilding = true; + meta = with stdenv.lib; { description = "A full-text search tool"; longDescription = '' From 98d1abd46b19da84d55bd5ce13431305751f571c Mon Sep 17 00:00:00 2001 From: Bojan Nikolic Date: Fri, 18 Dec 2015 13:51:58 +0000 Subject: [PATCH 010/291] recoll: Disable --install-layout --- pkgs/applications/search/recoll/default.nix | 2 ++ pkgs/applications/search/recoll/nodeblayout.patch | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 pkgs/applications/search/recoll/nodeblayout.patch diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 1867fa53253..ff75aa0e923 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { sha256 = "0ympk2w21cxfvysyx96p0npsa54csfc84cicpi8nsj1qp824zxwq"; }; + patches = [ ./nodeblayout.patch ]; + configureFlags = [ "--with-inotify" ]; buildInputs = [ qt4 xapian file python ]; diff --git a/pkgs/applications/search/recoll/nodeblayout.patch b/pkgs/applications/search/recoll/nodeblayout.patch new file mode 100644 index 00000000000..39988423ae1 --- /dev/null +++ b/pkgs/applications/search/recoll/nodeblayout.patch @@ -0,0 +1,12 @@ +diff -ru recoll-1.21.3-orig/recollinstall.in recoll-1.21.3/recollinstall.in +--- recoll-1.21.3-orig/recollinstall.in 2015-09-28 08:08:42.000000000 +0100 ++++ recoll-1.21.3/recollinstall.in 2015-12-13 22:48:30.361776374 +0000 +@@ -45,9 +45,6 @@ + mandir=$DESTDIR/$mandir + ROOTFORPYTHON="--root=${DESTDIR}" + fi +-if test -f /etc/debian_version ; then +- OPTSFORPYTHON=--install-layout=deb +-fi + + echo "Installing to $PREFIX" From d71b1294dcaf05faea752254fec039b00bd2d36d Mon Sep 17 00:00:00 2001 From: Bojan Nikolic Date: Fri, 18 Dec 2015 14:09:28 +0000 Subject: [PATCH 011/291] recoll: 1.20.6 -> 1.21.3 Add dependency on bison. Correct corruption caused by substituteInPlace replacing non-commands in the filters --- pkgs/applications/search/recoll/default.nix | 12 ++++++------ pkgs/applications/search/recoll/versionawk.patch | 12 ++++++++++++ 2 files changed, 18 insertions(+), 6 deletions(-) create mode 100644 pkgs/applications/search/recoll/versionawk.patch diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index ff75aa0e923..c396870f9e5 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl +{ stdenv, fetchurl, bison , qt4, xapian, file, python, perl , djvulibre, groff, libxslt, unzip, poppler_utils, antiword, catdoc, lyx , libwpd, unrtf, untex @@ -7,19 +7,19 @@ assert stdenv.system != "powerpc-linux"; stdenv.mkDerivation rec { - ver = "1.20.6"; + ver = "1.21.3"; name = "recoll-${ver}"; src = fetchurl { url = "http://www.lesbonscomptes.com/recoll/${name}.tar.gz"; - sha256 = "0ympk2w21cxfvysyx96p0npsa54csfc84cicpi8nsj1qp824zxwq"; + sha256 = "66f039f08b149d5e4840664d4a636f6b55145b02072f87aab83282ebe0cd593a"; }; - patches = [ ./nodeblayout.patch ]; + patches = [ ./nodeblayout.patch ./versionawk.patch ]; configureFlags = [ "--with-inotify" ]; - buildInputs = [ qt4 xapian file python ]; + buildInputs = [ qt4 xapian file python bison]; # the filters search through ${PATH} using a sh proc 'checkcmds' for the # filtering utils. Short circuit this by replacing the filtering command with @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { substituteInPlace $f --replace catppt ${catdoc}/bin/catppt substituteInPlace $f --replace djvused ${djvulibre}/bin/djvused substituteInPlace $f --replace djvutxt ${djvulibre}/bin/djvutxt - substituteInPlace $f --replace grep ${gnugrep}/bin/grep + substituteInPlace $f --replace egrep ${gnugrep}/bin/egrep substituteInPlace $f --replace groff ${groff}/bin/groff substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip substituteInPlace $f --replace iconv ${libiconv}/bin/iconv diff --git a/pkgs/applications/search/recoll/versionawk.patch b/pkgs/applications/search/recoll/versionawk.patch new file mode 100644 index 00000000000..a03ffbc16df --- /dev/null +++ b/pkgs/applications/search/recoll/versionawk.patch @@ -0,0 +1,12 @@ +diff -ru recoll-1.21.3-orig/filters/rclpdf recoll-1.21.3/filters/rclpdf +--- recoll-1.21.3-orig/filters/rclpdf 2015-09-28 08:08:15.000000000 +0100 ++++ recoll-1.21.3/filters/rclpdf 2015-12-14 21:37:01.984945925 +0000 +@@ -129,7 +129,7 @@ + { + # Test poppler version: at some point before 0.24, poppler began + # to properly escape text inside the header (but not the body). +- XYZ=`pdftotext -v 2>&1 | awk '/pdftotext/{print $3}'` ++ XYZ=`pdftotext -v 2>&1 | awk '/version/{print $3}'` + MAJOR=`echo $XYZ | cut -d. -f 1` + MINOR=`echo $XYZ | cut -d. -f 2` + escapeheader=1 From c8368cf124c61e0b252b5e05c88c56d274424de0 Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Mon, 28 Dec 2015 00:31:48 -0800 Subject: [PATCH 012/291] google-chrome: add -beta and -unstable variants It is a little weird that chromium has chromium, chromiumBeta, chromiumDev but this one is google-chrome, google-chrome-beta, google-chrome-dev. Not quite sure what the best resolution is, if any. --- .../browsers/google-chrome/default.nix | 32 +++++++++++-------- pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/networking/browsers/google-chrome/default.nix b/pkgs/applications/networking/browsers/google-chrome/default.nix index b05da9c6700..89e545d12e4 100644 --- a/pkgs/applications/networking/browsers/google-chrome/default.nix +++ b/pkgs/applications/networking/browsers/google-chrome/default.nix @@ -35,8 +35,6 @@ with (import ../chromium/source/update.nix { }).getChannel channel; let - dist = if channel == "dev" then "unstable" else channel; - opusWithCustomModes = libopus.override { withCustomModes = true; }; @@ -71,7 +69,13 @@ in stdenv.mkDerivation rec { ''; installPhase = '' - exe=$out/bin/google-chrome-${dist} + case ${channel} in + beta) appname=chrome-beta dist=beta ;; + dev) appname=chrome-unstable dist=unstable ;; + *) appname=chrome dist=stable ;; + esac + + exe=$out/bin/google-chrome-$dist rpath="${env}/lib:${env}/lib64" mkdir -p $out/bin $out/share @@ -79,32 +83,32 @@ in stdenv.mkDerivation rec { cp -a opt/* $out/share cp -a usr/share/* $out/share - substituteInPlace $out/share/applications/google-chrome.desktop \ - --replace /usr/bin/google-chrome-${dist} $exe - substituteInPlace $out/share/gnome-control-center/default-apps/google-chrome.xml \ - --replace /opt/google/chrome/google-chrome $exe - substituteInPlace $out/share/menu/google-chrome.menu \ + substituteInPlace $out/share/applications/google-$appname.desktop \ + --replace /usr/bin/google-chrome-$dist $exe + substituteInPlace $out/share/gnome-control-center/default-apps/google-$appname.xml \ + --replace /opt/google/$appname/google-$appname $exe + substituteInPlace $out/share/menu/google-$appname.menu \ --replace /opt $out/share \ - --replace $out/share/google/chrome/google-chrome $exe + --replace $out/share/google/chrome/google-$appname $exe - for icon_file in $out/share/google/chrome/product_logo_*[0-9].png; do + for icon_file in $out/share/google/chrome*/product_logo_*[0-9].png; do num_and_suffix="''${icon_file##*logo_}" icon_size="''${num_and_suffix%.*}" logo_output_prefix="$out/share/icons/hicolor" logo_output_path="$logo_output_prefix/''${icon_size}x''${icon_size}/apps" mkdir -p "$logo_output_path" - mv "$icon_file" "$logo_output_path/google-chrome.png" + mv "$icon_file" "$logo_output_path/google-$appname.png" done cat > $exe << EOF #!${bash}/bin/sh export LD_LIBRARY_PATH=$rpath\''${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} export PATH=${env}/bin\''${PATH:+:\$PATH} - $out/share/google/chrome/google-chrome "\$@" + $out/share/google/$appname/google-$appname "\$@" EOF chmod +x $exe - for elf in $out/share/google/chrome/{chrome,chrome-sandbox,nacl_helper}; do + for elf in $out/share/google/$appname/{chrome,chrome-sandbox,nacl_helper}; do patchelf --set-rpath $rpath $elf patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $elf done @@ -112,7 +116,7 @@ in stdenv.mkDerivation rec { meta = { description = "A freeware web browser developed by Google"; - homepage = "https://www.google.com/chrome/browser/"; + homepage = https://www.google.com/chrome/browser/; license = licenses.unfree; maintainers = [ maintainers.msteen ]; platforms = platforms.linux; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 092f03d777e..0a92461c3c6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12025,6 +12025,10 @@ let google-chrome = callPackage ../applications/networking/browsers/google-chrome { gconf = gnome.GConf; }; + google-chrome-beta = google-chrome.override { channel = "beta"; }; + + google-chrome-dev = google-chrome.override { channel = "dev"; }; + googleearth = callPackage_i686 ../applications/misc/googleearth { }; google_talk_plugin = callPackage ../applications/networking/browsers/mozilla-plugins/google-talk-plugin { From 4c0988b15deffa5762aa293f13c90dc47ee600d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve=20M=C3=BCller?= Date: Fri, 8 Jan 2016 13:30:27 +0100 Subject: [PATCH 013/291] phpPackages: init php56Packages and php70Packages --- pkgs/top-level/all-packages.nix | 10 ++- pkgs/top-level/php-packages.nix | 132 +++++++++++++++++++++++++++----- 2 files changed, 122 insertions(+), 20 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ef326cd0c5d..902e181e142 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5201,12 +5201,20 @@ let php = php56; - phpPackages = recurseIntoAttrs (callPackage ./php-packages.nix {}); + phpPackages = php56Packages; php55Packages = recurseIntoAttrs (callPackage ./php-packages.nix { php = php55; }); + php56Packages = recurseIntoAttrs (callPackage ./php-packages.nix { + php = php56; + }); + + php70Packages = recurseIntoAttrs (callPackage ./php-packages.nix { + php = php70; + }); + inherit (callPackages ../development/interpreters/php { }) php54 php55 diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix index 02ff5a3653e..70006922079 100644 --- a/pkgs/top-level/php-packages.nix +++ b/pkgs/top-level/php-packages.nix @@ -1,25 +1,46 @@ -{ pkgs, php }: +{ pkgs, fetchgit, php }: -let self = with self; { - buildPecl = import ../build-support/build-pecl.nix { - inherit php; - inherit (pkgs) stdenv autoreconfHook fetchurl; - }; +let + self = with self; { + buildPecl = import ../build-support/build-pecl.nix { + inherit php; + inherit (pkgs) stdenv autoreconfHook fetchurl; + }; + isPhpOlder55 = pkgs.lib.versionOlder php.version "5.5"; + isPhp7 = pkgs.lib.versionAtLeast php.version "7.0"; - apcu = buildPecl { + apcu = if isPhp7 then apcu51 else apcu40; + + apcu40 = assert !isPhp7; buildPecl { name = "apcu-4.0.7"; sha256 = "1mhbz56mbnq7dryf2d64l84lj3fpr5ilmg2424glans3wcg772hp"; }; - imagick = buildPecl { + apcu51 = assert isPhp7; buildPecl { + name = "apcu-5.1.2"; + + sha256 = "0r5pfbjbmdj46h20jm3iqmy969qd27ajyf0phjhgykv6j0cqjlgd"; + }; + + imagick = if isPhp7 then imagick34 else imagick31; + + imagick31 = assert !isPhp7; buildPecl { name = "imagick-3.1.2"; sha256 = "14vclf2pqcgf3w8nzqbdw0b9v30q898344c84jdbw2sa62n6k1sj"; configureFlags = "--with-imagick=${pkgs.imagemagick}"; buildInputs = [ pkgs.pkgconfig ]; }; - memcache = buildPecl { + imagick34 = buildPecl { + name = "imagick-3.4.0RC4"; + sha256 = "0fdkzdv3r8sm6y1x11kp3rxsimq6zf15xvi0mhn57svmnan4zh0i"; + configureFlags = "--with-imagick=${pkgs.imagemagick}"; + buildInputs = [ pkgs.pkgconfig ]; + }; + + # No support for PHP 7 yet + memcache = assert !isPhp7; buildPecl { name = "memcache-3.0.8"; sha256 = "04c35rj0cvq5ygn2jgmyvqcb0k8d03v4k642b6i37zgv7x15pbic"; @@ -27,7 +48,9 @@ let self = with self; { configureFlags = "--with-zlib-dir=${pkgs.zlib}"; }; - memcached = buildPecl { + memcached = if isPhp7 then memcachedPhp7 else memcached22; + + memcached22 = assert !isPhp7; buildPecl { name = "memcached-2.2.0"; sha256 = "0n4z2mp4rvrbmxq079zdsrhjxjkmhz6mzi7mlcipz02cdl7n1f8p"; @@ -40,7 +63,27 @@ let self = with self; { buildInputs = with pkgs; [ pkgconfig cyrus_sasl ]; }; - xdebug = buildPecl { + # Not released yet + memcachedPhp7 = assert isPhp7; buildPecl rec { + name = "memcached-php7"; + + src = fetchgit { + url = "https://github.com/php-memcached-dev/php-memcached"; + rev = "e573a6e8fc815f12153d2afd561fc84f74811e2f"; + sha256 = "f7acfdae04ef2ef9ece67b6d009aaf6604db64735fc7619f7169929aabb9c58f"; + }; + + configureFlags = [ + "--with-zlib-dir=${pkgs.zlib}" + "--with-libmemcached-dir=${pkgs.libmemcached}" + ]; + + buildInputs = with pkgs; [ pkgconfig cyrus_sasl ]; + }; + + xdebug = if isPhp7 then xdebug24 else xdebug23; + + xdebug23 = assert !isPhp7; buildPecl { name = "xdebug-2.3.1"; sha256 = "0k567i6w7cw14m13s7ip0946pvy5ii16cjwjcinnviw9c24na0xm"; @@ -49,13 +92,25 @@ let self = with self; { checkTarget = "test"; }; - zendopcache = buildPecl { + xdebug24 = buildPecl { + name = "xdebug-2.4.0RC3"; + + sha256 = "06ppsihw4cl8kxmywvic6wsm4ps9pvsns2vbab9ivrfyp8b6h5dy"; + + doCheck = true; + checkTarget = "test"; + }; + + # Since PHP 5.5 OPcache is integrated in the core and has to be enabled via --enable-opcache during compilation. + zendopcache = assert isPhpOlder55; buildPecl { name = "zendopcache-7.0.3"; sha256 = "0qpfbkfy4wlnsfq4vc4q5wvaia83l89ky33s08gqrcfp3p1adn88"; }; - zmq = buildPecl { + zmq = if isPhp7 then zmqPhp7 else zmq11; + + zmq11 = assert !isPhp7; buildPecl { name = "zmq-1.1.2"; sha256 = "0ccz73p8pkda3y9p9qbr3m19m0yrf7k2bvqgbaly3ibgh9bazc69"; @@ -67,7 +122,25 @@ let self = with self; { buildInputs = [ pkgs.pkgconfig ]; }; - xcache = buildPecl rec { + # Not released yet + zmqPhp7 = assert isPhp7; buildPecl rec { + name = "zmq-php7"; + + src = fetchgit { + url = "https://github.com/mkoppanen/php-zmq"; + rev = "94d2b87d195f870775b153b42c29f30da049f4db"; + sha256 = "51a25b1029800d8abe03c5c08c50d6aee941c95c741dc22d2f853052511f4296"; + }; + + configureFlags = [ + "--with-zmq=${pkgs.zeromq2}" + ]; + + buildInputs = [ pkgs.pkgconfig ]; + }; + + # No support for PHP 7 and probably never will be + xcache = assert !isPhp7; buildPecl rec { name = "xcache-${version}"; version = "3.2.0"; @@ -92,14 +165,22 @@ let self = with self; { buildInputs = [ pkgs.m4 ]; }; - pthreads = assert pkgs.config.php.zts or false; buildPecl { - #pthreads requires a build of PHP with ZTS (Zend Thread Safety) enabled - #--enable-maintainer-zts or --enable-zts on Windows + #pthreads requires a build of PHP with ZTS (Zend Thread Safety) enabled + #--enable-maintainer-zts or --enable-zts on Windows + pthreads = if isPhp7 then pthreads31 else pthreads20; + + pthreads20 = assert (pkgs.config.php.zts or false) && (!isPhp7); buildPecl { name = "pthreads-2.0.10"; sha256 = "1xlcb1b1g10jd0xhm3c01a06yqpb5qln47pd1k522138324qvpwb"; }; - geoip = buildPecl { + pthreads31 = assert (pkgs.config.php.zts or false) && isPhp7; buildPecl { + name = "pthreads-3.1.5"; + sha256 = "1ziap0py3zrc7qj9lw4nzq6wx1viyj8v9y1babchizzan014x6p5"; + }; + + # No support for PHP 7 yet + geoip = assert !isPhp7; buildPecl { name = "geoip-1.1.0"; sha256 = "1fcqpsvwba84gqqmwyb5x5xhkazprwkpsnn4sv2gfbsd4svxxil2"; @@ -108,11 +189,24 @@ let self = with self; { buildInputs = [ pkgs.geoip ]; }; - redis = buildPecl { + redis = if isPhp7 then redisPhp7 else redis22; + + redis22 = buildPecl { name = "redis-2.2.7"; sha256 = "00n9dpk9ak0bl35sbcd3msr78sijrxdlb727nhg7f2g7swf37rcm"; }; + # Not released yet + redisPhp7 = assert isPhp7; buildPecl rec { + name = "redis-php7"; + + src = fetchgit { + url = "https://github.com/phpredis/phpredis"; + rev = "4a37e47d0256581ce2f7a3b15b5bb932add09f36"; + sha256 = "ac5894d168e22ae4a770ce252cfbd07d0f9f1a5b48b084c0559b67fe4d3e51cb"; + }; + }; + composer = pkgs.stdenv.mkDerivation rec { name = "composer-${version}"; version = "1.0.0-alpha11"; From a2db14925b9e8c84c080b8e4d48c22e6c8aa72a2 Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Fri, 18 Sep 2015 17:29:10 +0200 Subject: [PATCH 014/291] nixos: Added libinput configuration like there was for synaptics --- nixos/modules/module-list.nix | 1 + .../services/x11/hardware/libinput.nix | 125 ++++++++++++++++++ 2 files changed, 126 insertions(+) create mode 100644 nixos/modules/services/x11/hardware/libinput.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 2ff61877c23..de6a6a5844b 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -437,6 +437,7 @@ ./services/x11/display-managers/lightdm.nix ./services/x11/display-managers/sddm.nix ./services/x11/display-managers/slim.nix + ./services/x11/hardware/libinput.nix ./services/x11/hardware/multitouch.nix ./services/x11/hardware/synaptics.nix ./services/x11/hardware/wacom.nix diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix new file mode 100644 index 00000000000..0b4637dc55f --- /dev/null +++ b/nixos/modules/services/x11/hardware/libinput.nix @@ -0,0 +1,125 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let cfg = config.services.xserver.libinput; +in { + + options = { + + services.xserver.libinput = { + + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = "Whether to enable libinput support."; + }; + + dev = mkOption { + type = types.nullOr types.str; + default = null; + example = "/dev/input/event0"; + description = + '' + Path for touchpad device. Set to null to apply to any + auto-detected touchpad. + ''; + }; + + accelSpeed = mkOption { + type = types.nullOr types.string; + default = null; + description = "Cursor acceleration (how fast speed increases from minSpeed to maxSpeed)."; + }; + + buttonMapping = mkOption { + type = types.nullOr types.string; + default = null; + description = + '' + Sets the logical button mapping for this device, see XSetPointerMapping(3). The string must + be a space-separated list of button mappings in the order of the logical buttons on the + device, starting with button 1. The default mapping is "1 2 3 ... 32". A mapping of 0 deac‐ + tivates the button. Multiple buttons can have the same mapping. Invalid mapping strings are + discarded and the default mapping is used for all buttons. Buttons not specified in the + user's mapping use the default mapping. See section BUTTON MAPPING for more details. + ''; + }; + + calibrationMatrix = mkOption { + type = types.nullOr types.string; + default = null; + description = + '' + A string of 9 space-separated floating point numbers. Sets the calibration matrix to the + 3x3 matrix where the first row is (abc), the second row is (def) and the third row is (ghi). + ''; + }; + + tapping = mkOption { + type = types.bool; + default = true; + example = false; + description = + '' + Enables or disables tap-to-click behavior. + ''; + }; + + tappingDragLock = mkOption { + type = types.bool; + default = true; + example = false; + description = + '' + Enables or disables drag lock during tapping behavior. When enabled, a finger up during tap- + and-drag will not immediately release the button. If the finger is set down again within the + timeout, the draging process continues. + ''; + }; + + + additionalOptions = mkOption { + type = types.str; + default = ""; + example = '' + Option "RTCornerButton" "2" + Option "RBCornerButton" "3" + ''; + description = '' + Additional options for libinput touchpad driver. + ''; + }; + + }; + + }; + + + config = mkIf cfg.enable { + + services.xserver.modules = [ pkgs.xorg.xf86inputlibinput ]; + + environment.systemPackages = [ pkgs.xorg.xf86inputlibinput ]; + + services.xserver.config = + '' + # Automatically enable the libinput driver for all touchpads. + Section "InputClass" + Identifier "libinputConfiguration" + MatchIsTouchpad "on" + ${optionalString (cfg.dev != null) ''MatchDevicePath "${cfg.dev}"''} + Driver "libinput" + ${optionalString (cfg.accelSpeed != null) ''Option "AccelSpeed" "${cfg.accelSpeed}"''} + ${optionalString (cfg.buttonMapping != null) ''Option "ButtonMapping" "${cfg.buttonMapping}"''} + ${optionalString (cfg.calibrationMatrix != null) ''Option "CalibrationMatrix" "${cfg.calibrationMatrix}"''} + ${if cfg.tapping then ''Option "Tapping" "1"'' else ""} + ${if cfg.tappingDragLock then ''Option "TappingDragLock" "1"'' else ""} + ${cfg.additionalOptions} + EndSection + ''; + + }; + +} From d3f687951a18f184e609a44aa06af3b271e39d81 Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Wed, 13 Jan 2016 09:27:02 +0100 Subject: [PATCH 015/291] nixos: libinput added options - natural scrolling - scroll method - disable while typing --- .../services/x11/hardware/libinput.nix | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix index 0b4637dc55f..a5629db53fe 100644 --- a/nixos/modules/services/x11/hardware/libinput.nix +++ b/nixos/modules/services/x11/hardware/libinput.nix @@ -57,6 +57,13 @@ in { ''; }; + naturalScrolling = mkOption { + type = types.bool; + default = false; + example = true; + description = "Enables or disables natural scrolling behavior."; + }; + tapping = mkOption { type = types.bool; default = true; @@ -67,6 +74,27 @@ in { ''; }; + scrollMethod = mkOption { + type = types.enum [ "twofinger" "edge" "none" ]; + default = "twofinger"; + example = "edge"; + description = + '' + Specify the scrolling method. + ''; + }; + + disableWhileTyping = mkOption { + type = types.bool; + default = true; + example = false; + description = + '' + Disable input method while typing. + ''; + }; + + tappingDragLock = mkOption { type = types.bool; default = true; @@ -114,8 +142,11 @@ in { ${optionalString (cfg.accelSpeed != null) ''Option "AccelSpeed" "${cfg.accelSpeed}"''} ${optionalString (cfg.buttonMapping != null) ''Option "ButtonMapping" "${cfg.buttonMapping}"''} ${optionalString (cfg.calibrationMatrix != null) ''Option "CalibrationMatrix" "${cfg.calibrationMatrix}"''} + ${optionalString cfg.naturalScrolling ''Option "NaturalScrolling" "on"''} ${if cfg.tapping then ''Option "Tapping" "1"'' else ""} ${if cfg.tappingDragLock then ''Option "TappingDragLock" "1"'' else ""} + Option "ScrollMethod" "${cfg.scrollMethod}" + ${optionalString cfg.disableWhileTyping ''Option "DisableWhileTyping" "on"''} ${cfg.additionalOptions} EndSection ''; From 5d4948e18368aa65fd65d8ad13f95c543d1f7889 Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Fri, 22 Jan 2016 11:46:02 +0100 Subject: [PATCH 016/291] libinput: configuration support: Polishing + addition of missing options --- .../services/x11/hardware/libinput.nix | 113 +++++++++++++++--- 1 file changed, 96 insertions(+), 17 deletions(-) diff --git a/nixos/modules/services/x11/hardware/libinput.nix b/nixos/modules/services/x11/hardware/libinput.nix index a5629db53fe..fb9e24160e9 100644 --- a/nixos/modules/services/x11/hardware/libinput.nix +++ b/nixos/modules/services/x11/hardware/libinput.nix @@ -3,6 +3,7 @@ with lib; let cfg = config.services.xserver.libinput; + xorgBool = v: if v then "on" else "off"; in { options = { @@ -27,6 +28,18 @@ in { ''; }; + accelProfile = mkOption { + type = types.enum [ "flat" "adaptive" ]; + default = "flat"; + example = "adaptive"; + description = + '' + Sets the pointer acceleration profile to the given profile. Permitted values are adaptive, flat. + Not all devices support this option or all profiles. If a profile is unsupported, the default profile + for this is used. For a description on the profiles and their behavior, see the libinput documentation. + ''; + }; + accelSpeed = mkOption { type = types.nullOr types.string; default = null; @@ -57,6 +70,36 @@ in { ''; }; + clickMethod = mkOption { + type = types.nullOr (types.enum [ "none" "buttonareas" "clickfinger" ]); + default = null; + example = "none"; + description = + '' + Enables a click method. Permitted values are none, buttonareas, clickfinger. + Not all devices support all methods, if an option is unsupported, + the default click method for this device is used. + ''; + }; + + leftHanded = mkOption { + type = types.bool; + default = false; + example = true; + description = "Enables left-handed button orientation, i.e. swapping left and right buttons."; + }; + + middleEmulation = mkOption { + type = types.bool; + default = true; + example = false; + description = + '' + Enables middle button emulation. When enabled, pressing the left and right buttons + simultaneously produces a middle mouse button click. + ''; + }; + naturalScrolling = mkOption { type = types.bool; default = false; @@ -64,13 +107,14 @@ in { description = "Enables or disables natural scrolling behavior."; }; - tapping = mkOption { - type = types.bool; - default = true; - example = false; + scrollButton = mkOption { + type = types.nullOr types.int; + default = null; + example = 1; description = '' - Enables or disables tap-to-click behavior. + Designates a button as scroll button. If the ScrollMethod is button and the button is logically + held down, x/y axis movement is converted into scroll events. ''; }; @@ -84,16 +128,37 @@ in { ''; }; - disableWhileTyping = mkOption { + horizontalScrolling = mkOption { type = types.bool; default = true; example = false; description = '' - Disable input method while typing. + Disables horizontal scrolling. When disabled, this driver will discard any horizontal scroll + events from libinput. Note that this does not disable horizontal scrolling, it merely + discards the horizontal axis from any scroll events. ''; }; + sendEventsMode = mkOption { + type = types.enum [ "disabled" "enabled" "disabled-on-external-mouse" ]; + default = "enabled"; + example = "disabled"; + description = + '' + Sets the send events mode to disabled, enabled, or "disable when an external mouse is connected". + ''; + }; + + tapping = mkOption { + type = types.bool; + default = true; + example = false; + description = + '' + Enables or disables tap-to-click behavior. + ''; + }; tappingDragLock = mkOption { type = types.bool; @@ -107,17 +172,24 @@ in { ''; }; + disableWhileTyping = mkOption { + type = types.bool; + default = true; + example = false; + description = + '' + Disable input method while typing. + ''; + }; additionalOptions = mkOption { type = types.str; default = ""; - example = '' - Option "RTCornerButton" "2" - Option "RBCornerButton" "3" - ''; - description = '' - Additional options for libinput touchpad driver. + example = + '' + Option "DragLockButtons" "L1 B1 L2 B2" ''; + description = "Additional options for libinput touchpad driver."; }; }; @@ -139,14 +211,21 @@ in { MatchIsTouchpad "on" ${optionalString (cfg.dev != null) ''MatchDevicePath "${cfg.dev}"''} Driver "libinput" + Option "AccelProfile" "${cfg.accelProfile}" ${optionalString (cfg.accelSpeed != null) ''Option "AccelSpeed" "${cfg.accelSpeed}"''} ${optionalString (cfg.buttonMapping != null) ''Option "ButtonMapping" "${cfg.buttonMapping}"''} ${optionalString (cfg.calibrationMatrix != null) ''Option "CalibrationMatrix" "${cfg.calibrationMatrix}"''} - ${optionalString cfg.naturalScrolling ''Option "NaturalScrolling" "on"''} - ${if cfg.tapping then ''Option "Tapping" "1"'' else ""} - ${if cfg.tappingDragLock then ''Option "TappingDragLock" "1"'' else ""} + ${optionalString (cfg.clickMethod != null) ''Option "ClickMethod" "${cfg.clickMethod}"''} + Option "LeftHanded" "${xorgBool cfg.leftHanded}" + Option "MiddleEmulation" "${xorgBool cfg.middleEmulation}" + Option "NaturalScrolling" "${xorgBool cfg.naturalScrolling}" + ${optionalString (cfg.scrollButton != null) ''Option "ScrollButton" "${cfg.scrollButton}"''} Option "ScrollMethod" "${cfg.scrollMethod}" - ${optionalString cfg.disableWhileTyping ''Option "DisableWhileTyping" "on"''} + Option "HorizontalScrolling" "${xorgBool cfg.horizontalScrolling}" + Option "SendEventsMode" "${cfg.sendEventsMode}" + Option "Tapping" "${xorgBool cfg.tapping}" + Option "TappingDragLock" "${xorgBool cfg.tappingDragLock}" + Option "DisableWhileTyping" "${xorgBool cfg.disableWhileTyping}" ${cfg.additionalOptions} EndSection ''; From c90c30dd1e9db82d8a60c9578cddd87dd130e89b Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Fri, 30 Oct 2015 01:04:31 +0100 Subject: [PATCH 017/291] nix-generate-from-cpan: large refactor This commit includes a substantial refactoring of `nix-generate-from-cpan`. This somewhat simplifies the code through the use of the CPAN::Meta module while adding the following features: - The program now takes an optional maintainer on the command line that is subsequently added into the generated package. - An attempt is made to convert the license specified inside the META.json or META.yaml file to a license in `stdenv.lib.licenses`. - An attempt is made to disambiguate attribute names of packages whose name is a reserved word in Nix. - Write logging output using Log::Log4perl. - Print module RSS feed URL. The RSS feed, hosted by MetaCPAN, can be used to track updates to the module. --- .../scripts/nix-generate-from-cpan.nix | 12 +- maintainers/scripts/nix-generate-from-cpan.pl | 477 ++++++++++++++---- 2 files changed, 390 insertions(+), 99 deletions(-) diff --git a/maintainers/scripts/nix-generate-from-cpan.nix b/maintainers/scripts/nix-generate-from-cpan.nix index 056cd994ba2..864fd4e83f6 100644 --- a/maintainers/scripts/nix-generate-from-cpan.nix +++ b/maintainers/scripts/nix-generate-from-cpan.nix @@ -1,22 +1,24 @@ { stdenv, makeWrapper, perl, perlPackages }: stdenv.mkDerivation { - name = "nix-generate-from-cpan-1"; + name = "nix-generate-from-cpan-2"; - buildInputs = [ makeWrapper perl perlPackages.YAMLLibYAML perlPackages.JSON perlPackages.CPANPLUS ]; + buildInputs = with perlPackages; [ + makeWrapper perl CPANMeta GetoptLongDescriptive CPANPLUS Readonly Log4Perl + ]; - unpackPhase = "true"; - buildPhase = "true"; + phases = [ "installPhase" ]; installPhase = '' mkdir -p $out/bin cp ${./nix-generate-from-cpan.pl} $out/bin/nix-generate-from-cpan + patchShebangs $out/bin/nix-generate-from-cpan wrapProgram $out/bin/nix-generate-from-cpan --set PERL5LIB $PERL5LIB ''; meta = { - maintainers = [ stdenv.lib.maintainers.eelco ]; + maintainers = with stdenv.lib.maintainers; [ eelco rycee ]; description = "Utility to generate a Nix expression for a Perl package from CPAN"; }; } diff --git a/maintainers/scripts/nix-generate-from-cpan.pl b/maintainers/scripts/nix-generate-from-cpan.pl index 56709ca8000..f1159c6d290 100755 --- a/maintainers/scripts/nix-generate-from-cpan.pl +++ b/maintainers/scripts/nix-generate-from-cpan.pl @@ -1,154 +1,440 @@ -#! /run/current-system/sw/bin/perl -w +#!/usr/bin/env perl +use utf8; use strict; -use CPANPLUS::Backend; -use YAML::XS; -use JSON; +use warnings; -my $module_name = $ARGV[0]; -die "syntax: $0 \n" unless defined $module_name; +use CPAN::Meta(); +use CPANPLUS::Backend(); +use Getopt::Long::Descriptive qw( describe_options ); +use JSON::PP qw( encode_json ); +use Log::Log4perl qw(:easy); +use Readonly(); -my $cb = CPANPLUS::Backend->new; +# Readonly hash that maps CPAN style license strings to information +# necessary to generate a Nixpkgs style license attribute. +Readonly::Hash my %LICENSE_MAP => ( -my @modules = $cb->search(type => "name", allow => [$module_name]); -die "module $module_name not found\n" if scalar @modules == 0; -die "multiple packages that match module $module_name\n" if scalar @modules > 1; -my $module = $modules[0]; + # The Perl 5 License (Artistic 1 & GPL 1 or later). + perl_5 => { + licenses => [qw( artistic1 gpl1Plus )] + }, + + # GNU Affero General Public License, Version 3. + agpl_3 => { + licenses => [qw( agpl3Plus )], + amb => 1 + }, + + # Apache Software License, Version 1.1. + apache_1_1 => { + licenses => ["Apache License 1.1"], + in_set => 0 + }, + + # Apache License, Version 2.0. + apache_2_0 => { + licenses => [qw( asl20 )] + }, + + # Artistic License, (Version 1). + artistic_1 => { + licenses => [qw( artistic1 )] + }, + + # Artistic License, Version 2.0. + artistic_2 => { + licenses => [qw( artistic2 )] + }, + + # BSD License (three-clause). + bsd => { + licenses => [qw( bsd3 )], + amb => 1 + }, + + # FreeBSD License (two-clause). + freebsd => { + licenses => [qw( bsd2 )] + }, + + # GNU Free Documentation License, Version 1.2. + gfdl_1_2 => { + licenses => [qw( fdl12 )] + }, + + # GNU Free Documentation License, Version 1.3. + gfdl_1_3 => { + licenses => [qw( fdl13 )] + }, + + # GNU General Public License, Version 1. + gpl_1 => { + licenses => [qw( gpl1Plus )], + amb => 1 + }, + + # GNU General Public License, Version 2. Note, we will interpret + # "gpl" alone as GPL v2+. + gpl_2 => { + licenses => [qw( gpl2Plus )], + amb => 1 + }, + + # GNU General Public License, Version 3. + gpl_3 => { + licenses => [qw( gpl3Plus )], + amb => 1 + }, + + # GNU Lesser General Public License, Version 2.1. Note, we will + # interpret "gpl" alone as LGPL v2.1+. + lgpl_2_1 => { + licenses => [qw( lgpl21Plus )], + amb => 1 + }, + + # GNU Lesser General Public License, Version 3.0. + lgpl_3_0 => { + licenses => [qw( lgpl3Plus )], + amb => 1 + }, + + # MIT (aka X11) License. + mit => { + licenses => [qw( mit )] + }, + + # Mozilla Public License, Version 1.0. + mozilla_1_0 => { + licenses => [qw( mpl10 )] + }, + + # Mozilla Public License, Version 1.1. + mozilla_1_1 => { + licenses => [qw( mpl11 )] + }, + + # OpenSSL License. + openssl => { + licenses => [qw( openssl )] + }, + + # Q Public License, Version 1.0. + qpl_1_0 => { + licenses => [qw( qpl )] + }, + + # Original SSLeay License. + ssleay => { + licenses => ["Original SSLeay License"], + in_set => 0 + }, + + # Sun Internet Standards Source License (SISSL). + sun => { + licenses => ["Sun Industry Standards Source License v1.1"], + in_set => 0 + }, + + # zlib License. + zlib => { + licenses => [qw( zlib )] + }, + + # Other Open Source Initiative (OSI) approved license. + open_source => { + licenses => [qw( free )], + amb => 1 + }, + + # Requires special permission from copyright holder. + restricted => { + licenses => [qw( unfree )], + amb => 1 + }, + + # Not an OSI approved license, but not restricted. Note, we + # currently map this to unfreeRedistributable, which is a + # conservative choice. + unrestricted => { + licenses => [qw( unfreeRedistributable )], + amb => 1 + }, + + # License not provided in metadata. + unknown => { + licenses => [qw( unknown )], + amb => 1 + } +); + +sub handle_opts { + my ( $opt, $usage ) = describe_options( + 'usage: $0 %o MODULE', + [ 'maintainer|m=s', 'the package maintainer' ], + [ 'debug|d', 'enable debug output' ], + [ 'help', 'print usage message and exit' ] + ); + + if ( $opt->help ) { + print $usage->text; + exit; + } + + my $module_name = $ARGV[0]; + + if ( !defined $module_name ) { + print STDERR "Missing module name\n"; + print STDERR $usage->text; + exit 1; + } + + return ( $opt, $module_name ); +} + +# Takes a Perl package attribute name and returns 1 if the name cannot +# be referred to as a bareword. This typically happens if the package +# name is a reserved Nix keyword. +sub is_reserved { + my ($pkg) = @_; + + return $pkg =~ /^(?: assert | + else | + if | + import | + in | + inherit | + let | + rec | + then | + while | + with )$/x; +} sub pkg_to_attr { - my ($pkg_name) = @_; - my $attr_name = $pkg_name; - $attr_name =~ s/-\d.*//; # strip version - return "LWP" if $attr_name eq "libwww-perl"; - $attr_name =~ s/-//g; - return $attr_name; + my ($module) = @_; + my $attr_name = $module->package_name; + if ( $attr_name eq "libwww-perl" ) { + return "LWP"; + } + else { + $attr_name =~ s/-//g; + return $attr_name; + } } sub get_pkg_name { my ($module) = @_; - my $pkg_name = $module->package; - $pkg_name =~ s/\.tar.*//; - $pkg_name =~ s/\.zip//; - return $pkg_name; + return $module->package_name . '-' . $module->package_version; } -my $pkg_name = get_pkg_name $module; -my $attr_name = pkg_to_attr $pkg_name; +sub read_meta { + my ($pkg_path) = @_; -print STDERR "attribute name: ", $attr_name, "\n"; -print STDERR "module: ", $module->module, "\n"; -print STDERR "version: ", $module->version, "\n"; -print STDERR "package: ", $module->package, , " (", $pkg_name, ", ", $attr_name, ")\n"; -print STDERR "path: ", $module->path, "\n"; + my $yaml_path = "$pkg_path/META.yml"; + my $json_path = "$pkg_path/META.json"; + my $meta; -my $tar_path = $module->fetch(); -print STDERR "downloaded to: $tar_path\n"; -print STDERR "sha-256: ", $module->status->checksum_value, "\n"; - -my $pkg_path = $module->extract(); -print STDERR "unpacked to: $pkg_path\n"; - -my $meta; -if (-e "$pkg_path/META.yml") { - eval { - $meta = YAML::XS::LoadFile("$pkg_path/META.yml"); - }; - if ($@) { - system("iconv -f windows-1252 -t utf-8 '$pkg_path/META.yml' > '$pkg_path/META.yml.tmp'"); - $meta = YAML::XS::LoadFile("$pkg_path/META.yml.tmp"); + if ( -r $json_path ) { + $meta = CPAN::Meta->load_file($json_path); + } + elsif ( -r $yaml_path ) { + $meta = CPAN::Meta->load_file($yaml_path); + } + else { + WARN("package has no META.yml or META.json"); } -} elsif (-e "$pkg_path/META.json") { - local $/; - open(my $fh, '<', "$pkg_path/META.json") or die; - $meta = decode_json(<$fh>); -} else { - warn "package has no META.yml or META.json\n"; -} -print STDERR "metadata: ", encode_json($meta), "\n" if defined $meta; + return $meta; +} # Map a module to the attribute corresponding to its package # (e.g. HTML::HeadParser will be mapped to HTMLParser, because that # module is in the HTML-Parser package). sub module_to_pkg { - my ($module_name) = @_; - my @modules = $cb->search(type => "name", allow => [$module_name]); - if (scalar @modules == 0) { + my ( $cb, $module_name ) = @_; + my @modules = $cb->search( type => "name", allow => [$module_name] ); + if ( scalar @modules == 0 ) { + # Fallback. $module_name =~ s/:://g; return $module_name; } - my $module = $modules[0]; - my $attr_name = pkg_to_attr(get_pkg_name $module); - print STDERR "mapped dep $module_name to $attr_name\n"; + my $module = $modules[0]; + my $attr_name = pkg_to_attr($module); + DEBUG("mapped dep $module_name to $attr_name"); return $attr_name; } sub get_deps { - my ($type) = @_; - my $deps; - if (defined $meta->{prereqs}) { - die "unimplemented"; - } elsif ($type eq "runtime") { - $deps = $meta->{requires}; - } elsif ($type eq "configure") { - $deps = $meta->{configure_requires}; - } elsif ($type eq "build") { - $deps = $meta->{build_requires}; - } + my ( $cb, $meta, $type ) = @_; + + return if !defined $meta; + + my $prereqs = $meta->effective_prereqs; + my $deps = $prereqs->requirements_for( $type, "requires" ); my @res; - foreach my $n (keys %{$deps}) { + foreach my $n ( $deps->required_modules ) { next if $n eq "perl"; + # Hacky way to figure out if this module is part of Perl. - if ($n !~ /^JSON/ && $n !~ /^YAML/ && $n !~ /^Module::Pluggable/) { + if ( $n !~ /^JSON/ && $n !~ /^YAML/ && $n !~ /^Module::Pluggable/ ) { eval "use $n;"; - if (!$@) { - print STDERR "skipping Perl-builtin module $n\n"; + if ( !$@ ) { + DEBUG("skipping Perl-builtin module $n"); next; } } - push @res, module_to_pkg($n); + + my $pkg = module_to_pkg( $cb, $n ); + + # If the package name is reserved then we need to refer to it + # through the "self" variable. + $pkg = "self.\"$pkg\"" if is_reserved($pkg); + + push @res, $pkg; } return @res; } sub uniq { - return keys %{{ map { $_ => 1 } @_ }}; + return keys %{ { map { $_ => 1 } @_ } }; } -my @build_deps = sort(uniq(get_deps("configure"), get_deps("build"), get_deps("test"))); -print STDERR "build deps: @build_deps\n"; +sub render_license { + my ($cpan_license) = @_; -my @runtime_deps = sort(uniq(get_deps("runtime"))); -print STDERR "runtime deps: @runtime_deps\n"; + return if !defined $cpan_license; -my $homepage = $meta->{resources}->{homepage}; -print STDERR "homepage: $homepage\n" if defined $homepage; + my $licenses; -my $description = $meta->{abstract}; -if (defined $description) { - $description = uc(substr($description, 0, 1)) . substr($description, 1); # capitalise first letter - $description =~ s/\.$//; # remove period at the end + # If the license is ambiguous then we'll print an extra warning. + # For example, "gpl_2" is ambiguous since it may refer to exactly + # "GPL v2" or to "GPL v2 or later". + my $amb = 0; + + # Whether the license is available inside `stdenv.lib.licenses`. + my $in_set = 1; + + my $nix_license = $LICENSE_MAP{$cpan_license}; + if ( !$nix_license ) { + WARN("Unknown license: $cpan_license"); + $licenses = [$cpan_license]; + $in_set = 0; + } + else { + $licenses = $nix_license->{licenses}; + $amb = $nix_license->{amb}; + $in_set = !$nix_license->{in_set}; + } + + my $license_line; + + if ( @$licenses == 0 ) { + + # Avoid defining the license line. + } + elsif ($in_set) { + my $lic = 'stdenv.lib.licenses'; + if ( @$licenses == 1 ) { + $license_line = "$lic.$licenses->[0]"; + } + else { + $license_line = "with $lic; [ " . join( ' ', @$licenses ) . " ]"; + } + } + else { + if ( @$licenses == 1 ) { + $license_line = $licenses->[0]; + } + else { + $license_line = '[ ' . join( ' ', @$licenses ) . ' ]'; + } + } + + INFO("license: $cpan_license"); + WARN("License '$cpan_license' is ambiguous, please verify") if $amb; + + return $license_line; +} + +my ( $opt, $module_name ) = handle_opts(); + +Log::Log4perl->easy_init( + { + level => $opt->debug ? $DEBUG : $INFO, + layout => '%m%n' + } +); + +my $cb = CPANPLUS::Backend->new; + +my @modules = $cb->search( type => "name", allow => [$module_name] ); +die "module $module_name not found\n" if scalar @modules == 0; +die "multiple packages that match module $module_name\n" if scalar @modules > 1; +my $module = $modules[0]; + +my $pkg_name = get_pkg_name $module; +my $attr_name = pkg_to_attr $module; + +INFO( "attribute name: ", $attr_name ); +INFO( "module: ", $module->module ); +INFO( "version: ", $module->version ); +INFO( "package: ", $module->package, " (", $pkg_name, ", ", $attr_name, ")" ); +INFO( "path: ", $module->path ); + +my $tar_path = $module->fetch(); +INFO( "downloaded to: ", $tar_path ); +INFO( "sha-256: ", $module->status->checksum_value ); + +my $pkg_path = $module->extract(); +INFO( "unpacked to: ", $pkg_path ); + +my $meta = read_meta($pkg_path); + +DEBUG( "metadata: ", encode_json( $meta->as_struct ) ) if defined $meta; + +my @build_deps = sort( uniq( + get_deps( $cb, $meta, "configure" ), + get_deps( $cb, $meta, "build" ), + get_deps( $cb, $meta, "test" ) +) ); +INFO("build deps: @build_deps"); + +my @runtime_deps = sort( uniq( get_deps( $cb, $meta, "runtime" ) ) ); +INFO("runtime deps: @runtime_deps"); + +my $homepage = $meta ? $meta->resources->{homepage} : undef; +INFO("homepage: $homepage") if defined $homepage; + +my $description = $meta ? $meta->abstract : undef; +if ( defined $description ) { + $description = uc( substr( $description, 0, 1 ) ) + . substr( $description, 1 ); # capitalise first letter + $description =~ s/\.$//; # remove period at the end $description =~ s/\s*$//; $description =~ s/^\s*//; - print STDERR "description: $description\n"; + $description =~ s/\n+/ /; # Replace new lines by space. + INFO("description: $description"); } -my $license = $meta->{license}; -if (defined $license) { - $license = "perl5" if $license eq "perl_5"; - print STDERR "license: $license\n"; -} +#print(Data::Dumper::Dumper($meta->licenses) . "\n"); +my $license = $meta ? render_license( $meta->licenses ) : undef; -my $build_fun = -e "$pkg_path/Build.PL" && ! -e "$pkg_path/Makefile.PL" ? "buildPerlModule" : "buildPerlPackage"; +INFO( "RSS feed: https://metacpan.org/feed/distribution/", + $module->package_name ); + +my $build_fun = -e "$pkg_path/Build.PL" + && !-e "$pkg_path/Makefile.PL" ? "buildPerlModule" : "buildPerlPackage"; print STDERR "===\n"; print <path}/${\$module->package}; + url = "mirror://cpan/${\$module->path}/\${name}.${\$module->package_extension}"; sha256 = "${\$module->status->checksum_value}"; }; EOF @@ -168,7 +454,10 @@ print <maintainer; + maintainers = [ maintainers.${\$opt->maintainer} ]; EOF print < Date: Sat, 23 Jan 2016 23:04:22 +0100 Subject: [PATCH 018/291] e19: update efl: 1.15.0 -> 1.16.1 elementary: 1.15.0 -> 1.16.1 emotion: 1.15.0 -> 1.16.0 enlightenment: 0.19.8 -> 0.20.3 evas: 1.15.0 -> 1.16.0 terminology: 0.8.0 -> 0.9.1 pythonefl_1_16: 1.15.0 -> 1.16.0 --- pkgs/desktops/e19/default.nix | 10 ++++------ pkgs/desktops/e19/econnman.nix | 4 ++-- pkgs/desktops/e19/efl.nix | 6 +++--- pkgs/desktops/e19/elementary.nix | 10 +++++----- pkgs/desktops/e19/emotion.nix | 6 +++--- pkgs/desktops/e19/enlightenment.nix | 10 +++++----- pkgs/desktops/e19/evas.nix | 6 +++--- pkgs/desktops/e19/terminology.nix | 6 +++--- pkgs/top-level/python-packages.nix | 14 ++++++++++---- 9 files changed, 38 insertions(+), 34 deletions(-) diff --git a/pkgs/desktops/e19/default.nix b/pkgs/desktops/e19/default.nix index 9c862734dcc..4f319159bcc 100644 --- a/pkgs/desktops/e19/default.nix +++ b/pkgs/desktops/e19/default.nix @@ -1,12 +1,11 @@ { callPackage, pkgs }: let - openjpeg_1 = with pkgs; lib.overrideDerivation openjpeg (oldAttrs: { - name = "openjpeg-1.5.1"; + openjpeg_1 = with pkgs; lib.overrideDerivation openjpeg (oldAttrs: rec { + name = "openjpeg-1.5.2"; src = fetchurl { - url = "http://openjpeg.googlecode.com/files/openjpeg-1.5.1.tar.gz"; - sha1 = "1b0b74d1af4c297fd82806a9325bb544caf9bb8b"; + url = "mirror://sourceforge/openjpeg.mirror/${name}.tar.gz"; + sha1 = "lahbqvjpsfdxsrm0wsy3pdrp3pzrjvj9"; }; - #passthru = { incDir = "openjpeg-1.5.1"; }; }); in rec { @@ -23,5 +22,4 @@ rec { econnman = callPackage ./econnman.nix { }; terminology = callPackage ./terminology.nix { }; rage = callPackage ./rage.nix { }; - } diff --git a/pkgs/desktops/e19/econnman.nix b/pkgs/desktops/e19/econnman.nix index c75af81af1a..35b58aec638 100644 --- a/pkgs/desktops/e19/econnman.nix +++ b/pkgs/desktops/e19/econnman.nix @@ -8,9 +8,9 @@ stdenv.mkDerivation rec { }; buildInputs = [ makeWrapper pkgconfig e19.efl python27 dbus ]; - propagatedBuildInputs = [ python27Packages.pythonefl_1_15 python27Packages.dbus e19.elementary ]; + propagatedBuildInputs = [ python27Packages.pythonefl_1_16 python27Packages.dbus e19.elementary ]; postInstall = '' - wrapProgram $out/bin/econnman-bin --prefix PYTHONPATH : ${python27Packages.dbus}/lib/python2.7/site-packages:${python27Packages.pythonefl_1_15}/lib/python2.7/site-packages + wrapProgram $out/bin/econnman-bin --prefix PYTHONPATH : ${python27Packages.dbus}/lib/python2.7/site-packages:${python27Packages.pythonefl_1_16}/lib/python2.7/site-packages ''; meta = { diff --git a/pkgs/desktops/e19/efl.nix b/pkgs/desktops/e19/efl.nix index aa662f1ed87..39bb3b26325 100644 --- a/pkgs/desktops/e19/efl.nix +++ b/pkgs/desktops/e19/efl.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "efl-${version}"; - version = "1.15.0"; + version = "1.16.1"; src = fetchurl { - url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.gz"; - sha256 = "1x5n2afy5z1akam5y187ajk52mq2k9lwmz7nlrxp92rvx1jf6li5"; + url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz"; + sha256 = "116s4lcfj5lrfhyvvka3np9glqyrh21cyl9rhw7al0wgb60vw0gg"; }; buildInputs = [ pkgconfig openssl zlib freetype fontconfig fribidi SDL2 SDL mesa diff --git a/pkgs/desktops/e19/elementary.nix b/pkgs/desktops/e19/elementary.nix index 17973d530ff..1793a7e87c4 100644 --- a/pkgs/desktops/e19/elementary.nix +++ b/pkgs/desktops/e19/elementary.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchurl, pkgconfig, e19, libcap, automake, autoconf, libdrm, gdbm }: +{ stdenv, fetchurl, pkgconfig, e19, libcap, automake114x, autoconf, libdrm, gdbm }: stdenv.mkDerivation rec { name = "elementary-${version}"; - version = "1.15.0"; + version = "1.16.1"; src = fetchurl { - url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.gz"; - sha256 = "085s2xw3dhv8xiy7ikaaim5gil423g08wclhk0psi76g0vavgd32"; + url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.xz"; + sha256 = "0q58imh7s35q6cq5hsa6gqj84rkckh8s61iass8zyvcw19j66f3y"; }; - buildInputs = [ pkgconfig e19.efl libdrm gdbm automake autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; + buildInputs = [ pkgconfig e19.efl libdrm gdbm automake114x autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; NIX_CFLAGS_COMPILE = [ "-I${libdrm}/include/libdrm" ]; patches = [ ./elementary.patch ]; enableParallelBuilding = true; diff --git a/pkgs/desktops/e19/emotion.nix b/pkgs/desktops/e19/emotion.nix index a95759b6f17..c38119719a0 100644 --- a/pkgs/desktops/e19/emotion.nix +++ b/pkgs/desktops/e19/emotion.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, e19, vlc }: stdenv.mkDerivation rec { name = "emotion_generic_players-${version}"; - version = "1.15.0"; + version = "1.16.0"; src = fetchurl { - url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.gz"; - sha256 = "08yl473aiklj0yfxbn88000hmnhl7dbhqixsn22ias8a90rxdfhh"; + url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.xz"; + sha256 = "163ay26c6dx49m1am7vsxxn0gy877zhayxq0yxn9zkbq2srzvjym"; }; buildInputs = [ pkgconfig e19.efl vlc ]; NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" ]; diff --git a/pkgs/desktops/e19/enlightenment.nix b/pkgs/desktops/e19/enlightenment.nix index e4396073c03..5112058f8c6 100644 --- a/pkgs/desktops/e19/enlightenment.nix +++ b/pkgs/desktops/e19/enlightenment.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchurl, pkgconfig, e19, xorg, libffi, pam, alsaLib, luajit, bzip2 +{ stdenv, fetchurl, pkgconfig, e19, xorg, libffi, pam, alsaLib, luajit, bzip2, libuuid , libpthreadstubs, gdbm, libcap, mesa_glu, xkeyboard_config, set_freqset_setuid ? false }: stdenv.mkDerivation rec { name = "enlightenment-${version}"; - version = "0.19.8"; + version = "0.20.3"; src = fetchurl { url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; - sha256 = "1y83jnq01k9i328adgjgpfwgpvvd2a1ixpm029pjcar8p1mvgadi"; + sha256 = "19z3bwdzwpzwi330l5g5mj7xy6wy8xrc39zivjhm0d1ql3fh649j"; }; buildInputs = [ pkgconfig e19.efl e19.elementary xorg.libXdmcp xorg.libxcb - xorg.xcbutilkeysyms xorg.libXrandr libffi pam alsaLib luajit bzip2 + xorg.xcbutilkeysyms xorg.libXrandr libffi pam alsaLib luajit bzip2 libuuid libpthreadstubs gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; - NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" "-I${e19.efl}/include/emile-1" ]; + NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" "-I${e19.efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; preConfigure = '' export USER_SESSION_DIR=$prefix/lib/systemd/user diff --git a/pkgs/desktops/e19/evas.nix b/pkgs/desktops/e19/evas.nix index 553abec576e..b777dc893d7 100644 --- a/pkgs/desktops/e19/evas.nix +++ b/pkgs/desktops/e19/evas.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, e19, zlib, libspectre, gstreamer, gst_plugins_base, gst_ffmpeg, gst_plugins_good, poppler, librsvg, libraw }: stdenv.mkDerivation rec { name = "evas_generic_loaders-${version}"; - version = "1.15.0"; + version = "1.16.0"; src = fetchurl { - url = "http://download.enlightenment.org/rel/libs/evas_generic_loaders/${name}.tar.gz"; - sha256 = "1k9bmswrgfara4a7znqcv3qbhq3zjbm0ks1zdb0jk5mfl6djr8na"; + url = "http://download.enlightenment.org/rel/libs/evas_generic_loaders/${name}.tar.xz"; + sha256 = "1il3i3rii6ddpj7cw2mdqnb0q2wmhwnvs6qi9janna1n5hhrqyfm"; }; buildInputs = [ pkgconfig e19.efl zlib libspectre gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good poppler librsvg libraw ]; meta = { diff --git a/pkgs/desktops/e19/terminology.nix b/pkgs/desktops/e19/terminology.nix index 32135bbe2e2..195a1f43664 100644 --- a/pkgs/desktops/e19/terminology.nix +++ b/pkgs/desktops/e19/terminology.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, e19 }: stdenv.mkDerivation rec { name = "terminology-${version}"; - version = "0.8.0"; + version = "0.9.1"; src = fetchurl { - url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.gz"; - sha256 = "7a10d44b023cf6134c2483304e4ad33bea6df0f11266aec482f54fa67a3ce628"; + url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; + sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc"; }; buildInputs = [ pkgconfig e19.efl e19.elementary ]; meta = { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3e9fe466fdd..f7e19b086db 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22725,17 +22725,23 @@ in modules // { }; }; - pythonefl_1_15 = buildPythonPackage rec { + pythonefl_1_16 = buildPythonPackage rec { name = "python-efl-${version}"; - version = "1.15.0"; + version = "1.16.0"; src = pkgs.fetchurl { - url = "http://download.enlightenment.org/rel/bindings/python/${name}.tar.gz"; - sha256 = "1k3vb7pb70l2v1s2mzg91wvmncq93vb04vn60pzdlrnbcns0grhi"; + url = "http://download.enlightenment.org/rel/bindings/python/${name}.tar.xz"; + sha256 = "142ffki41xj0z2dnf011g8j4b35waviprk4x1dhvy1wgqdywl61l"; }; + preConfigure = '' export NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl) -I${self.dbus}/include/dbus-1.0 $NIX_CFLAGS_COMPILE" ''; + preBuild = "${python}/bin/${python.executable} setup.py build_ext"; + installPhase= "${python}/bin/${python.executable} setup.py install --prefix=$out"; + buildInputs = with self; [ pkgs.pkgconfig pkgs.e19.efl pkgs.e19.elementary ]; + doCheck = false; + meta = { description = "Python bindings for EFL and Elementary"; homepage = http://enlightenment.org/; From 5b28d3f1eb37cb64441b183802f031b020553ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Mon, 1 Feb 2016 08:59:13 +0100 Subject: [PATCH 019/291] ocamlPackages.findlib: 1.5.3 -> 1.6.1 --- pkgs/development/tools/ocaml/findlib/default.nix | 11 +++++++---- .../tools/ocaml/findlib/install_topfind.patch | 9 +++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/pkgs/development/tools/ocaml/findlib/default.nix b/pkgs/development/tools/ocaml/findlib/default.nix index a9673be26ee..746be6dd081 100644 --- a/pkgs/development/tools/ocaml/findlib/default.nix +++ b/pkgs/development/tools/ocaml/findlib/default.nix @@ -4,12 +4,13 @@ let ocaml_version = (builtins.parseDrvName ocaml.name).version; in -stdenv.mkDerivation { - name = "ocaml-findlib-1.5.3"; +stdenv.mkDerivation rec { + name = "ocaml-findlib-${version}"; + version = "1.6.1"; src = fetchurl { - url = http://download.camlcity.org/download/findlib-1.5.3.tar.gz; - sha256 = "1kw2siv4pc8q060m9xpgxvjs07ic1kiphyxmkwcz6nyb91p8286r"; + url = "http://download.camlcity.org/download/findlib-${version}.tar.gz"; + sha256 = "02abg1lsnwvjg3igdyb8qjgr5kv1nbwl4gaf8mdinzfii5p82721"; }; buildInputs = [m4 ncurses ocaml]; @@ -57,3 +58,5 @@ stdenv.mkDerivation { ]; }; } + + diff --git a/pkgs/development/tools/ocaml/findlib/install_topfind.patch b/pkgs/development/tools/ocaml/findlib/install_topfind.patch index f152feaaecf..7c9f8e1a6cc 100644 --- a/pkgs/development/tools/ocaml/findlib/install_topfind.patch +++ b/pkgs/development/tools/ocaml/findlib/install_topfind.patch @@ -1,11 +1,12 @@ ---- findlib-1.5.3/src/findlib/Makefile 2014-09-16 13:21:46.000000000 +0200 -+++ findlib-1.5.3/src/findlib/Makefile.new 2014-10-01 14:30:54.141082521 +0200 -@@ -89,7 +89,7 @@ +--- a/src/findlib/Makefile ++++ b/src/findlib/Makefile +@@ -114,7 +114,7 @@ clean: install: all mkdir -p "$(prefix)$(OCAML_SITELIB)/$(NAME)" mkdir -p "$(prefix)$(OCAMLFIND_BIN)" - test $(INSTALL_TOPFIND) -eq 0 || cp topfind "$(prefix)$(OCAML_CORE_STDLIB)" + test $(INSTALL_TOPFIND) -eq 0 || cp topfind "$(prefix)$(OCAML_SITELIB)" - files=`$(TOP)/tools/collect_files $(TOP)/Makefile.config findlib.cmi findlib.mli findlib.cma topfind.cmi topfind.mli fl_package_base.mli fl_package_base.cmi fl_metascanner.mli fl_metascanner.cmi fl_metatoken.cmi findlib_top.cma findlib.cmxa findlib.a findlib.cmxs META` && \ + files=`$(TOP)/tools/collect_files $(TOP)/Makefile.config findlib.cmi findlib.mli findlib.cma topfind.cmi topfind.mli fl_package_base.mli fl_package_base.cmi fl_metascanner.mli fl_metascanner.cmi fl_metatoken.cmi findlib_top.cma findlib.cmxa findlib.a findlib.cmxs findlib_dynload.cma findlib_dynload.cmxa findlib_dynload.a findlib_dynload.cmxs fl_dynload.mli fl_dynload.cmi META` && \ cp $$files "$(prefix)$(OCAML_SITELIB)/$(NAME)" f="ocamlfind$(EXEC_SUFFIX)"; { test -f ocamlfind_opt$(EXEC_SUFFIX) && f="ocamlfind_opt$(EXEC_SUFFIX)"; }; \ + From cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7 Mon Sep 17 00:00:00 2001 From: Hoang Xuan Phu Date: Wed, 3 Feb 2016 11:25:07 +0700 Subject: [PATCH 020/291] remove unused file bundler-head.nix (bundler_HEAD is now just an alias for bundler) --- .../interpreters/ruby/bundler-head.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 pkgs/development/interpreters/ruby/bundler-head.nix diff --git a/pkgs/development/interpreters/ruby/bundler-head.nix b/pkgs/development/interpreters/ruby/bundler-head.nix deleted file mode 100644 index e31f63dccf0..00000000000 --- a/pkgs/development/interpreters/ruby/bundler-head.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ buildRubyGem, coreutils, fetchgit }: - -buildRubyGem { - name = "bundler-2015-01-11"; - src = fetchgit { - url = "https://github.com/bundler/bundler.git"; - rev = "a2343c9eabf5403d8ffcbca4dea33d18a60fc157"; - sha256 = "06qsai4ac3i2xlr7nbc4anh4cy6jd9jjf3rpj254g9gwshqv0qgr"; - leaveDotGit = true; - }; - dontPatchShebangs = true; - postInstall = '' - find $out -type f -perm -0100 | while read f; do - substituteInPlace $f \ - --replace "/usr/bin/env" "${coreutils}/bin/env" - done - ''; -} From 86de7b1d2bc9514e79d89d943036ed07b1f78439 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Thu, 18 Jun 2015 21:46:36 +0200 Subject: [PATCH 021/291] hugin: update 2013.0.0 -> 2015.0.0 --- pkgs/applications/graphics/hugin/default.nix | 31 ++++++++++---------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix index b11ed1a99df..97181cb0d1b 100644 --- a/pkgs/applications/graphics/hugin/default.nix +++ b/pkgs/applications/graphics/hugin/default.nix @@ -1,23 +1,25 @@ -{ stdenv, cmake, fetchurl, gnumake, pkgconfig +{ stdenv, cmake, fetchurl, gnumake, pkgconfig, makeWrapper , boost, gettext, tclap, wxGTK , freeglut, glew, libXi, libXmu, mesa -, autopanosiftc, enblend-enfuse, exiv2, ilmbase, lensfun, libpng, libtiff -, openexr, panotools, perlPackages +, autopanosiftc, enblend-enfuse, exiv2, fftw, ilmbase, lensfun, libpng, libtiff +, openexr, panotools, perlPackages, sqlite, vigra }: stdenv.mkDerivation rec { - name = "hugin-2013.0.0"; + name = "hugin-2015.0.0"; src = fetchurl { url = "mirror://sourceforge/hugin/${name}.tar.bz2"; - sha256 = "1mgbvg09xvf0zcm9jfv5lb65nd292l86ffa23yp4pzm6izaiwkj8"; + sha256 = "1gfblax9rxay8xskz5r8bips4nfh70vkyrb8ksgl6pg91c8krn9c"; }; NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; buildInputs = [ boost gettext tclap wxGTK freeglut glew libXi libXmu mesa - exiv2 ilmbase lensfun libtiff libpng openexr panotools + exiv2 fftw ilmbase lensfun libtiff libpng openexr panotools + sqlite vigra + perlPackages.ImageExifTool makeWrapper ]; # disable installation of the python scripting interface @@ -27,22 +29,21 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - # commandline tools needed by the hugin batch processor - # you may have to tell hugin (in the preferences) where these binaries reside - propagatedUserEnvPackages = [ autopanosiftc enblend-enfuse gnumake - perlPackages.ImageExifTool - ]; - postInstall = '' - mkdir -p "$out/nix-support" - echo $propagatedUserEnvPackages > $out/nix-support/propagated-user-env-packages + for p in $out/bin/*; do + wrapProgram "$p" \ + --suffix PATH : ${autopanosiftc}/bin \ + --suffix PATH : ${enblend-enfuse}/bin \ + --suffix PATH : ${gnumake}/bin \ + --suffix PATH : ${perlPackages.ImageExifTool}/bin + done ''; meta = { homepage = http://hugin.sourceforge.net/; description = "Toolkit for stitching photographs and assembling panoramas, together with an easy to use graphical front end"; license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [viric]; + maintainers = with stdenv.lib.maintainers; [ viric hrdinka ]; platforms = with stdenv.lib.platforms; linux; }; } From ce4bd7bbc6d6abf9c7f536b68663c37e75bc963c Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 12 Jan 2016 23:11:10 +0100 Subject: [PATCH 022/291] znc-push: 1.0.0 -> git-2015-12-07 --- pkgs/applications/networking/znc/modules.nix | 42 ++++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index 9836d1fbb3b..abaabd4f409 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -1,7 +1,6 @@ -{ stdenv, fetchurl, fetchgit, znc }: +{ stdenv, fetchurl, fetchgit, znc }: let - zncDerivation = a@{ name, src, module_name, buildPhase ? "${znc}/bin/znc-buildmod ${module_name}.cpp", @@ -16,25 +15,6 @@ let in rec { - push = zncDerivation rec { - name = "znc-push-${version}"; - version = "1.0.0"; - module_name = "push"; - - src = fetchurl { - url = "https://github.com/jreese/znc-push/archive/v${version}.tar.gz"; - sha256 = "1v9a16b1d8mfzhddf4drh6rbxa0szr842g7614r8ninmc0gi7a2v"; - }; - - meta = { - description = "Push notification service module for ZNC"; - homepage = https://github.com/jreese/znc-push; - repositories.git = https://github.com/jreese/znc-push.git; - license = stdenv.lib.licenses.mit; - maintainers = [ stdenv.lib.maintainers.offline ]; - }; - }; - fish = zncDerivation rec { name = "znc-fish-8e1f150fda"; module_name = "fish"; @@ -70,4 +50,24 @@ in rec { }; }; + push = zncDerivation rec { + name = "znc-push-${version}"; + version = "git-2015-12-07"; + module_name = "push"; + + src = fetchgit { + url = "https://github.com/jreese/znc-push.git"; + rev = "717a2b1741eee75456b0862ef76dbb5af906e936"; + sha256 = "1lr5bhcy8156f7sbah7kjgz4g4mhkkwgvwjd2rxpbwnpq3ssza9k"; + }; + + meta = { + description = "Push notification service module for ZNC"; + homepage = https://github.com/jreese/znc-push; + repositories.git = https://github.com/jreese/znc-push.git; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.offline ]; + }; + }; + } From 41480ae67bc7b645aa4efa7fecf86213c20ba49a Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 12 Jan 2016 23:12:34 +0100 Subject: [PATCH 023/291] znc-fish: 8e1f150fda -> git-2014-10-10 --- pkgs/applications/networking/znc/modules.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index abaabd4f409..80631dec1e0 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -16,19 +16,21 @@ let in rec { fish = zncDerivation rec { - name = "znc-fish-8e1f150fda"; + name = "znc-fish-${version}"; + version = "git-2014-10-10"; module_name = "fish"; src = fetchgit { - url = meta.repositories.git; - rev = "8e1f150fdaf18dc33e023795584dec8255e6614e"; - sha256 = "0vpk4336c191irl3g7wibblnbqf3903hjrci4gs0qgg1wvj7fw66"; + url = meta.repositories.git; + rev = "9c580e018a1a08374e814fc06f551281cff827de"; + sha256 = "0yvs0jkwwp18qxqvw1dvir91ggczz56ka00k0zlsb81csdi8xfvl"; }; meta = { description = "ZNC FiSH module"; homepage = https://github.com/dctrwatson/znc-fish; - repositories.git = https://github.com/dctrwatson/znc-fish.git; + # this fork works with ZNC 1.6 + repositories.git = https://github.com/jarrydpage/znc-fish.git; maintainers = [ stdenv.lib.maintainers.offline ]; }; }; From 0765936b63adeba7deeafe68859eb9128a51e58d Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 12 Jan 2016 23:13:43 +0100 Subject: [PATCH 024/291] znc-privmsg: c9f98690be -> git-2015-02-22 --- pkgs/applications/networking/znc/modules.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index 80631dec1e0..c36d867949e 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -36,13 +36,14 @@ in rec { }; privmsg = zncDerivation rec { - name = "znc-privmsg-c9f98690be"; + name = "znc-privmsg-${version}"; + version = "git-2015-02-22"; module_name = "privmsg"; src = fetchgit { - url = meta.repositories.git; - rev = "c9f98690beb4e3a7681468d5421ff11dc8e1ee8b"; - sha256 = "dfeb28878b12b98141ab204191288cb4c3f7df153a01391ebf6ed6a32007247f"; + url = meta.repositories.git; + rev = "9f1f98db56cbbea96d83e6628f657e0d62cd9517"; + sha256 = "0n82z87gdxxragcaixjc80z8bw4bmfwbk0jrf9zs8kk42phlkkc2"; }; meta = { From bc63d669f597bed29842d5cf2725fd0a5e1c1f64 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 12 Jan 2016 23:14:23 +0100 Subject: [PATCH 025/291] znc-clientbuffer: init at git-2015-08-27 --- pkgs/applications/networking/znc/modules.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index c36d867949e..f82d758cb9b 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -15,6 +15,26 @@ let in rec { + clientbuffer = zncDerivation rec { + name = "znc-clientbuffer-${version}"; + version = "git-2015-08-27"; + module_name = "clientbuffer"; + + src = fetchgit { + url = meta.repositories.git; + rev = "fe0f368e1fcab2b89d5c94209822d9b616cea840"; + sha256 = "1knbkj1dm45s741qndsfclmk3pyxnihgwq2i1n75ip3wv8i1bf4b"; + }; + + meta = with stdenv.lib; { + description = "ZNC module for client specific buffers"; + homepage = https://github.com/jpnurmi/znc-clientbuffer; + repositories.git = https://github.com/jpnurmi/znc-clientbuffer.git; + license = licenses.asl20; + maintainers = with maintainers; [ hrdinka ]; + }; + }; + fish = zncDerivation rec { name = "znc-fish-${version}"; version = "git-2014-10-10"; From 94239516092d3fa8b34d2aa54f1a2b1110e078a7 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 12 Jan 2016 23:14:56 +0100 Subject: [PATCH 026/291] znc-playback: init at git-2015-08-04 --- pkgs/applications/networking/znc/modules.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index f82d758cb9b..802c5f5ecb7 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -55,6 +55,26 @@ in rec { }; }; + playback = zncDerivation rec { + name = "znc-playback-${version}"; + version = "git-2015-08-04"; + module_name = "playback"; + + src = fetchgit { + url = meta.repositories.git; + rev = "8691abf75becc1f3d7b5bb5ad68dad17cd21863b"; + sha256 = "0pd89p00yfir4lvw0107lc3qxzx8bgbm5lqq0lpwb6cahv3ipdra"; + }; + + meta = with stdenv.lib; { + description = "An advanced playback module for ZNC"; + homepage = https://github.com/jpnurmi/znc-playback; + repositories.git = https://github.com/jpnurmi/znc-playback.git; + license = licenses.asl20; + maintainers = with maintainers; [ hrdinka ]; + }; + }; + privmsg = zncDerivation rec { name = "znc-privmsg-${version}"; version = "git-2015-02-22"; From c737ee5abaefefe388edaa005af295df9c418c17 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Wed, 13 Jan 2016 12:46:12 +0100 Subject: [PATCH 027/291] znc: delete 1.4 --- pkgs/applications/networking/znc/1.4.nix | 35 ------------------------ pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 37 deletions(-) delete mode 100644 pkgs/applications/networking/znc/1.4.nix diff --git a/pkgs/applications/networking/znc/1.4.nix b/pkgs/applications/networking/znc/1.4.nix deleted file mode 100644 index fdd02aac0b5..00000000000 --- a/pkgs/applications/networking/znc/1.4.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ stdenv, fetchurl, openssl, pkgconfig -, withPerl ? false, perl -, withPython ? false, python3 -, withTcl ? false, tcl -, withCyrus ? true, cyrus_sasl -}: - -with stdenv.lib; -stdenv.mkDerivation rec { - name = "znc-1.4"; - - src = fetchurl { - url = "http://znc.in/releases/${name}.tar.gz"; - sha256 = "0lkv58pq4d5lzcyx8v8anzinx0sx0zw0js4jij13jb8qxp88zsc6"; - }; - - buildInputs = [ openssl pkgconfig ] - ++ optional withPerl perl - ++ optional withPython python3 - ++ optional withTcl tcl - ++ optional withCyrus cyrus_sasl; - - configureFlags = optionalString withPerl "--enable-perl " - + optionalString withPython "--enable-python " - + optionalString withTcl "--enable-tcl --with-tcl=${tcl}/lib " - + optionalString withCyrus "--enable-cyrus "; - - meta = with stdenv.lib; { - description = "Advanced IRC bouncer"; - homepage = http://wiki.znc.in/ZNC; - maintainers = with maintainers; [ viric ]; - license = licenses.asl20; - platforms = platforms.unix; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 16a90aab7c7..f0e5b734f36 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15914,8 +15914,6 @@ let znc = callPackage ../applications/networking/znc { }; - znc_14 = callPackage ../applications/networking/znc/1.4.nix { }; - zncModules = recurseIntoAttrs ( callPackage ../applications/networking/znc/modules.nix { } ); From b4da3bb88b04329984cf56540f41956299c9cdc0 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Sun, 7 Feb 2016 16:39:39 +0100 Subject: [PATCH 028/291] buildRubyGem: ensure gem versions don't get misparsed Without this, every nix-env --upgrade replaces ruby with an arbitrary gem, which makes Ruby unusuable from user environments. --- pkgs/development/interpreters/ruby/build-ruby-gem/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix b/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix index c5b9fba37aa..fc9f0656cd9 100644 --- a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix +++ b/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix @@ -32,7 +32,9 @@ lib.makeOverridable ( , platform ? "ruby" , ruby ? defs.ruby , stdenv ? ruby.stdenv -, namePrefix ? "${ruby.name}" + "-" +, namePrefix ? (let + rubyName = builtins.parseDrvName ruby.name; + in "${rubyName.name}${rubyName.version}-") , buildInputs ? [] , doCheck ? false , meta ? {} From c998447a13e8f97f2cfce648d019a26ee5c87bba Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Sun, 7 Feb 2016 16:40:43 +0100 Subject: [PATCH 029/291] buildRubyGem: pass the gem version through into the derivation name --- pkgs/development/interpreters/ruby/build-ruby-gem/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix b/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix index fc9f0656cd9..cc1f85de19d 100644 --- a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix +++ b/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation (attrs // { ++ lib.optional stdenv.isDarwin darwin.libobjc ++ buildInputs; - name = attrs.name or (namePrefix + gemName); + name = attrs.name or "${namePrefix}${gemName}-${version}"; inherit src; From f7d88238cd4f471f7798782d133d008e4a236843 Mon Sep 17 00:00:00 2001 From: artuuge Date: Mon, 8 Feb 2016 14:21:39 +0100 Subject: [PATCH 030/291] epson-escpr: init at version 1.6.3 --- .../epson-escpr/cups-filter-ppd-dirs.patch | 62 +++++++++++++++++++ pkgs/misc/drivers/epson-escpr/default.nix | 36 +++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 100 insertions(+) create mode 100644 pkgs/misc/drivers/epson-escpr/cups-filter-ppd-dirs.patch create mode 100644 pkgs/misc/drivers/epson-escpr/default.nix diff --git a/pkgs/misc/drivers/epson-escpr/cups-filter-ppd-dirs.patch b/pkgs/misc/drivers/epson-escpr/cups-filter-ppd-dirs.patch new file mode 100644 index 00000000000..3065ed1a10f --- /dev/null +++ b/pkgs/misc/drivers/epson-escpr/cups-filter-ppd-dirs.patch @@ -0,0 +1,62 @@ +diff --git a/configure b/configure_new +index c3e7199..ccbf290 100755 +--- a/configure ++++ b/configure_new +@@ -11585,55 +11585,8 @@ else + $as_echo "no" >&6; } + fi + +- +- +-if test "xNONE" != "x${prefix}" ; then +- cups_default_prefix="${prefix}" +-else +- cups_default_prefix="${ac_default_prefix}" +-fi +- +- +-# Check whether --with-cupsfilterdir was given. +-if test "${with_cupsfilterdir+set}" = set; then : +- withval=$with_cupsfilterdir; +-else +- with_cupsfilterdir=no +-fi +- +-if test "xno" = "x${with_cupsfilterdir}"; then +- if test "xyes" = "x$have_cups_config" ; then +- CUPS_FILTER_DIR="${cups_default_prefix}`cups-config --serverbin | sed -e 's,^/[^/][^/]*,,'`/filter" +- else +- CUPS_FILTER_DIR="${cups_default_prefix}/lib/cups/filter" +- fi +-else +- CUPS_FILTER_DIR="${with_cupsfilterdir}" +-fi +- +- +-# Check whether --with-cupsppddir was given. +-if test "${with_cupsppddir+set}" = set; then : +- withval=$with_cupsppddir; +-else +- with_cupsppddir=no +-fi +- +-if test "xno" = "x${with_cupsppddir}"; then +- if test -d "${cups_default_prefix}/share/ppd" ; then +- CUPS_PPD_DIR="${cups_default_prefix}/share/ppd" +- elif test "xyes" = "x$have_cups_config" ; then +- CUPS_PPD_DIR="${cups_default_prefix}/`cups-config --datadir | sed -e 's,^/[^/][^/]*,,'`/model" +- else +- CUPS_PPD_DIR="${cups_default_prefix}/share/cups/model" +- fi +-else +- CUPS_PPD_DIR="${with_cupsppddir}" +-fi +- +- +- +- ++CUPS_FILTER_DIR="${prefix}/lib/cups/filter" ++CUPS_PPD_DIR="${prefix}/share/cups/model" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 + $as_echo_n "checking for ANSI C header files... " >&6; } diff --git a/pkgs/misc/drivers/epson-escpr/default.nix b/pkgs/misc/drivers/epson-escpr/default.nix new file mode 100644 index 00000000000..1f403947acb --- /dev/null +++ b/pkgs/misc/drivers/epson-escpr/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, cups }: + +let + version = "1.6.3"; +in + stdenv.mkDerivation { + + name = "epson-escpr-${version}"; + + src = fetchurl { + url = "https://download3.ebz.epson.net/dsc/f/03/00/04/33/53/0177a44361d3dfeacf7f15ff4a347cef373688da/epson-inkjet-printer-escpr-1.6.3-1lsb3.2.tar.gz"; + sha256 = "4988479ce7dd5513bfa1cce4a83f82348572d8d69d6aa3b2c6e154a58a04ad86"; + }; + + patches = [ ./cups-filter-ppd-dirs.patch ]; + + buildInputs = [ cups ]; + + meta = { + homepage = https://github.com/artuuge/NixOS-files/; + description = "ESC/P-R Driver (generic driver)"; + longDescription = '' + Epson Inkjet Printer Driver (ESC/P-R) for Linux and the + corresponding PPD files. The list of supported printers + can be found at http://www.openprinting.org/driver/epson-escpr/ . + + To use the driver adjust your configuration.nix file: + services.printing = { + enable = true; + drivers = [ pkgs.epson-escpr ]; + }; + ''; + license = stdenv.lib.licenses.gpl3Plus; + }; + + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index be51cff6fe5..de823529ee6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15435,6 +15435,8 @@ let crashplan = callPackage ../applications/backup/crashplan { }; + epson-escpr = callPackage ../misc/drivers/epson-escpr { }; + gutenprint = callPackage ../misc/drivers/gutenprint { }; gutenprintBin = callPackage ../misc/drivers/gutenprint/bin.nix { }; From 5e3f4106f115d1904c5bc4e57f7294555446a6bb Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 9 Feb 2016 12:33:12 +0100 Subject: [PATCH 031/291] udiskie: build man page --- pkgs/top-level/python-packages.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b9343e54a2e..f4126747d96 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23343,8 +23343,19 @@ in modules // { export XDG_RUNTIME_DIR=/tmp ''; + buildInputs = [ + pkgs.asciidoc-full # For building man page. + ]; + propagatedBuildInputs = with self; [ pkgs.gobjectIntrospection pkgs.gtk3 pyyaml pygobject3 pkgs.libnotify pkgs.udisks2 pkgs.gettext self.docopt ]; + postBuild = "make -C doc"; + + postInstall = '' + mkdir -p $out/share/man/man8 + cp -v doc/udiskie.8 $out/share/man/man8/ + ''; + preFixup = '' wrapProgram "$out/bin/"* \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" From e5ba71103378d1a4bb3c563a730e45a1ab058979 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 9 Feb 2016 12:34:39 +0100 Subject: [PATCH 032/291] udiskie: 1.1.2 -> 1.4.8 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f4126747d96..e6c536b5bcb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23331,12 +23331,12 @@ in modules // { }; udiskie = buildPythonPackage rec { - version = "1.1.2"; + version = "1.4.8"; name = "udiskie-${version}"; src = pkgs.fetchurl { url = "https://github.com/coldfix/udiskie/archive/${version}.tar.gz"; - sha256 = "07fyvwp4rga47ayfsmb79p2784sqrih0sglwnd9c4x6g63xgljvb"; + sha256 = "0fj1kh6pmwyyy54ybc5fa625lhrxzhzmfx1nwz2lym5cpm4b21fl"; }; preConfigure = '' From 7b91d708af39fb7a7a1e6d6d08968880d863096b Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Mon, 15 Feb 2016 01:07:15 +0100 Subject: [PATCH 033/291] qtox: 20151221 -> 1.2.4, libtoxcore-dev: 20160105 -> 20160131 --- .../instant-messengers/qtox/default.nix | 17 ++++++++++------- .../libraries/libtoxcore/new-api/default.nix | 7 +++---- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 72619e417ad..541fb5727ce 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, openal, opencv, +{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore-dev, openal, opencv, libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo, pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper, qtbase, qtsvg, qttools, qttranslations, sqlcipher }: let - revision = "8b671916abdcc1d553a367a502b23ec4ea7568a1"; + version = "1.2.4"; + revision = "v${version}"; in stdenv.mkDerivation rec { - name = "qtox-dev-20151221"; + name = "qtox-${version}"; - src = fetchgit { - url = "https://github.com/tux3/qTox.git"; - rev = "${revision}"; - md5 = "a93a63d35e506be4b21abda0986f19e7"; + src = fetchFromGitHub { + owner = "tux3"; + repo = "qTox"; + rev = revision; + sha256 = "0iqnl00kmbpf3pn6z38n3cjzzsqpw2793j60c24kkrydapihknz9"; }; buildInputs = @@ -37,6 +39,7 @@ stdenv.mkDerivation rec { export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags cairo)" export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags pango)" export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags atk)" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags sqlcipher)" ''; configurePhase = '' diff --git a/pkgs/development/libraries/libtoxcore/new-api/default.nix b/pkgs/development/libraries/libtoxcore/new-api/default.nix index d9c543efd6c..5bb0427f181 100644 --- a/pkgs/development/libraries/libtoxcore/new-api/default.nix +++ b/pkgs/development/libraries/libtoxcore/new-api/default.nix @@ -2,13 +2,13 @@ , libvpx, check, libconfig, pkgconfig }: stdenv.mkDerivation rec { - name = "tox-core-dev-20160105"; + name = "tox-core-dev-20160131"; src = fetchFromGitHub { owner = "irungentoo"; repo = "toxcore"; - rev = "b9ef24875ce1d9bf5f04f0164ae95f729330a295"; - sha256 = "0hxwp4nk5an3a2pmha6x2729mxm57j52vnrsq47gir31c0hk6x2x"; + rev = "94cc8b11ff473064526737936f64b6f9a19c239d"; + sha256 = "0njara08p5vmhs6kp04b7gxw8l6xrlmwnlb76n2g96v0rn0i9k2w"; }; NIX_LDFLAGS = "-lgcc_s"; @@ -52,4 +52,3 @@ stdenv.mkDerivation rec { platforms = platforms.all; }; } - From 2b6ca477e6d057c44dbea5a1b67ae7c2e638b1ea Mon Sep 17 00:00:00 2001 From: Casey Ransom Date: Thu, 4 Feb 2016 13:48:52 -0500 Subject: [PATCH 034/291] aws_shell: init at 0.1.0 Currently depends on a specific prompt_toolkit package (which is not the latest), so that is also pinned here. --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 42 ++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed5e5ab8374..ce13cc1a54e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -582,6 +582,8 @@ let awscli = pythonPackages.awscli; + aws_shell = pythonPackages.aws_shell; + azure-cli = callPackage ../tools/virtualization/azure-cli { }; ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b6757094e89..01d5ba7a394 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1159,6 +1159,36 @@ in modules // { }; }; + aws_shell = buildPythonPackage rec { + name = "aws-shell-${version}"; + version = "0.1.0"; + src = pkgs.fetchurl { + sha256 = "05isyrqbk16dg1bc3mnc4ynxr3nchslvia5wr1sdmxvc3v2y729d"; + url = "https://pypi.python.org/packages/source/a/aws-shell/aws-shell-0.1.0.tar.gz"; + }; + propagatedBuildInputs = with self; [ + configobj prompt_toolkit_52 awscli boto3 pygments sqlite3 mock pytest + pytestcov unittest2 tox + ]; + + #Checks are failing due to missing TTY, which won't exist. + doCheck = false; + preCheck = '' + mkdir -p check-phase + export HOME=$(pwd)/check-phase + ''; + + disabled = isPy35; + + + meta = { + homepage = https://github.com/awslabs/aws-shell; + description = "An integrated shell for working with the AWS CLI."; + license = licenses.asl20; + maintainers = [ ]; + }; + }; + azure = buildPythonPackage rec { version = "0.11.0"; name = "azure-${version}"; @@ -15184,6 +15214,18 @@ in modules // { maintainers = with maintainers; [ nckx ]; }; }; + prompt_toolkit_52 = self.prompt_toolkit.override(self: rec { + name = "prompt_toolkit-${version}"; + version = "0.52"; + src = pkgs.fetchurl { + sha256 = "00h9ldqmb33nhg2kpks7paldf3n3023ipp124alwp96yz16s7f1m"; + url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz"; + }; + + #Only <3.4 expressly supported. + disabled = isPy35; + + }); protobuf = self.protobuf2_6; protobuf2_6 = self.protobufBuild pkgs.protobuf2_6; From a9f8613dae32b10de3bdc8a86032dae43f80db32 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Sat, 16 Jan 2016 16:16:04 +0100 Subject: [PATCH 035/291] splix: 2.0.0 -> svn-r315 r315 has been in use for several years, but was never officially released --- pkgs/misc/cups/drivers/splix/default.nix | 37 +++++++++++++++--------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/pkgs/misc/cups/drivers/splix/default.nix b/pkgs/misc/cups/drivers/splix/default.nix index 532ef2a45d5..8c58d41f0fa 100644 --- a/pkgs/misc/cups/drivers/splix/default.nix +++ b/pkgs/misc/cups/drivers/splix/default.nix @@ -1,24 +1,35 @@ -{stdenv, fetchurl, cups, zlib}: - -stdenv.mkDerivation rec { - name = "splix-2.0.0"; - - src = fetchurl { - url = "mirror://sourceforge/splix/${name}.tar.bz2"; - sha256 = "0bwivrwwvh6hzvnycpzqs7a0capgycahc4s3v9ihx552fgy07xwp"; +{ stdenv, fetchsvn, fetchurl, cups, zlib }: +let rev = "r315"; in +stdenv.mkDerivation (rec { + name = "splix-svn-${rev}"; + src = fetchsvn { + # We build this from svn, because splix hasn't been in released in several years + # although the community has been adding some new printer models + # if you are having problems, please try the stable version below and report back + url = "svn://svn.code.sf.net/p/splix/code/splix"; + inherit rev; + sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl"; }; - patches = [ ./splix-2.0.0-gcc45.patch ]; - - preBuild='' + preBuild = '' makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model" ''; - buildInputs = [cups zlib]; + buildInputs = [ cups zlib ]; meta = { homepage = http://splix.sourceforge.net; platforms = stdenv.lib.platforms.linux; maintainers = [ stdenv.lib.maintainers.simons ]; }; -} + +} /* // { # uncomment to build the stable version + + name = "splix-2.0.0"; + patches = [ ./splix-2.0.0-gcc45.patch ]; + src = fetchurl { + url = "mirror://sourceforge/splix/${name}.tar.bz2"; + sha256 = "0bwivrwwvh6hzvnycpzqs7a0capgycahc4s3v9ihx552fgy07xwp"; + }; + +} */) From 81aab64b7f6c07ae463d4b71f0e495388773f6cf Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 15:25:29 +0900 Subject: [PATCH 036/291] fcitx: group engines --- .../fcitx-anthy.nix => fcitx-engines/fcitx-anthy/default.nix} | 0 pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/tools/inputmethods/{fcitx/fcitx-anthy.nix => fcitx-engines/fcitx-anthy/default.nix} (100%) diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-anthy.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix similarity index 100% rename from pkgs/tools/inputmethods/fcitx/fcitx-anthy.nix rename to pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0a411a7ff0e..2ca59361b41 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1511,7 +1511,7 @@ let fcitx = callPackage ../tools/inputmethods/fcitx { }; - fcitx-anthy = callPackage ../tools/inputmethods/fcitx/fcitx-anthy.nix { }; + fcitx-anthy = callPackage ../tools/inputmethods/fcitx-engines/fcitx-anthy { }; fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; From e2a62868d912dcfeae39716c988b671d2d8bd263 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 15:27:25 +0900 Subject: [PATCH 037/291] fcitx-anthy: 0.2.1 -> 0.2.2 --- .../fcitx-engines/fcitx-anthy/default.nix | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix index 2099220f2a1..c1cb76d3a68 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix @@ -1,24 +1,26 @@ -{ stdenv, fetchurl, cmake, fcitx, anthy }: +{ stdenv, fetchurl, cmake, fcitx, anthy, gettext, pkgconfig }: stdenv.mkDerivation rec { - name = "fcitx-anthy-0.2.1"; - - meta = with stdenv.lib; { - description = "Fcitx Wrapper for anthy"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; - }; + name = "fcitx-anthy-${version}"; + version = "0.2.2"; src = fetchurl { url = "http://download.fcitx-im.org/fcitx-anthy/${name}.tar.xz"; - sha256 = "13fpfhhxkzbq53h10i3hifa37nngm47jq361i70z22bgcrs8887x"; + sha256 = "0ayrzfx95670k86y19bzl6i6w98haaln3x8dxpb39a5dwgz59pf8"; }; - buildInputs = [ cmake fcitx anthy ]; + buildInputs = [ cmake fcitx anthy gettext pkgconfig ]; preInstall = '' substituteInPlace src/cmake_install.cmake \ --replace ${fcitx} $out ''; + + meta = with stdenv.lib; { + description = "Fcitx Wrapper for anthy"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ iyzsong ericsagnes ]; + }; + } From 3068f632c7aeec4065c19439e3c2f326a946a79d Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 15:31:28 +0900 Subject: [PATCH 038/291] fcitx-chewing: init at 0.2.2 --- .../fcitx-engines/fcitx-chewing/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix new file mode 100644 index 00000000000..eb8897b9d5e --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, cmake, fcitx, gettext, libchewing, pkgconfig }: + +stdenv.mkDerivation rec { + name = "fcitx-chewing-${version}"; + version = "0.2.2"; + + src = fetchurl { + url = "http://download.fcitx-im.org/fcitx-chewing/${name}.tar.xz"; + sha256 = "0l548xdx2fvjya1ixp37pn382yak0m4kwfh9lgh7l3y2sblqw9zs"; + }; + + buildInputs = [ cmake fcitx gettext libchewing pkgconfig ]; + + preInstall = '' + substituteInPlace src/cmake_install.cmake \ + --replace ${fcitx} $out + substituteInPlace data/cmake_install.cmake \ + --replace ${fcitx} $out + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/fcitx/fcitx-chewing"; + downloadPage = "http://download.fcitx-im.org/fcitx-chewing/"; + description = "Fcitx engine for chewing"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2ca59361b41..220cfdfd659 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1513,6 +1513,8 @@ let fcitx-anthy = callPackage ../tools/inputmethods/fcitx-engines/fcitx-anthy { }; + fcitx-chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { }; + fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix { From 1e5cd17f12a520e7f670d206a910e27f50a948d2 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 15:34:54 +0900 Subject: [PATCH 039/291] fcitx-hangul: init at 0.3.0 --- .../fcitx-engines/fcitx-hangul/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix new file mode 100644 index 00000000000..529bb29f98c --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, cmake, fcitx, libhangul, gettext, pkgconfig }: + +stdenv.mkDerivation rec { + name = "fcitx-hangul-${version}"; + version = "0.3.0"; + + src = fetchurl { + url = "http://download.fcitx-im.org/fcitx-hangul/${name}.tar.xz"; + sha256 = "1jq78nczliw6pnhfac8hspffybrry6syk17y0wwcq05j3r3nd2lp"; + }; + + buildInputs = [ cmake fcitx libhangul gettext pkgconfig ]; + + preInstall = '' + substituteInPlace src/cmake_install.cmake \ + --replace ${fcitx} $out + substituteInPlace data/cmake_install.cmake \ + --replace ${fcitx} $out + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/fcitx/fcitx-hangul"; + downloadPage = "http://download.fcitx-im.org/fcitx-hangul/"; + description = "Fcitx Wrapper for hangul"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 220cfdfd659..61347ecab52 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1515,6 +1515,8 @@ let fcitx-chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { }; + fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; + fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix { From eb31d296e6d4003eebf6aa5548c34c524eba3bcf Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 15:40:39 +0900 Subject: [PATCH 040/291] fcitx-table-other: init at 0.2.3 --- .../fcitx-table-other/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix new file mode 100644 index 00000000000..d5e74f6ba06 --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, cmake, fcitx, gettext }: + +stdenv.mkDerivation rec { + name = "fcitx-table-other-${version}"; + version = "0.2.3"; + + src = fetchurl { + url = "http://download.fcitx-im.org/fcitx-table-other/${name}.tar.xz"; + sha256 = "12fqbsjrpx5pndx2jf7fksrlp01a4yxz62h2vpxrbkpk73ljly4v"; + }; + + buildInputs = [ cmake fcitx gettext ]; + + preInstall = '' + substituteInPlace tables/cmake_install.cmake \ + --replace ${fcitx} $out + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/fcitx/fcitx-table-other"; + downloadPage = "http://download.fcitx-im.org/fcitx-table-other/"; + description = "Provides some other tables for Fcitx"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 61347ecab52..47ddbb6feda 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1517,6 +1517,8 @@ let fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; + fcitx-table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { }; + fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix { From 1e581966b9883a66172bb6ccae3dd33f393e4dfe Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 16:18:26 +0900 Subject: [PATCH 041/291] fcitx-moz: init at 2.17.2313.102 --- .../fcitx-engines/fcitx-mozc/default.nix | 116 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 2 files changed, 120 insertions(+) create mode 100644 pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix new file mode 100644 index 00000000000..7accea3f0fd --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix @@ -0,0 +1,116 @@ +{ clangStdenv, fetchFromGitHub, fetchurl, fetchpatch, fetchsvn, gyp, which, ninja, + python, pkgconfig, protobuf, gtk, zinnia, qt4, libxcb, tegaki-zinnia-japanese, + fcitx, gettext }: +let + japanese_usage_dictionary = fetchsvn { + url = "http://japanese-usage-dictionary.googlecode.com/svn/trunk"; + rev = "10"; + sha256 = "0pyrpz9c8nxccwpgyr36w314mi8h132cis8ijvlqmmhqxwsi30hm"; + }; + icons = fetchurl { + url = "http://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz"; + sha256 = "10bdjn481jsh32vll7r756l392anz44h6207vjqwby3rplk31np1"; + }; +in clangStdenv.mkDerivation rec { + name = "fcitx-mozc-${version}"; + version = "2.17.2313.102"; + + src = fetchFromGitHub { + owner = "google"; + repo = "mozc"; + rev = "3306d3314499a54a4064b8b80bbc1bce3f6cfac4"; + sha256 = "0l7mjlnbm6i1ipni8pg9ym5bjg3rzkaxi9xwmsz2lddv348sqii2"; + }; + + nativeBuildInputs = [ gyp which ninja python pkgconfig ]; + buildInputs = [ protobuf gtk zinnia qt4 libxcb fcitx gettext ]; + + postUnpack = '' + rmdir $sourceRoot/src/third_party/japanese_usage_dictionary/ + ln -s ${japanese_usage_dictionary} $sourceRoot/src/third_party/japanese_usage_dictionary + tar -xzf ${icons} -C $sourceRoot + ''; + + patch_version = "2.17.2313.102.1"; + patches = [ + (fetchpatch rec { + name = "fcitx-mozc-${patch_version}.patch"; + url = "https://download.fcitx-im.org/fcitx-mozc/${name}"; + sha256 = "172c34jkppibvwr9qf9xwgh2hdrmmhyx7nsdj49krxbfdlsy3yy0"; + }) + ]; + + postPatch = '' + substituteInPlace src/unix/fcitx/mozc.conf \ + --replace "/usr/share/fcitx/mozc/icon/mozc.png" "mozc" + ''; + + configurePhase = '' + export GYP_DEFINES="document_dir=$out/share/doc/mozc use_libzinnia=1 use_libprotobuf=1" + python src/build_mozc.py gyp --gypdir=${gyp}/bin --server_dir=$out/lib/mozc \ + python src/unix/fcitx/fcitx.gyp gyp --gypdir=${gyp}/bin + ''; + + preBuildPhase = '' + head -n 29 src/server/mozc_server.cc > LICENSE + ''; + + buildPhase = '' + python src/build_mozc.py build -c Release \ + unix/fcitx/fcitx.gyp:fcitx-mozc \ + server/server.gyp:mozc_server \ + gui/gui.gyp:mozc_tool + ''; + + checkPhase = '' + python src/build_mozc.py runtests -c Release + ''; + + installPhase = '' + install -d $out/share/licenses/fcitx-mozc/ + install -m 644 LICENSE src/data/installer/*.html $out/share/licenses/fcitx-mozc/ + + install -d $out/share/doc/mozc + install -m 644 src/data/installer/*.html $out/share/doc/mozc/ + + install -D -m 755 src/out_linux/Release/mozc_server $out/lib/mozc/mozc_server + install -m 755 src/out_linux/Release/mozc_tool $out/lib/mozc/mozc_tool + + install -D -m 755 src/out_linux/Release/fcitx-mozc.so $out/lib/fcitx/fcitx-mozc.so + install -D -m 644 src/unix/fcitx/fcitx-mozc.conf $out/share/fcitx/addon/fcitx-mozc.conf + install -D -m 644 src/unix/fcitx/mozc.conf $out/share/fcitx/inputmethod/mozc.conf + + install -d $out/share/doc/mozc + + for mofile in src/out_linux/Release/gen/unix/fcitx/po/*.mo + do + filename=`basename $mofile` + lang=$filename.mo + install -D -m 644 "$mofile" "$out/share/locale/$lang/LC_MESSAGES/fcitx-mozc.mo" + done + + install -d $out/share/fcitx/imicon + install -m 644 fcitx-mozc-icons/mozc.png $out/share/fcitx/imicon/mozc.png + install -d $out/share/fcitx/mozc/icon + install -m 644 fcitx-mozc-icons/mozc.png $out/share/fcitx/mozc/icon/mozc.png + install -m 644 fcitx-mozc-icons/mozc-alpha_full.png $out/share/fcitx/mozc/icon/mozc-alpha_full.png + install -m 644 fcitx-mozc-icons/mozc-alpha_half.png $out/share/fcitx/mozc/icon/mozc-alpha_half.png + install -m 644 fcitx-mozc-icons/mozc-direct.png $out/share/fcitx/mozc/icon/mozc-direct.png + install -m 644 fcitx-mozc-icons/mozc-hiragana.png $out/share/fcitx/mozc/icon/mozc-hiragana.png + install -m 644 fcitx-mozc-icons/mozc-katakana_full.png $out/share/fcitx/mozc/icon/mozc-katakana_full.png + install -m 644 fcitx-mozc-icons/mozc-katakana_half.png $out/share/fcitx/mozc/icon/mozc-katakana_half.png + install -m 644 fcitx-mozc-icons/mozc-dictionary.png $out/share/fcitx/mozc/icon/mozc-dictionary.png + install -m 644 fcitx-mozc-icons/mozc-properties.png $out/share/fcitx/mozc/icon/mozc-properties.png + install -m 644 fcitx-mozc-icons/mozc-tool.png $out/share/fcitx/mozc/icon/mozc-tool.png + ''; + + meta = with clangStdenv.lib; { + description = "Fcitx engine for Google japanese input method"; + homepage = http://code.google.com/p/mozc/; + downloadPage = "http://download.fcitx-im.org/fcitx-mozc/"; + license = licenses.free; + platforms = platforms.linux; + maintainers = [ maintainers.ericsagnes ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 47ddbb6feda..cb1d083555d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1517,6 +1517,10 @@ let fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; + fcitx-mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc { + inherit (pythonPackages) gyp; + }; + fcitx-table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { }; fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; From a0457135d8e4ea13610f00b26e37fcb7201ceb67 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 17 Feb 2016 02:15:15 +0900 Subject: [PATCH 042/291] fcitx-qt5: 1.0.4 -> 1.0.5 --- pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix index fad7862cf3b..428e96e8674 100644 --- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix +++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "fcitx-qt5-${version}"; - version = "1.0.4"; + version = "1.0.5"; src = fetchurl { url = "http://download.fcitx-im.org/fcitx-qt5/${name}.tar.xz"; - sha256 = "070dlmwkim7sg0xwxfcbb46li1jk8yd3rmj0j5fkmgyr12044aml"; + sha256 = "1pj1b04n8r4kl7jh1qdv0xshgzb3zrmizfa3g5h3yk589h191vwc"; }; buildInputs = [ cmake fcitx extra-cmake-modules qtbase ]; From 850be632a071c2d7dd2f9bdb333d1fdffbec3340 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 16:29:50 +0900 Subject: [PATCH 043/291] fcitx service: init --- nixos/modules/i18n/inputMethod/fcitx.nix | 51 +++++++++++++++++++ nixos/modules/module-list.nix | 1 + .../fcitx-engines/fcitx-anthy/default.nix | 9 ++-- .../fcitx-engines/fcitx-chewing/default.nix | 13 ++--- .../fcitx-engines/fcitx-hangul/default.nix | 13 ++--- .../fcitx-engines/fcitx-mozc/default.nix | 13 ++--- .../fcitx-table-other/default.nix | 13 ++--- pkgs/top-level/all-packages.nix | 18 ++++--- 8 files changed, 96 insertions(+), 35 deletions(-) create mode 100644 nixos/modules/i18n/inputMethod/fcitx.nix diff --git a/nixos/modules/i18n/inputMethod/fcitx.nix b/nixos/modules/i18n/inputMethod/fcitx.nix new file mode 100644 index 00000000000..16fa8c764a8 --- /dev/null +++ b/nixos/modules/i18n/inputMethod/fcitx.nix @@ -0,0 +1,51 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + cfg = config.i18n.inputMethod.fcitx; + fcitxPackage = pkgs.fcitx-with-plugins.override { plugins = cfg.engines; }; + fcitxEngine = types.package // { + name = "fcitx-engine"; + check = x: (lib.types.package.check x) && (attrByPath ["meta" "isFcitxEngine"] false x); + }; +in +{ + options = { + + i18n.inputMethod.fcitx = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Enable Fcitx input method. + Fcitx can be used to input of Chinese, Korean, Japanese and other special characters. + ''; + }; + engines = mkOption { + type = with types; listOf fcitxEngine; + default = []; + example = literalExample "with pkgs.fcitx-engines; [ mozc hangul ]"; + description = '' + Enabled Fcitx engines. + Available engines can be found by running `nix-env "<nixpkgs>" . -qaP -A fcitx-engines`. + ''; + }; + }; + + }; + + config = mkIf cfg.enable { + environment.systemPackages = [ fcitxPackage ]; + gtkPlugins = [ fcitxPackage ]; + qtPlugins = [ fcitxPackage pkgs.kde5.fcitx-qt5 ]; + + environment.variables = { + GTK_IM_MODULE = "fcitx"; + QT_IM_MODULE = "fcitx"; + XMODIFIERS = "@im=fcitx"; + }; + services.xserver.displayManager.sessionCommands = "${fcitxPackage}/bin/fcitx"; + }; +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 8254cdd6f5e..7375dcde5c5 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -43,6 +43,7 @@ ./hardware/video/nvidia.nix ./hardware/video/ati.nix ./hardware/video/webcam/facetimehd.nix + ./i18n/inputMethod/fcitx.nix ./installer/tools/auto-upgrade.nix ./installer/tools/nixos-checkout.nix ./installer/tools/tools.nix diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix index c1cb76d3a68..88ba436207c 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix @@ -17,10 +17,11 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "Fcitx Wrapper for anthy"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ericsagnes ]; + isFcitxEngine = true; + description = "Fcitx Wrapper for anthy"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ iyzsong ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix index eb8897b9d5e..58695434cb6 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix @@ -19,12 +19,13 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = "https://github.com/fcitx/fcitx-chewing"; - downloadPage = "http://download.fcitx-im.org/fcitx-chewing/"; - description = "Fcitx engine for chewing"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ ericsagnes ]; + isFcitxEngine = true; + homepage = "https://github.com/fcitx/fcitx-chewing"; + downloadPage = "http://download.fcitx-im.org/fcitx-chewing/"; + description = "Fcitx engine for chewing"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix index 529bb29f98c..54b5335d9bb 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-hangul/default.nix @@ -19,11 +19,12 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = "https://github.com/fcitx/fcitx-hangul"; - downloadPage = "http://download.fcitx-im.org/fcitx-hangul/"; - description = "Fcitx Wrapper for hangul"; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ ericsagnes ]; + isFcitxEngine = true; + homepage = "https://github.com/fcitx/fcitx-hangul"; + downloadPage = "http://download.fcitx-im.org/fcitx-hangul/"; + description = "Fcitx Wrapper for hangul"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix index 7accea3f0fd..5366fe55877 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-mozc/default.nix @@ -105,12 +105,13 @@ in clangStdenv.mkDerivation rec { ''; meta = with clangStdenv.lib; { - description = "Fcitx engine for Google japanese input method"; - homepage = http://code.google.com/p/mozc/; - downloadPage = "http://download.fcitx-im.org/fcitx-mozc/"; - license = licenses.free; - platforms = platforms.linux; - maintainers = [ maintainers.ericsagnes ]; + isFcitxEngine = true; + description = "Fcitx engine for Google japanese input method"; + homepage = http://code.google.com/p/mozc/; + downloadPage = "http://download.fcitx-im.org/fcitx-mozc/"; + license = licenses.free; + platforms = platforms.linux; + maintainers = [ maintainers.ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix index d5e74f6ba06..40ef0b33aea 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix @@ -17,12 +17,13 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = "https://github.com/fcitx/fcitx-table-other"; - downloadPage = "http://download.fcitx-im.org/fcitx-table-other/"; - description = "Provides some other tables for Fcitx"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ ericsagnes ]; + isFcitxEngine = true; + homepage = "https://github.com/fcitx/fcitx-table-other"; + downloadPage = "http://download.fcitx-im.org/fcitx-table-other/"; + description = "Provides some other tables for Fcitx"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cb1d083555d..d2e26707c45 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1511,18 +1511,22 @@ let fcitx = callPackage ../tools/inputmethods/fcitx { }; - fcitx-anthy = callPackage ../tools/inputmethods/fcitx-engines/fcitx-anthy { }; + fcitx-engines = { - fcitx-chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { }; + anthy = callPackage ../tools/inputmethods/fcitx-engines/fcitx-anthy { }; - fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; + chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { }; + + hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; + + mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc { + inherit (pythonPackages) gyp; + }; + + table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { }; - fcitx-mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc { - inherit (pythonPackages) gyp; }; - fcitx-table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { }; - fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { }; fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix { From 295d67002432bc719af447a054add3292eefafed Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 10 Feb 2016 14:00:58 +0900 Subject: [PATCH 044/291] fcitx-with-plugins: add fcitx-configtool and fcitx-qt5 --- nixos/modules/i18n/inputMethod/fcitx.nix | 2 +- pkgs/tools/inputmethods/fcitx/wrapper.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/i18n/inputMethod/fcitx.nix b/nixos/modules/i18n/inputMethod/fcitx.nix index 16fa8c764a8..b0e7578810a 100644 --- a/nixos/modules/i18n/inputMethod/fcitx.nix +++ b/nixos/modules/i18n/inputMethod/fcitx.nix @@ -39,7 +39,7 @@ in config = mkIf cfg.enable { environment.systemPackages = [ fcitxPackage ]; gtkPlugins = [ fcitxPackage ]; - qtPlugins = [ fcitxPackage pkgs.kde5.fcitx-qt5 ]; + qtPlugins = [ fcitxPackage ]; environment.variables = { GTK_IM_MODULE = "fcitx"; diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix index d4efb332696..a0ae2618954 100644 --- a/pkgs/tools/inputmethods/fcitx/wrapper.nix +++ b/pkgs/tools/inputmethods/fcitx/wrapper.nix @@ -1,4 +1,4 @@ -{ stdenv, buildEnv, fcitx, makeWrapper, plugins }: +{ stdenv, buildEnv, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }: # This is based on the pidgin-with-plugins package. # Users should be able to configure what plugins are used @@ -16,7 +16,7 @@ let drv = buildEnv { name = "fcitx-with-plugins-" + (builtins.parseDrvName fcitx.name).version; - paths = [ fcitx ] ++ plugins; + paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins; postBuild = '' # TODO: This could be avoided if buildEnv could be forced to create all directories From 3c9892d4d4a1049071629a269e0c7ce7a0eb0a4b Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 10 Feb 2016 11:41:51 +0900 Subject: [PATCH 045/291] ibus: group engines --- .../{ => ibus-engines}/ibus-anthy/default.nix | 0 .../ibus-mozc}/default.nix | 0 .../ibus-table-others/default.nix | 0 .../{ => ibus-engines}/ibus-table/default.nix | 0 .../{ibus-qt/default.nix => ibus/ibus-qt.nix} | 0 pkgs/top-level/all-packages.nix | 20 +++++++++++-------- 6 files changed, 12 insertions(+), 8 deletions(-) rename pkgs/tools/inputmethods/{ => ibus-engines}/ibus-anthy/default.nix (100%) rename pkgs/tools/inputmethods/{mozc => ibus-engines/ibus-mozc}/default.nix (100%) rename pkgs/tools/inputmethods/{ => ibus-engines}/ibus-table-others/default.nix (100%) rename pkgs/tools/inputmethods/{ => ibus-engines}/ibus-table/default.nix (100%) rename pkgs/tools/inputmethods/{ibus-qt/default.nix => ibus/ibus-qt.nix} (100%) diff --git a/pkgs/tools/inputmethods/ibus-anthy/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix similarity index 100% rename from pkgs/tools/inputmethods/ibus-anthy/default.nix rename to pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix diff --git a/pkgs/tools/inputmethods/mozc/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix similarity index 100% rename from pkgs/tools/inputmethods/mozc/default.nix rename to pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix diff --git a/pkgs/tools/inputmethods/ibus-table-others/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix similarity index 100% rename from pkgs/tools/inputmethods/ibus-table-others/default.nix rename to pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix diff --git a/pkgs/tools/inputmethods/ibus-table/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix similarity index 100% rename from pkgs/tools/inputmethods/ibus-table/default.nix rename to pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix diff --git a/pkgs/tools/inputmethods/ibus-qt/default.nix b/pkgs/tools/inputmethods/ibus/ibus-qt.nix similarity index 100% rename from pkgs/tools/inputmethods/ibus-qt/default.nix rename to pkgs/tools/inputmethods/ibus/ibus-qt.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d2e26707c45..f6eac612375 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1170,19 +1170,23 @@ let m17n_lib = callPackage ../tools/inputmethods/m17n-lib { }; - mozc = callPackage ../tools/inputmethods/mozc { - inherit (pythonPackages) gyp; - }; - ibus = callPackage ../tools/inputmethods/ibus { }; - ibus-qt = callPackage ../tools/inputmethods/ibus-qt { }; + ibus-qt = callPackage ../tools/inputmethods/ibus/ibus-qt.nix { }; - ibus-anthy = callPackage ../tools/inputmethods/ibus-anthy { }; + ibus-engines = { - ibus-table = callPackage ../tools/inputmethods/ibus-table { }; + anthy = callPackage ../tools/inputmethods/ibus-engines/ibus-anthy { }; - ibus-table-others = callPackage ../tools/inputmethods/ibus-table-others { }; + mozc = callPackage ../tools/inputmethods/ibus-engines/mozc { + inherit (pythonPackages) gyp; + }; + + table = callPackage ../tools/inputmethods/ibus-engines/ibus-table { }; + + table-others = callPackage ../tools/inputmethods/ibus-engines/ibus-table-others { }; + + }; brotli = callPackage ../tools/compression/brotli { }; From dd579a557694fcf15e705475539c4d9978e18e8d Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 10 Feb 2016 13:15:26 +0900 Subject: [PATCH 046/291] ibus-anthy: 1.5.7 -> 1.5.8 --- .../ibus-engines/ibus-anthy/default.nix | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix index 0b2382315a5..4bdee391880 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix @@ -1,20 +1,24 @@ -{ stdenv, fetchurl, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection, python, pythonPackages }: +{ stdenv, fetchFromGitHub, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection, + python, pythonPackages, gtk3, libtool, automake, autoconf }: stdenv.mkDerivation rec { name = "ibus-anthy-${version}"; - version = "1.5.7"; + version = "1.5.8"; meta = with stdenv.lib; { description = "IBus interface to the anthy input method"; homepage = http://wiki.github.com/fujiwarat/ibus-anthy; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ gebner ]; + maintainers = with maintainers; [ gebner ericsagnes ]; }; + preConfigure = "./autogen.sh --prefix=$out"; + configureFlags = "--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t"; - buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection python pythonPackages.pygobject3 ]; + buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection + python pythonPackages.pygobject3 gtk3 libtool automake autoconf ]; postFixup = '' substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out @@ -25,8 +29,10 @@ stdenv.mkDerivation rec { done ''; - src = fetchurl { - url = "https://github.com/ibus/ibus-anthy/releases/download/${version}/${name}.tar.gz"; - sha256 = "00sjrfhghrgkqm72mf39f8sz6wr4fwvvs9mn2alaldhgr5v0c861"; + src = fetchFromGitHub { + owner = "ibus"; + repo = "ibus-anthy"; + rev = version; + sha256 = "1laxwpnhgihv4dz5cgcz6d0a0880r93n7039ciz1m53hdzapwi4a"; }; } From ca2f9a4f159ed71f0495126b903b5f8b65a3cb88 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 10 Feb 2016 13:34:17 +0900 Subject: [PATCH 047/291] ibus-mozc: 2015-05-02 -> 2.17.2313.102 --- .../ibus-engines/ibus-hangul/default.nix | 38 +++++++++++++++++++ .../ibus-engines/ibus-mozc/default.nix | 30 ++++++++++----- pkgs/top-level/all-packages.nix | 4 +- 3 files changed, 61 insertions(+), 11 deletions(-) create mode 100644 pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix new file mode 100644 index 00000000000..5a6af4608c0 --- /dev/null +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix @@ -0,0 +1,38 @@ +{ stdenv, gnome, fetchFromGitHub, ibus, libhangul, autoconf, automake, gettext, libtool, librsvg, + intltool, pkgconfig, pythonPackages, makeWrapper, gtk3, python }: + +stdenv.mkDerivation rec { + name = "ibus-hangul-${version}"; + version = "1.5.0"; + + src = fetchFromGitHub { + owner = "choehwanjin"; + repo = "ibus-hangul"; + rev = version; + sha256 = "12l2spr32biqdbz01bzkamgq5gskbi6cd7ai343wqyy1ibjlkmp8"; + }; + + buildInputs = [ ibus libhangul autoconf gettext automake libtool + intltool pkgconfig python pythonPackages.pygobject3 gtk3 makeWrapper ]; + + preConfigure = '' + autoreconf --verbose --force --install + intltoolize --automake --force --copy + ''; + + postInstall = '' + wrapProgram $out/bin/ibus-setup-hangul \ + --prefix PYTHONPATH : $PYTHONPATH \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --prefix GDK_PIXBUF_MODULE_FILE : ${librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \ + --prefix LD_LIBRARY_PATH : ${libhangul}/lib + ''; + + meta = with stdenv.lib; { + description = "Ibus Hangul engine."; + homepage = https://github.com/choehwanjin/ibus-hangul; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; +} diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix index 20789a33a0c..9ab640990b1 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix @@ -7,33 +7,40 @@ let sha256 = "0pyrpz9c8nxccwpgyr36w314mi8h132cis8ijvlqmmhqxwsi30hm"; }; in clangStdenv.mkDerivation rec { - name = "mozc-${version}"; - version = "2015-05-02"; + name = "ibus-mozc-${version}"; + version = "2.17.2313.102"; meta = with clangStdenv.lib; { description = "Japanese input method from Google"; homepage = http://code.google.com/p/mozc/; - license = licenses.bsd3; + license = licenses.free; platforms = platforms.linux; - maintainers = [ maintainers.gebner ]; + maintainers = with maintainers; [ gebner ericsagnes ]; }; nativeBuildInputs = [ gyp which ninja python pkgconfig ]; buildInputs = [ protobuf ibus gtk zinnia qt4 libxcb ]; src = fetchFromGitHub { - owner = "google"; - repo = "mozc"; - rev = "d9783737ecfcb68c3d98d84e7052d716f4d0e0cb"; - sha256 = "52a83658e2e4a7b38e31a4085682be24c9c5f4c51a01578598a30b9833827b72"; + owner = "google"; + repo = "mozc"; + rev = "3306d3314499a54a4064b8b80bbc1bce3f6cfac4"; + sha256 = "0l7mjlnbm6i1ipni8pg9ym5bjg3rzkaxi9xwmsz2lddv348sqii2"; }; + postUnpack = '' + rmdir $sourceRoot/src/third_party/japanese_usage_dictionary/ ln -s ${japanese_usage_dictionary} $sourceRoot/src/third_party/japanese_usage_dictionary ''; configurePhase = '' - export GYP_DEFINES="ibus_mozc_path=$out/lib/ibus-mozc/ibus-engine-mozc ibus_mozc_icon_path=$out/share/ibus-mozc/product_icon.png document_dir=$out/share/doc/mozc zinnia_model_file=${tegaki-zinnia-japanese}/share/tegaki/models/zinnia/handwriting-ja.model use_libprotobuf=1" - python src/build_mozc.py gyp --gypdir=${gyp}/bin --server_dir=$out/lib/mozc + export GYP_DEFINES="document_dir=$out/share/doc/mozc use_libzinnia=1 use_libprotobuf=1 ibus_mozc_path=$out/lib/ibus-mozc/ibus-engine-mozc" + python src/build_mozc.py gyp --gypdir=${gyp}/bin --server_dir=$out/lib/mozc \ + python src/unix/fcitx/fcitx.gyp gyp --gypdir=${gyp}/bin + ''; + + preBuildPhase = '' + head -n 29 src/server/mozc_server.cc > LICENSE ''; buildPhase = '' @@ -50,6 +57,9 @@ in clangStdenv.mkDerivation rec { ''; installPhase = '' + install -d $out/share/licenses/mozc/ + install -m 644 LICENSE src/data/installer/*.html $out/share/licenses/mozc/ + install -D -m 755 src/out_linux/Release/mozc_server $out/lib/mozc/mozc_server install -m 755 src/out_linux/Release/mozc_tool $out/lib/mozc/mozc_tool diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f6eac612375..5d3162c6c30 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1178,7 +1178,9 @@ let anthy = callPackage ../tools/inputmethods/ibus-engines/ibus-anthy { }; - mozc = callPackage ../tools/inputmethods/ibus-engines/mozc { + hangul = callPackage ../tools/inputmethods/ibus-engines/ibus-hangul { }; + + mozc = callPackage ../tools/inputmethods/ibus-engines/ibus-mozc { inherit (pythonPackages) gyp; }; From 7ec5dc923435e96122f3a4ac0decd099f440f68e Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 10 Feb 2016 15:57:05 +0900 Subject: [PATCH 048/291] ibus-wrapper: init --- pkgs/tools/inputmethods/ibus/wrapper.nix | 24 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/tools/inputmethods/ibus/wrapper.nix diff --git a/pkgs/tools/inputmethods/ibus/wrapper.nix b/pkgs/tools/inputmethods/ibus/wrapper.nix new file mode 100644 index 00000000000..270a2db7412 --- /dev/null +++ b/pkgs/tools/inputmethods/ibus/wrapper.nix @@ -0,0 +1,24 @@ +{ stdenv, buildEnv, ibus, makeWrapper, plugins, hicolor_icon_theme }: + +let +drv = buildEnv { + name = "ibus-with-plugins-" + (builtins.parseDrvName ibus.name).version; + + paths = [ ibus hicolor_icon_theme ] ++ plugins; + + postBuild = '' + # TODO: This could be avoided if buildEnv could be forced to create all directories + if [ -L $out/bin ]; then + rm $out/bin + mkdir $out/bin + for i in ${ibus}/bin/*; do + ln -s $i $out/bin + done + fi + wrapProgram $out/bin/ibus \ + --set IBUS_COMPONENT_PATH "$out/share/ibus/component/" + wrapProgram $out/bin/ibus-daemon \ + --set IBUS_COMPONENT_PATH "$out/share/ibus/component/" + ''; + }; +in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5d3162c6c30..db3bc6abdc2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1190,6 +1190,10 @@ let }; + ibus-with-plugins = callPackage ../tools/inputmethods/ibus/wrapper.nix { + plugins = [ ]; + }; + brotli = callPackage ../tools/compression/brotli { }; biosdevname = callPackage ../tools/networking/biosdevname { }; From 52dd53373f7fa134b0e697a0f102490f3f4ade87 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 10 Feb 2016 16:10:35 +0900 Subject: [PATCH 049/291] ibus service: refactoring --- nixos/modules/i18n/inputMethod/ibus.nix | 52 +++++++++++++++++++ nixos/modules/module-list.nix | 2 +- nixos/modules/programs/ibus.nix | 51 ------------------ nixos/modules/rename.nix | 4 ++ .../ibus-engines/ibus-anthy/default.nix | 11 ++-- .../ibus-engines/ibus-hangul/default.nix | 11 ++-- .../ibus-engines/ibus-mozc/default.nix | 11 ++-- .../ibus-table-others/default.nix | 11 ++-- .../ibus-engines/ibus-table/default.nix | 11 ++-- 9 files changed, 87 insertions(+), 77 deletions(-) create mode 100644 nixos/modules/i18n/inputMethod/ibus.nix delete mode 100644 nixos/modules/programs/ibus.nix diff --git a/nixos/modules/i18n/inputMethod/ibus.nix b/nixos/modules/i18n/inputMethod/ibus.nix new file mode 100644 index 00000000000..e4bc15cf891 --- /dev/null +++ b/nixos/modules/i18n/inputMethod/ibus.nix @@ -0,0 +1,52 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + cfg = config.i18n.inputMethod.ibus; + ibusPackage = pkgs.ibus-with-plugins.override { plugins = cfg.engines; }; + ibusEngine = types.package // { + name = "ibus-engine"; + check = x: (lib.types.package.check x) && (attrByPath ["meta" "isIbusEngine"] false x); + }; +in +{ + options = { + i18n.inputMethod.ibus = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Enable IBus input method. + IBus can be used input of Chinese, Korean, Japanese and other special characters. + ''; + }; + engines = mkOption { + type = with types; listOf ibusEngine; + default = []; + example = literalExample "with pkgs.ibus-engines; [ mozc hangul ]"; + description = '' + Enabled IBus engines. + Available engines can be found by running `nix-env "<nixpkgs>" . -qaP -A ibus-engines`. + ''; + }; + }; + }; + + config = mkIf cfg.enable { + # Without dconf enabled it is impossible to use IBus + environment.systemPackages = [ ibusPackage pkgs.gnome3.dconf ]; + + gtkPlugins = [ pkgs.ibus ]; + qtPlugins = [ pkgs.ibus-qt ]; + + environment.variables = { + GTK_IM_MODULE = "ibus"; + QT_IM_MODULE = "ibus"; + XMODIFIERS = "@im=ibus"; + }; + + services.xserver.displayManager.sessionCommands = "${ibusPackage}/bin/ibus-daemon --daemonize --xim --cache=none"; + }; +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 7375dcde5c5..3df4e08e24b 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -44,6 +44,7 @@ ./hardware/video/ati.nix ./hardware/video/webcam/facetimehd.nix ./i18n/inputMethod/fcitx.nix + ./i18n/inputMethod/ibus.nix ./installer/tools/auto-upgrade.nix ./installer/tools/nixos-checkout.nix ./installer/tools/tools.nix @@ -67,7 +68,6 @@ ./programs/environment.nix ./programs/freetds.nix ./programs/fish.nix - ./programs/ibus.nix ./programs/kbdlight.nix ./programs/light.nix ./programs/man.nix diff --git a/nixos/modules/programs/ibus.nix b/nixos/modules/programs/ibus.nix deleted file mode 100644 index a42753a292b..00000000000 --- a/nixos/modules/programs/ibus.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ config, pkgs, lib, ... }: - -with lib; - -let - cfg = config.programs.ibus; -in -{ - options = { - - programs.ibus = { - enable = mkOption { - type = types.bool; - default = false; - example = true; - description = "Enable IBus input method"; - }; - plugins = mkOption { - type = lib.types.listOf lib.types.path; - default = []; - description = '' - IBus plugin packages - ''; - }; - }; - - }; - - config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.ibus pkgs.gnome3.dconf ]; - - gtkPlugins = [ pkgs.ibus ]; - qtPlugins = [ pkgs.ibus-qt ]; - - environment.variables = - let - env = pkgs.buildEnv { - name = "ibus-env"; - paths = [ pkgs.ibus ] ++ cfg.plugins; - }; - in { - GTK_IM_MODULE = "ibus"; - QT_IM_MODULE = "ibus"; - XMODIFIERS = "@im=ibus"; - - IBUS_COMPONENT_PATH = "${env}/share/ibus/component"; - }; - - services.xserver.displayManager.sessionCommands = "${pkgs.ibus}/bin/ibus-daemon --daemonize --xim --cache=none"; - }; -} diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 6e10b47f03c..698c28f37c8 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -59,6 +59,10 @@ with lib; # Tarsnap (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) + # ibus + (mkRenamedOptionModule [ "programs" "ibus" "enable" ] [ "i18n" "inputMethod" "ibus" "enable" ]) + (mkRenamedOptionModule [ "programs" "ibus" "plugins" ] [ "i18n" "inputMethod" "ibus" "engines" ]) + # proxy (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix index 4bdee391880..89039745fd9 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix @@ -6,11 +6,12 @@ stdenv.mkDerivation rec { version = "1.5.8"; meta = with stdenv.lib; { - description = "IBus interface to the anthy input method"; - homepage = http://wiki.github.com/fujiwarat/ibus-anthy; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ gebner ericsagnes ]; + isIbusEngine = true; + description = "IBus interface to the anthy input method"; + homepage = http://wiki.github.com/fujiwarat/ibus-anthy; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ gebner ericsagnes ]; }; preConfigure = "./autogen.sh --prefix=$out"; diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix index 5a6af4608c0..b682196d5d0 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix @@ -29,10 +29,11 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "Ibus Hangul engine."; - homepage = https://github.com/choehwanjin/ibus-hangul; - license = licenses.gpl2; - platforms = platforms.linux; - maintainers = with maintainers; [ ericsagnes ]; + isIbusEngine = true; + description = "Ibus Hangul engine."; + homepage = https://github.com/choehwanjin/ibus-hangul; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix index 9ab640990b1..e06d2b004ee 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix @@ -11,11 +11,12 @@ in clangStdenv.mkDerivation rec { version = "2.17.2313.102"; meta = with clangStdenv.lib; { - description = "Japanese input method from Google"; - homepage = http://code.google.com/p/mozc/; - license = licenses.free; - platforms = platforms.linux; - maintainers = with maintainers; [ gebner ericsagnes ]; + isIbusEngine = true; + description = "Japanese input method from Google"; + homepage = http://code.google.com/p/mozc/; + license = licenses.free; + platforms = platforms.linux; + maintainers = with maintainers; [ gebner ericsagnes ]; }; nativeBuildInputs = [ gyp which ninja python pkgconfig ]; diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix index f356bcdee85..13d9df5de08 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix @@ -20,10 +20,11 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "Various table-based input methods for IBus"; - homepage = https://github.com/moebiuscurve/ibus-table-others; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ mudri ]; + isIbusEngine = true; + description = "Various table-based input methods for IBus"; + homepage = https://github.com/moebiuscurve/ibus-table-others; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ mudri ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix index 58b890b0c92..244169cf46b 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table/default.nix @@ -12,10 +12,11 @@ stdenv.mkDerivation rec { buildInputs = [ ibus pkgconfig python3 pythonPackages.pygobject3 ]; meta = with stdenv.lib; { - description = "An IBus framework for table-based input methods"; - homepage = https://github.com/kaio/ibus-table/wiki; - license = licenses.lgpl21; - platforms = platforms.linux; - maintainers = with maintainers; [ mudri ]; + isIbusEngine = true; + description = "An IBus framework for table-based input methods"; + homepage = https://github.com/kaio/ibus-table/wiki; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = with maintainers; [ mudri ]; }; } From 2dac18aa01303be95dcf56cf4e0fa01ff30af05f Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 16 Feb 2016 22:46:17 +0900 Subject: [PATCH 050/291] uim: removed gtk and qt plugin update logic --- pkgs/tools/inputmethods/uim/data-hook.patch | 39 +++ pkgs/tools/inputmethods/uim/default.nix | 11 +- .../inputmethods/uim/immodules_cache.patch | 231 ------------------ 3 files changed, 45 insertions(+), 236 deletions(-) create mode 100644 pkgs/tools/inputmethods/uim/data-hook.patch delete mode 100644 pkgs/tools/inputmethods/uim/immodules_cache.patch diff --git a/pkgs/tools/inputmethods/uim/data-hook.patch b/pkgs/tools/inputmethods/uim/data-hook.patch new file mode 100644 index 00000000000..07fdf873316 --- /dev/null +++ b/pkgs/tools/inputmethods/uim/data-hook.patch @@ -0,0 +1,39 @@ +--- a/gtk2/immodule/Makefile.in 2015-11-24 16:21:08.967087208 +0900 ++++ b/gtk2/immodule/Makefile.in 2015-11-24 16:22:53.316095150 +0900 +@@ -806,7 +806,6 @@ + + install-data-am: install-moduleLTLIBRARIES + @$(NORMAL_INSTALL) +- $(MAKE) $(AM_MAKEFLAGS) install-data-hook + install-dvi: install-dvi-am + + install-dvi-am: +@@ -861,7 +860,7 @@ + ctags distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ +- install-data-am install-data-hook install-dvi install-dvi-am \ ++ install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am \ + +--- a/gtk3/immodule/Makefile.in 2015-11-24 16:21:08.971087209 +0900 ++++ b/gtk3/immodule/Makefile.in 2015-11-24 16:23:28.251097832 +0900 +@@ -824,7 +824,6 @@ + + install-data-am: install-moduleLTLIBRARIES + @$(NORMAL_INSTALL) +- $(MAKE) $(AM_MAKEFLAGS) install-data-hook + install-dvi: install-dvi-am + + install-dvi-am: +@@ -879,7 +878,7 @@ + ctags distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ +- install-data-am install-data-hook install-dvi install-dvi-am \ ++ install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man \ + install-moduleLTLIBRARIES install-pdf install-pdf-am diff --git a/pkgs/tools/inputmethods/uim/default.nix b/pkgs/tools/inputmethods/uim/default.nix index 19de302e7b1..99a415407c1 100644 --- a/pkgs/tools/inputmethods/uim/default.nix +++ b/pkgs/tools/inputmethods/uim/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { m17n_db ]; - patches = [ ./immodules_cache.patch ]; + patches = [ ./data-hook.patch ]; configureFlags = [ "--with-gtk2" @@ -41,10 +41,11 @@ stdenv.mkDerivation rec { sha1 = "43b9dbdead6797880e6cfc9c032ecb2d37d42777"; }; - meta = { - homepage = "http://code.google.com/p/uim/"; + meta = with stdenv.lib; { + homepage = "http://code.google.com/p/uim/"; description = "A multilingual input method framework"; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/uim/immodules_cache.patch b/pkgs/tools/inputmethods/uim/immodules_cache.patch deleted file mode 100644 index c2d08b661e3..00000000000 --- a/pkgs/tools/inputmethods/uim/immodules_cache.patch +++ /dev/null @@ -1,231 +0,0 @@ -diff -ru -x '*~' uim-1.8.6.orig/gtk2/immodule/Makefile.am uim-1.8.6/gtk2/immodule/Makefile.am ---- uim-1.8.6.orig/gtk2/immodule/Makefile.am 2013-06-30 13:26:09.000000000 +0900 -+++ uim-1.8.6/gtk2/immodule/Makefile.am 2014-07-13 21:51:26.538400004 +0900 -@@ -1,5 +1,5 @@ - uim_gtk_im_module_path = $(libdir)/gtk-2.0 --uim_gtk_im_module_file = $(DESTDIR)$(sysconfdir)/gtk-2.0/gtk.immodules -+uim_gtk_im_module_file = $(uim_gtk_im_module_path)/@GTK_BINARY_VERSION@/immodules.cache - - moduledir = $(uim_gtk_im_module_path)/@GTK_BINARY_VERSION@/immodules - -@@ -38,48 +38,12 @@ - - install-data-hook: gtk-rc-get-immodule-file - if test -z $(DESTDIR); then \ -- if test $(libdir) = $(GTK_LIBDIR); then \ -- if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ -- $(QUERY_COMMAND) > `$(GTK_RC_GET_IMMODULE_FILE)`; \ -- echo "*** \"`$(GTK_RC_GET_IMMODULE_FILE)`\" is updated. ***"; \ -- else \ -- echo "********************** Warning ***********************"; \ -- echo " $(QUERY_COMMAND) not found"; \ -- echo " Please make sure to update"; \ -- echo " \"`$(GTK_RC_GET_IMMODULE_FILE)`\""; \ -- echo " manually."; \ -- echo "******************************************************"; \ -- fi \ -- else \ -- if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ -- $(mkinstalldirs) $(sysconfdir)/gtk-2.0; \ -- GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ -- echo "******************************************************"; \ -- echo " You need to set"; \ -- echo " GTK_IM_MODULE_FILE=$(uim_gtk_im_module_file)"; \ -- echo " environment variable to use this module."; \ -- echo "******************************************************"; \ -- else \ -- echo "********************** Warning ***********************"; \ -- echo " $(QUERY_COMMAND) not found"; \ -- echo " Please make sure to update"; \ -- echo " \"$(uim_gtk_im_module_file)\""; \ -- echo " manually, and set"; \ -- echo " GTK_IM_MODULE_FILE=$(uim_gtk_im_module_file)"; \ -- echo " environment variable to use this module."; \ -- echo "******************************************************"; \ -- fi \ -- fi \ -+ $(mkinstalldirs) $(uim_gtk_im_module_path)/@GTK_BINARY_VERSION@; \ -+ GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ - fi - uninstall-hook: - if test -z $(DESTDIR); then \ -- if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ -- if test $(libdir) = $(GTK_LIBDIR); then \ -- $(QUERY_COMMAND) > `$(GTK_RC_GET_IMMODULE_FILE)`; \ -- else \ -- GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ -- fi \ -- fi \ -+ GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ - fi - else - install-data-hook: -diff -ru -x '*~' uim-1.8.6.orig/gtk2/immodule/Makefile.in uim-1.8.6/gtk2/immodule/Makefile.in ---- uim-1.8.6.orig/gtk2/immodule/Makefile.in 2013-06-30 13:27:08.000000000 +0900 -+++ uim-1.8.6/gtk2/immodule/Makefile.in 2014-07-13 22:12:27.947595507 +0900 -@@ -434,7 +434,7 @@ - top_srcdir = @top_srcdir@ - uim_pixmapsdir = @uim_pixmapsdir@ - uim_gtk_im_module_path = $(libdir)/gtk-2.0 --uim_gtk_im_module_file = $(DESTDIR)$(sysconfdir)/gtk-2.0/gtk.immodules -+uim_gtk_im_module_file = $(uim_gtk_im_module_path)/@GTK_BINARY_VERSION@/immodules.cache - moduledir = $(uim_gtk_im_module_path)/@GTK_BINARY_VERSION@/immodules - @GTK2_TRUE@im_uim_la = im-uim.la - @GTK2_TRUE@im_uim_la_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) -@@ -875,48 +875,12 @@ - - @GTK2_TRUE@install-data-hook: gtk-rc-get-immodule-file - @GTK2_TRUE@ if test -z $(DESTDIR); then \ --@GTK2_TRUE@ if test $(libdir) = $(GTK_LIBDIR); then \ --@GTK2_TRUE@ if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ --@GTK2_TRUE@ $(QUERY_COMMAND) > `$(GTK_RC_GET_IMMODULE_FILE)`; \ --@GTK2_TRUE@ echo "*** \"`$(GTK_RC_GET_IMMODULE_FILE)`\" is updated. ***"; \ --@GTK2_TRUE@ else \ --@GTK2_TRUE@ echo "********************** Warning ***********************"; \ --@GTK2_TRUE@ echo " $(QUERY_COMMAND) not found"; \ --@GTK2_TRUE@ echo " Please make sure to update"; \ --@GTK2_TRUE@ echo " \"`$(GTK_RC_GET_IMMODULE_FILE)`\""; \ --@GTK2_TRUE@ echo " manually."; \ --@GTK2_TRUE@ echo "******************************************************"; \ --@GTK2_TRUE@ fi \ --@GTK2_TRUE@ else \ --@GTK2_TRUE@ if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ --@GTK2_TRUE@ $(mkinstalldirs) $(sysconfdir)/gtk-2.0; \ --@GTK2_TRUE@ GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ --@GTK2_TRUE@ echo "******************************************************"; \ --@GTK2_TRUE@ echo " You need to set"; \ --@GTK2_TRUE@ echo " GTK_IM_MODULE_FILE=$(uim_gtk_im_module_file)"; \ --@GTK2_TRUE@ echo " environment variable to use this module."; \ --@GTK2_TRUE@ echo "******************************************************"; \ --@GTK2_TRUE@ else \ --@GTK2_TRUE@ echo "********************** Warning ***********************"; \ --@GTK2_TRUE@ echo " $(QUERY_COMMAND) not found"; \ --@GTK2_TRUE@ echo " Please make sure to update"; \ --@GTK2_TRUE@ echo " \"$(uim_gtk_im_module_file)\""; \ --@GTK2_TRUE@ echo " manually, and set"; \ --@GTK2_TRUE@ echo " GTK_IM_MODULE_FILE=$(uim_gtk_im_module_file)"; \ --@GTK2_TRUE@ echo " environment variable to use this module."; \ --@GTK2_TRUE@ echo "******************************************************"; \ --@GTK2_TRUE@ fi \ --@GTK2_TRUE@ fi \ -+@GTK2_TRUE@ $(mkinstalldirs) $(uim_gtk_im_module_path)/@GTK_BINARY_VERSION@; \ -+@GTK2_TRUE@ GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ - @GTK2_TRUE@ fi - @GTK2_TRUE@uninstall-hook: - @GTK2_TRUE@ if test -z $(DESTDIR); then \ --@GTK2_TRUE@ if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ --@GTK2_TRUE@ if test $(libdir) = $(GTK_LIBDIR); then \ --@GTK2_TRUE@ $(QUERY_COMMAND) > `$(GTK_RC_GET_IMMODULE_FILE)`; \ --@GTK2_TRUE@ else \ --@GTK2_TRUE@ GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ --@GTK2_TRUE@ fi \ --@GTK2_TRUE@ fi \ -+@GTK2_TRUE@ GTK_PATH=$(uim_gtk_im_module_path) $(QUERY_COMMAND) > $(uim_gtk_im_module_file); \ - @GTK2_TRUE@ fi - @GTK2_FALSE@install-data-hook: - -diff -ru -x '*~' uim-1.8.6.orig/gtk3/immodule/Makefile.am uim-1.8.6/gtk3/immodule/Makefile.am ---- uim-1.8.6.orig/gtk3/immodule/Makefile.am 2013-06-30 13:26:20.000000000 +0900 -+++ uim-1.8.6/gtk3/immodule/Makefile.am 2014-07-13 21:55:38.114246503 +0900 -@@ -45,42 +45,11 @@ - - install-data-hook: gtk3-rc-get-immodule-file - if test -z $(DESTDIR); then \ -- if test $(libdir) = $(GTK3_LIBDIR); then \ -- if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ -- $(QUERY_COMMAND) --update-cache; \ -- echo "*** \"`$(GTK3_RC_GET_IMMODULE_FILE)`\" is updated. ***"; \ -- else \ -- echo "********************** Warning ***********************"; \ -- echo " $(QUERY_COMMAND) not found"; \ -- echo " Please make sure to update"; \ -- echo " \"`$(GTK3_RC_GET_IMMODULE_FILE)`\""; \ -- echo " manually."; \ -- echo "******************************************************"; \ -- fi \ -- else \ -- if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ -- GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) --update-cache; \ -- else \ -- echo "********************** Warning ***********************"; \ -- echo " $(QUERY_COMMAND) not found"; \ -- echo " Please make sure to update"; \ -- echo " immodules.cache"; \ -- echo " manually, and set"; \ -- echo " GTK_IM_MODULE_FILE=PATH_TO/immodule.cache"; \ -- echo " environment variable to use this module."; \ -- echo "******************************************************"; \ -- fi \ -- fi \ -+ GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) > $(uim_gtk3_im_module_path)/@GTK3_BINARY_VERSION@/immodules.cache ; \ - fi - uninstall-hook: - if test -z $(DESTDIR); then \ -- if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ -- if test $(libdir) = $(GTK3_LIBDIR); then \ -- $(QUERY_COMMAND) --update-cache; \ -- else \ -- GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) --update-cache; \ -- fi \ -- fi \ -+ GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) > $(uim_gtk3_im_module_path)/@GTK3_BINARY_VERSION@/immodules.cache ; \ - fi - else - install-data-hook: -diff -ru -x '*~' uim-1.8.6.orig/gtk3/immodule/Makefile.in uim-1.8.6/gtk3/immodule/Makefile.in ---- uim-1.8.6.orig/gtk3/immodule/Makefile.in 2013-06-30 13:27:08.000000000 +0900 -+++ uim-1.8.6/gtk3/immodule/Makefile.in 2014-07-13 21:56:11.531225832 +0900 -@@ -893,42 +893,11 @@ - - @GTK3_TRUE@install-data-hook: gtk3-rc-get-immodule-file - @GTK3_TRUE@ if test -z $(DESTDIR); then \ --@GTK3_TRUE@ if test $(libdir) = $(GTK3_LIBDIR); then \ --@GTK3_TRUE@ if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ --@GTK3_TRUE@ $(QUERY_COMMAND) --update-cache; \ --@GTK3_TRUE@ echo "*** \"`$(GTK3_RC_GET_IMMODULE_FILE)`\" is updated. ***"; \ --@GTK3_TRUE@ else \ --@GTK3_TRUE@ echo "********************** Warning ***********************"; \ --@GTK3_TRUE@ echo " $(QUERY_COMMAND) not found"; \ --@GTK3_TRUE@ echo " Please make sure to update"; \ --@GTK3_TRUE@ echo " \"`$(GTK3_RC_GET_IMMODULE_FILE)`\""; \ --@GTK3_TRUE@ echo " manually."; \ --@GTK3_TRUE@ echo "******************************************************"; \ --@GTK3_TRUE@ fi \ --@GTK3_TRUE@ else \ --@GTK3_TRUE@ if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ --@GTK3_TRUE@ GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) --update-cache; \ --@GTK3_TRUE@ else \ --@GTK3_TRUE@ echo "********************** Warning ***********************"; \ --@GTK3_TRUE@ echo " $(QUERY_COMMAND) not found"; \ --@GTK3_TRUE@ echo " Please make sure to update"; \ --@GTK3_TRUE@ echo " immodules.cache"; \ --@GTK3_TRUE@ echo " manually, and set"; \ --@GTK3_TRUE@ echo " GTK_IM_MODULE_FILE=PATH_TO/immodule.cache"; \ --@GTK3_TRUE@ echo " environment variable to use this module."; \ --@GTK3_TRUE@ echo "******************************************************"; \ --@GTK3_TRUE@ fi \ --@GTK3_TRUE@ fi \ -+@GTK3_TRUE@ GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) > $(uim_gtk3_im_module_path)/@GTK3_BINARY_VERSION@/immodules.cache ; \ - @GTK3_TRUE@ fi - @GTK3_TRUE@uninstall-hook: - @GTK3_TRUE@ if test -z $(DESTDIR); then \ --@GTK3_TRUE@ if type $(QUERY_COMMAND) > /dev/null 2>&1; then \ --@GTK3_TRUE@ if test $(libdir) = $(GTK3_LIBDIR); then \ --@GTK3_TRUE@ $(QUERY_COMMAND) --update-cache; \ --@GTK3_TRUE@ else \ --@GTK3_TRUE@ GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) --update-cache; \ --@GTK3_TRUE@ fi \ --@GTK3_TRUE@ fi \ -+@GTK3_TRUE@ GTK_PATH=$(uim_gtk3_im_module_path) $(QUERY_COMMAND) > $(uim_gtk3_im_module_path)/@GTK3_BINARY_VERSION@/immodules.cache ; \ - @GTK3_TRUE@ fi - @GTK3_FALSE@install-data-hook: - -diff -ru -x '*~' uim-1.8.6.orig/qt4/immodule/quiminputcontextplugin.pro.in uim-1.8.6/qt4/immodule/quiminputcontextplugin.pro.in ---- uim-1.8.6.orig/qt4/immodule/quiminputcontextplugin.pro.in 2013-06-30 13:26:20.000000000 +0900 -+++ uim-1.8.6/qt4/immodule/quiminputcontextplugin.pro.in 2014-03-09 11:31:19.388085048 +0900 -@@ -35,4 +35,4 @@ - - TARGET = uiminputcontextplugin - --target.path += @DESTDIR@$$[QT_INSTALL_PLUGINS]/inputmethods -+target.path += @DESTDIR@@exec_prefix@/lib/qt4/plugins/inputmethods From 4a199d99552046e2ffd743d501d4ee4696038b42 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 16 Feb 2016 22:52:25 +0900 Subject: [PATCH 051/291] uim service: init --- nixos/modules/i18n/inputMethod/uim.nix | 48 ++++++++++++++++++++++++++ nixos/modules/module-list.nix | 1 + 2 files changed, 49 insertions(+) create mode 100644 nixos/modules/i18n/inputMethod/uim.nix diff --git a/nixos/modules/i18n/inputMethod/uim.nix b/nixos/modules/i18n/inputMethod/uim.nix new file mode 100644 index 00000000000..0154cdc5057 --- /dev/null +++ b/nixos/modules/i18n/inputMethod/uim.nix @@ -0,0 +1,48 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + cfg = config.i18n.inputMethod.uim; +in +{ + options = { + + i18n.inputMethod.uim = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Enable uim input method. + Uim can be used to input of Chinese, Korean, Japanese and other special characters. + ''; + }; + toolbar = mkOption { + type = types.enum [ "gtk" "gtk3" "gtk-systray" "gtk3-systray" "qt4" ]; + default = "gtk"; + example = "gtk-systray"; + description = '' + selected UIM toolbar. + ''; + }; + }; + + }; + + config = mkIf cfg.enable { + environment.systemPackages = [ pkgs.uim ]; + gtkPlugins = [ pkgs.uim ]; + qtPlugins = [ pkgs.uim ]; + + environment.variables = { + GTK_IM_MODULE = "uim"; + QT_IM_MODULE = "uim"; + XMODIFIERS = "@im=uim"; + }; + services.xserver.displayManager.sessionCommands = '' + ${pkgs.uim}/bin/uim-xim & + ${pkgs.uim}/bin/uim-toolbar-${cfg.toolbar} & + ''; + }; +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 3df4e08e24b..9a7083c3ce8 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -45,6 +45,7 @@ ./hardware/video/webcam/facetimehd.nix ./i18n/inputMethod/fcitx.nix ./i18n/inputMethod/ibus.nix + ./i18n/inputMethod/uim.nix ./installer/tools/auto-upgrade.nix ./installer/tools/nixos-checkout.nix ./installer/tools/tools.nix From 3ed3f061dad30f9ae8b7712b0b46140b415d4ab3 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 16 Feb 2016 23:01:03 +0900 Subject: [PATCH 052/291] nabi service: init --- nixos/modules/i18n/inputMethod/nabi.nix | 37 +++++++++++++++++++++++++ nixos/modules/module-list.nix | 1 + 2 files changed, 38 insertions(+) create mode 100644 nixos/modules/i18n/inputMethod/nabi.nix diff --git a/nixos/modules/i18n/inputMethod/nabi.nix b/nixos/modules/i18n/inputMethod/nabi.nix new file mode 100644 index 00000000000..7f97135fee1 --- /dev/null +++ b/nixos/modules/i18n/inputMethod/nabi.nix @@ -0,0 +1,37 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + cfg = config.i18n.inputMethod.nabi; +in +{ + options = { + + i18n.inputMethod.nabi = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = '' + Enable nabi input method. + Nabi can be used to input Korean. + ''; + }; + }; + + }; +{ + config = mkIf cfg.enable { + environment.systemPackages = [ pkgs.nabi ]; + qtPlugins = [ pkgs.nabi ]; + + environment.variables = { + GTK_IM_MODULE = "nabi"; + QT_IM_MODULE = "nabi"; + XMODIFIERS = "@im=nabi"; + }; + + services.xserver.displayManager.sessionCommands = "${pkgs.nabi}/bin/nabi &"; + }; +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 9a7083c3ce8..7fe4a90a135 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -45,6 +45,7 @@ ./hardware/video/webcam/facetimehd.nix ./i18n/inputMethod/fcitx.nix ./i18n/inputMethod/ibus.nix + ./i18n/inputMethod/nabi.nix ./i18n/inputMethod/uim.nix ./installer/tools/auto-upgrade.nix ./installer/tools/nixos-checkout.nix From d03c73a2283dfba46beb3daed8a85f950574c36b Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Wed, 17 Feb 2016 15:43:53 +0100 Subject: [PATCH 053/291] utox: 7e290747 -> 0.5.0 --- .../instant-messengers/utox/default.nix | 32 ++++--------------- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix index 61b7e8ec510..55ec1560c5e 100644 --- a/pkgs/applications/networking/instant-messengers/utox/default.nix +++ b/pkgs/applications/networking/instant-messengers/utox/default.nix @@ -1,41 +1,23 @@ -{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore-dev, dbus, libvpx, libX11, openal, freetype, libv4l +{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore-dev, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l , libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }: -let - - filteraudio = stdenv.mkDerivation rec { - name = "filter_audio-20150516"; - - src = fetchFromGitHub { - owner = "irungentoo"; - repo = "filter_audio"; - rev = "612c5a102550c614e4c8f859e753ea64c0b7250c"; - sha256 = "0bmf8dxnr4vb6y36lvlwqd5x68r4cbsd625kbw3pypm5yqp0n5na"; - }; - - buildInputs = [ utillinux ]; - - doCheck = false; - - makeFlags = "PREFIX=$(out)"; - }; - -in stdenv.mkDerivation rec { - name = "utox-dev-20151220"; +stdenv.mkDerivation rec { + name = "utox-${version}"; + version = "0.5.0"; src = fetchFromGitHub { owner = "GrayHatter"; repo = "uTox"; - rev = "7e2907470835746b6819d631b48dd54bc9c4de66"; + rev = "v${version}"; sha256 = "074wa0np8hyqwy9xqgyyds94pdfv2i1jh019m98d8apxc5vn36wk"; }; buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype - libv4l libXrender fontconfig libXext libXft filteraudio + libv4l libXrender fontconfig libXext libXft filter-audio git libsodium ]; doCheck = false; - + makeFlags = "PREFIX=$(out)"; meta = with stdenv.lib; { From db03fdea957f0f6b18c7284864a0c41aa6a426b1 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Wed, 17 Feb 2016 15:49:37 +0100 Subject: [PATCH 054/291] filter_audio: remove duplicate package, filter-audio already exists and in use --- .../libraries/filter_audio/default.nix | 24 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 26 deletions(-) delete mode 100644 pkgs/development/libraries/filter_audio/default.nix diff --git a/pkgs/development/libraries/filter_audio/default.nix b/pkgs/development/libraries/filter_audio/default.nix deleted file mode 100644 index 3082e11efbf..00000000000 --- a/pkgs/development/libraries/filter_audio/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ stdenv, fetchFromGitHub, utillinux }: - -stdenv.mkDerivation rec { - name = "filter_audio-${version}"; - version = "76428a6cda43ae77f3936f4527c5f86eb3a5e211"; - - src = fetchFromGitHub { - owner = "irungentoo"; - repo = "filter_audio"; - rev = "${version}"; - sha256 = "0c4wp9a7dzbj9ykfkbsxrkkyy0nz7vyr5map3z7q8bmv9pjylbk9"; - }; - - buildInputs = [ utillinux ]; - makeFlags = "PREFIX=$(out)"; - - meta = with stdenv.lib; { - description = "An easy to use audio filtering library made from webrtc code"; - homepage = https://github.com/irungentoo/filter_audio; - license = licenses.bsd3; - maintainers = with maintainers; [ np ]; - platforms = platforms.unix; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 40e92629064..1f8cebc083f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -877,8 +877,6 @@ let fop = callPackage ../tools/typesetting/fop { }; - filter_audio = callPackage ../development/libraries/filter_audio { }; - fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; }; gencfsm = callPackage ../tools/security/gencfsm { }; From f98a5946b7607ac7541b0122e73c9b9fec69a981 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 18 Feb 2016 20:54:52 +0100 Subject: [PATCH 055/291] glibc: 2.21 -> 2.22 --- pkgs/development/libraries/glibc/common.nix | 8 +- .../libraries/glibc/cve-2014-8121.patch | 230 ------------------ .../libraries/glibc/cve-2015-1781.patch | 27 -- .../libraries/glibc/cve-2015-7547.patch | 91 +++---- .../libraries/glibc/security-4a28f4d5.patch | 53 ---- .../libraries/glibc/security-bdf1ff05.patch | 39 --- 6 files changed, 51 insertions(+), 397 deletions(-) delete mode 100644 pkgs/development/libraries/glibc/cve-2014-8121.patch delete mode 100644 pkgs/development/libraries/glibc/cve-2015-1781.patch delete mode 100644 pkgs/development/libraries/glibc/security-4a28f4d5.patch delete mode 100644 pkgs/development/libraries/glibc/security-bdf1ff05.patch diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 45f5c24e959..496440b1039 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -13,7 +13,7 @@ cross: let - version = "2.21"; + version = "2.22"; in @@ -57,10 +57,6 @@ stdenv.mkDerivation ({ patch extends the search path by "/run/current-system/sw/bin". */ ./fix_path_attribute_in_getconf.patch - ./security-4a28f4d5.patch - ./security-bdf1ff05.patch - ./cve-2014-8121.patch - ./cve-2015-1781.patch ./cve-2015-7547.patch ./glibc-locale-incompatibility.patch @@ -165,7 +161,7 @@ stdenv.mkDerivation ({ } else fetchurl { url = "mirror://gnu/glibc/glibc-${version}.tar.gz"; - sha256 = "0f4prv4c0fcpi85wv4028wqxn075197gwxhgf0vp571fiw2pi3wd"; + sha256 = "1rcby0cqgswgqaxyqz0yqc4zizb1kvpi5vlfqp7dh3sa132109m6"; }; # Remove absolute paths from `configure' & co.; build out-of-tree. diff --git a/pkgs/development/libraries/glibc/cve-2014-8121.patch b/pkgs/development/libraries/glibc/cve-2014-8121.patch deleted file mode 100644 index 95a86259dba..00000000000 --- a/pkgs/development/libraries/glibc/cve-2014-8121.patch +++ /dev/null @@ -1,230 +0,0 @@ -From 03d2730b44cc2236318fd978afa2651753666c55 Mon Sep 17 00:00:00 2001 -From: Florian Weimer -Date: Wed, 29 Apr 2015 14:41:25 +0200 -Subject: [PATCH] CVE-2014-8121: Do not close NSS files database during - iteration [BZ #18007] -MIME-Version: 1.0 -Content-Type: text/plain; charset=utf8 -Content-Transfer-Encoding: 8bit - -Robin Hack discovered Samba would enter an infinite loop processing -certain quota-related requests. We eventually tracked this down to a -glibc issue. - -Running a (simplified) test case under strace shows that /etc/passwd -is continuously opened and closed: - -… -open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 -lseek(3, 0, SEEK_CUR) = 0 -read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 2717 -lseek(3, 2717, SEEK_SET) = 2717 -close(3) = 0 -open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 -lseek(3, 0, SEEK_CUR) = 0 -lseek(3, 0, SEEK_SET) = 0 -read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 2717 -lseek(3, 2717, SEEK_SET) = 2717 -close(3) = 0 -open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 -lseek(3, 0, SEEK_CUR) = 0 -… - -The lookup function implementation in -nss/nss_files/files-XXX.c:DB_LOOKUP has code to prevent that. It is -supposed skip closing the input file if it was already open. - - /* Reset file pointer to beginning or open file. */ \ - status = internal_setent (keep_stream); \ - \ - if (status == NSS_STATUS_SUCCESS) \ - { \ - /* Tell getent function that we have repositioned the file pointer. */ \ - last_use = getby; \ - \ - while ((status = internal_getent (result, buffer, buflen, errnop \ - H_ERRNO_ARG EXTRA_ARGS_VALUE)) \ - == NSS_STATUS_SUCCESS) \ - { break_if_match } \ - \ - if (! keep_stream) \ - internal_endent (); \ - } \ - -keep_stream is initialized from the stayopen flag in internal_setent. -internal_setent is called from the set*ent implementation as: - - status = internal_setent (stayopen); - -However, for non-host database, this flag is always 0, per the -STAYOPEN magic in nss/getXXent_r.c. - -Thus, the fix is this: - -- status = internal_setent (stayopen); -+ status = internal_setent (1); - -This is not a behavioral change even for the hosts database (where the -application can specify the stayopen flag) because with a call to -sethostent(0), the file handle is still not closed in the -implementation of gethostent. ---- - ChangeLog | 8 ++++ - NEWS | 12 +++-- - nss/Makefile | 2 +- - nss/nss_files/files-XXX.c | 2 +- - nss/tst-nss-getpwent.c | 118 ++++++++++++++++++++++++++++++++++++++++++++++ - 5 files changed, 136 insertions(+), 6 deletions(-) - create mode 100644 nss/tst-nss-getpwent.c - -diff --git a/nss/Makefile b/nss/Makefile -index d75dad2..65ab7b5 100644 ---- a/nss/Makefile -+++ b/nss/Makefile -@@ -47,7 +47,7 @@ install-bin := getent makedb - makedb-modules = xmalloc hash-string - extra-objs += $(makedb-modules:=.o) - --tests = test-netdb tst-nss-test1 test-digits-dots -+tests = test-netdb tst-nss-test1 test-digits-dots tst-nss-getpwent - xtests = bug-erange - - # Specify rules for the nss_* modules. We have some services. -diff --git a/nss/nss_files/files-XXX.c b/nss/nss_files/files-XXX.c -index a7a45e5..a7ce5ea 100644 ---- a/nss/nss_files/files-XXX.c -+++ b/nss/nss_files/files-XXX.c -@@ -134,7 +134,7 @@ CONCAT(_nss_files_set,ENTNAME) (int stayopen) - - __libc_lock_lock (lock); - -- status = internal_setent (stayopen); -+ status = internal_setent (1); - - if (status == NSS_STATUS_SUCCESS && fgetpos (stream, &position) < 0) - { -diff --git a/nss/tst-nss-getpwent.c b/nss/tst-nss-getpwent.c -new file mode 100644 -index 0000000..f2e8abc ---- /dev/null -+++ b/nss/tst-nss-getpwent.c -@@ -0,0 +1,118 @@ -+/* Copyright (C) 2015 Free Software Foundation, Inc. -+ This file is part of the GNU C Library. -+ -+ The GNU C Library is free software; you can redistribute it and/or -+ modify it under the terms of the GNU Lesser General Public -+ License as published by the Free Software Foundation; either -+ version 2.1 of the License, or (at your option) any later version. -+ -+ The GNU C Library is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ Lesser General Public License for more details. -+ -+ You should have received a copy of the GNU Lesser General Public -+ License along with the GNU C Library; if not, see -+ . */ -+ -+#include -+#include -+#include -+#include -+#include -+ -+int -+do_test (void) -+{ -+ /* Count the number of entries in the password database, and fetch -+ data from the first and last entries. */ -+ size_t count = 0; -+ struct passwd * pw; -+ char *first_name = NULL; -+ uid_t first_uid = 0; -+ char *last_name = NULL; -+ uid_t last_uid = 0; -+ setpwent (); -+ while ((pw = getpwent ()) != NULL) -+ { -+ if (first_name == NULL) -+ { -+ first_name = strdup (pw->pw_name); -+ if (first_name == NULL) -+ { -+ printf ("strdup: %m\n"); -+ return 1; -+ } -+ first_uid = pw->pw_uid; -+ } -+ -+ free (last_name); -+ last_name = strdup (pw->pw_name); -+ if (last_name == NULL) -+ { -+ printf ("strdup: %m\n"); -+ return 1; -+ } -+ last_uid = pw->pw_uid; -+ ++count; -+ } -+ endpwent (); -+ -+ if (count == 0) -+ { -+ printf ("No entries in the password database.\n"); -+ return 0; -+ } -+ -+ /* Try again, this time interleaving with name-based and UID-based -+ lookup operations. The counts do not match if the interleaved -+ lookups affected the enumeration. */ -+ size_t new_count = 0; -+ setpwent (); -+ while ((pw = getpwent ()) != NULL) -+ { -+ if (new_count == count) -+ { -+ printf ("Additional entry in the password database.\n"); -+ return 1; -+ } -+ ++new_count; -+ struct passwd *pw2 = getpwnam (first_name); -+ if (pw2 == NULL) -+ { -+ printf ("getpwnam (%s) failed: %m\n", first_name); -+ return 1; -+ } -+ pw2 = getpwnam (last_name); -+ if (pw2 == NULL) -+ { -+ printf ("getpwnam (%s) failed: %m\n", last_name); -+ return 1; -+ } -+ pw2 = getpwuid (first_uid); -+ if (pw2 == NULL) -+ { -+ printf ("getpwuid (%llu) failed: %m\n", -+ (unsigned long long) first_uid); -+ return 1; -+ } -+ pw2 = getpwuid (last_uid); -+ if (pw2 == NULL) -+ { -+ printf ("getpwuid (%llu) failed: %m\n", -+ (unsigned long long) last_uid); -+ return 1; -+ } -+ } -+ endpwent (); -+ if (new_count < count) -+ { -+ printf ("Missing entry in the password database.\n"); -+ return 1; -+ } -+ -+ return 0; -+} -+ -+#define TEST_FUNCTION do_test () -+#include "../test-skeleton.c" - diff --git a/pkgs/development/libraries/glibc/cve-2015-1781.patch b/pkgs/development/libraries/glibc/cve-2015-1781.patch deleted file mode 100644 index 6831d5ac742..00000000000 --- a/pkgs/development/libraries/glibc/cve-2015-1781.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 2959eda9272a033863c271aff62095abd01bd4e3 Mon Sep 17 00:00:00 2001 -From: Arjun Shankar -Date: Tue, 21 Apr 2015 14:06:31 +0200 -Subject: [PATCH] CVE-2015-1781: resolv/nss_dns/dns-host.c buffer overflow - [BZ#18287] - ---- - ChangeLog | 6 ++++++ - NEWS | 9 ++++++++- - resolv/nss_dns/dns-host.c | 3 ++- - 3 files changed, 16 insertions(+), 2 deletions(-) - -diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c -index b16b0dd..d8c5579 100644 ---- a/resolv/nss_dns/dns-host.c -+++ b/resolv/nss_dns/dns-host.c -@@ -615,7 +615,8 @@ getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype, - int have_to_map = 0; - uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct host_data); - buffer += pad; -- if (__glibc_unlikely (buflen < sizeof (struct host_data) + pad)) -+ buflen = buflen > pad ? buflen - pad : 0; -+ if (__glibc_unlikely (buflen < sizeof (struct host_data))) - { - /* The buffer is too small. */ - too_small: - diff --git a/pkgs/development/libraries/glibc/cve-2015-7547.patch b/pkgs/development/libraries/glibc/cve-2015-7547.patch index 9bf0bcc388c..55d58c16698 100644 --- a/pkgs/development/libraries/glibc/cve-2015-7547.patch +++ b/pkgs/development/libraries/glibc/cve-2015-7547.patch @@ -1,23 +1,31 @@ +commit b995d95a5943785be3ab862b2d3276f3b4a22481 +Author: Carlos O'Donell +Date: Tue Feb 16 21:26:37 2016 -0500 -CVE-2015-7547 - -2016-02-15 Carlos O'Donell - - [BZ #18665] - * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Always set - *herrno_p. - (gaih_getanswer): Document functional behviour. Return tryagain - if any result is tryagain. - * resolv/res_query.c (__libc_res_nsearch): Set buffer size to zero - when freed. - * resolv/res_send.c: Add copyright text. - (__libc_res_nsend): Document that MAXPACKET is expected. - (send_vc): Document. Remove buffer reuse. - (send_dg): Document. Remove buffer reuse. Set *thisanssizp to set the - size of the buffer. Add Dprint for truncated UDP buffer. + CVE-2015-7547: getaddrinfo() stack-based buffer overflow (Bug 18665). + + * A stack-based buffer overflow was found in libresolv when invoked from + libnss_dns, allowing specially crafted DNS responses to seize control + of execution flow in the DNS client. The buffer overflow occurs in + the functions send_dg (send datagram) and send_vc (send TCP) for the + NSS module libnss_dns.so.2 when calling getaddrinfo with AF_UNSPEC + family. The use of AF_UNSPEC triggers the low-level resolver code to + send out two parallel queries for A and AAAA. A mismanagement of the + buffers used for those queries could result in the response of a query + writing beyond the alloca allocated buffer created by + _nss_dns_gethostbyname4_r. Buffer management is simplified to remove + the overflow. Thanks to the Google Security Team and Red Hat for + reporting the security impact of this issue, and Robert Holiday of + Ciena for reporting the related bug 18665. (CVE-2015-7547) + + See also: + https://sourceware.org/ml/libc-alpha/2016-02/msg00416.html + https://sourceware.org/ml/libc-alpha/2016-02/msg00418.html + + (cherry picked from commit e9db92d3acfe1822d56d11abcea5bfc4c41cf6ca) diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c -index a255d5e..47cfe27 100644 +index 357ac04..a0fe9a8 100644 --- a/resolv/nss_dns/dns-host.c +++ b/resolv/nss_dns/dns-host.c @@ -1031,7 +1031,10 @@ gaih_getanswer_slice (const querybuf *answer, int anslen, const char *qname, @@ -69,8 +77,8 @@ index a255d5e..47cfe27 100644 + expected application behaviour. Some of the synthesized responses + aren't very well thought out and sometimes appear to imply that + IPv4 responses are always answer 1, and IPv6 responses are always -+ answer 2, but that's not true (see the implemetnation of send_dg -+ and send_vc to see response can arrive in any order, particlarly ++ answer 2, but that's not true (see the implementation of send_dg ++ and send_vc to see response can arrive in any order, particularly + for UDP). However, we expect it holds roughly enough of the time + that this code works, but certainly needs to be fixed to make this + a more robust implementation. @@ -107,12 +115,12 @@ index a255d5e..47cfe27 100644 + ---------------------------------------------- + + [1] If the first response is a success we return success. -+ This ignores the state of the second answer and in fact -+ incorrectly sets errno and h_errno to that of the second ++ This ignores the state of the second answer and in fact ++ incorrectly sets errno and h_errno to that of the second + answer. However because the response is a success we ignore + *errnop and *h_errnop (though that means you touched errno on -+ success). We are being conservative here and returning the -+ likely IPv4 response in the first answer as a success. ++ success). We are being conservative here and returning the ++ likely IPv4 response in the first answer as a success. + + [2] If the first response is a recoverable TRYAGAIN we return + that instead of looking at the second response. The @@ -158,7 +166,7 @@ index a255d5e..47cfe27 100644 if (status != NSS_STATUS_SUCCESS && status2 != NSS_STATUS_NOTFOUND) status = status2; + /* Do not return a truncated second response (unless it was -+ unavoidable e.g. unrecoverable TRYAGAIN). */ ++ unavoidable e.g. unrecoverable TRYAGAIN). */ + if (status == NSS_STATUS_SUCCESS + && (status2 == NSS_STATUS_TRYAGAIN + && *errnop == ERANGE && *h_errnop != NO_RECOVERY)) @@ -195,7 +203,7 @@ index 4a9b3b3..95470a9 100644 } if (saved_herrno != -1) diff --git a/resolv/res_send.c b/resolv/res_send.c -index a968b95..21843f1 100644 +index 5e53cc2..6511bb1 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -1,3 +1,20 @@ @@ -219,7 +227,7 @@ index a968b95..21843f1 100644 /* * Copyright (c) 1985, 1989, 1993 * The Regents of the University of California. All rights reserved. -@@ -355,6 +372,8 @@ __libc_res_nsend(res_state statp, const u_char *buf, int buflen, +@@ -363,6 +380,8 @@ __libc_res_nsend(res_state statp, const u_char *buf, int buflen, #ifdef USE_HOOKS if (__glibc_unlikely (statp->qhook || statp->rhook)) { if (anssiz < MAXPACKET && ansp) { @@ -228,7 +236,7 @@ index a968b95..21843f1 100644 u_char *buf = malloc (MAXPACKET); if (buf == NULL) return (-1); -@@ -630,6 +649,77 @@ get_nsaddr (res_state statp, int n) +@@ -638,6 +657,77 @@ get_nsaddr (res_state statp, int n) return (struct sockaddr *) (void *) &statp->nsaddr_list[n]; } @@ -270,7 +278,7 @@ index a968b95..21843f1 100644 + are needed but ANSCP is NULL, then as much of the response as + possible is read into the buffer, but the results will be truncated. + When truncation happens because of a small answer buffer the DNS -+ packets header feild TC will bet set to 1, indicating a truncated ++ packets header field TC will bet set to 1, indicating a truncated + message and the rest of the socket data will be read and discarded. + + Answers to the query are stored secondly in *ANSP2 up to a max of @@ -306,7 +314,7 @@ index a968b95..21843f1 100644 static int send_vc(res_state statp, const u_char *buf, int buflen, const u_char *buf2, int buflen2, -@@ -639,11 +729,7 @@ send_vc(res_state statp, +@@ -647,11 +737,7 @@ send_vc(res_state statp, { const HEADER *hp = (HEADER *) buf; const HEADER *hp2 = (HEADER *) buf2; @@ -316,19 +324,19 @@ index a968b95..21843f1 100644 - // int anssiz = *anssizp; - HEADER *anhp = (HEADER *) ans; + HEADER *anhp = (HEADER *) *ansp; - struct sockaddr_in6 *nsap = EXT(statp).nsaddrs[ns]; + struct sockaddr *nsap = get_nsaddr (statp, ns); int truncating, connreset, n; /* On some architectures compiler might emit a warning indicating -@@ -731,6 +817,8 @@ send_vc(res_state statp, +@@ -743,6 +829,8 @@ send_vc(res_state statp, * Receive length & response */ int recvresp1 = 0; + /* Skip the second response if there is no second query. -+ To do that we mark the second response as received. */ ++ To do that we mark the second response as received. */ int recvresp2 = buf2 == NULL; uint16_t rlen16; read_len: -@@ -767,40 +855,14 @@ send_vc(res_state statp, +@@ -779,40 +867,14 @@ send_vc(res_state statp, u_char **thisansp; int *thisresplenp; if ((recvresp1 | recvresp2) == 0 || buf2 == NULL) { @@ -372,7 +380,7 @@ index a968b95..21843f1 100644 thisanssizp = anssizp2; thisansp = ansp2; thisresplenp = resplen2; -@@ -804,10 +870,14 @@ send_vc(res_state statp, +@@ -820,10 +882,14 @@ send_vc(res_state statp, anhp = (HEADER *) *thisansp; *thisresplenp = rlen; @@ -391,7 +399,7 @@ index a968b95..21843f1 100644 u_char *newp = malloc (MAXPACKET); if (newp == NULL) { *terrno = ENOMEM; -@@ -819,6 +889,9 @@ send_vc(res_state statp, +@@ -835,6 +901,9 @@ send_vc(res_state statp, if (thisansp == ansp2) *ansp2_malloced = 1; anhp = (HEADER *) newp; @@ -401,7 +409,7 @@ index a968b95..21843f1 100644 len = rlen; } else { Dprint(statp->options & RES_DEBUG, -@@ -948,6 +1021,66 @@ reopen (res_state statp, int *terrno, int ns) +@@ -997,6 +1066,66 @@ reopen (res_state statp, int *terrno, int ns) return 1; } @@ -425,7 +433,7 @@ index a968b95..21843f1 100644 + are needed but ANSCP is NULL, then as much of the response as + possible is read into the buffer, but the results will be truncated. + When truncation happens because of a small answer buffer the DNS -+ packets header feild TC will bet set to 1, indicating a truncated ++ packets header field TC will bet set to 1, indicating a truncated + message, while the rest of the UDP packet is discarded. + + Answers to the query are stored secondly in *ANSP2 up to a max of @@ -468,7 +476,7 @@ index a968b95..21843f1 100644 static int send_dg(res_state statp, const u_char *buf, int buflen, const u_char *buf2, int buflen2, -@@ -957,8 +1090,6 @@ send_dg(res_state statp, +@@ -1006,8 +1135,6 @@ send_dg(res_state statp, { const HEADER *hp = (HEADER *) buf; const HEADER *hp2 = (HEADER *) buf2; @@ -477,16 +485,16 @@ index a968b95..21843f1 100644 struct timespec now, timeout, finish; struct pollfd pfd[1]; int ptimeout; -@@ -991,6 +1122,8 @@ send_dg(res_state statp, +@@ -1040,6 +1167,8 @@ send_dg(res_state statp, int need_recompute = 0; int nwritten = 0; int recvresp1 = 0; + /* Skip the second response if there is no second query. -+ To do that we mark the second response as received. */ ++ To do that we mark the second response as received. */ int recvresp2 = buf2 == NULL; pfd[0].fd = EXT(statp).nssocks[ns]; pfd[0].events = POLLOUT; -@@ -1154,55 +1287,56 @@ send_dg(res_state statp, +@@ -1203,55 +1332,56 @@ send_dg(res_state statp, int *thisresplenp; if ((recvresp1 | recvresp2) == 0 || buf2 == NULL) { @@ -570,4 +578,3 @@ index a968b95..21843f1 100644 HEADER *anhp = (HEADER *) *thisansp; socklen_t fromlen = sizeof(struct sockaddr_in6); assert (sizeof(from) <= fromlen); - diff --git a/pkgs/development/libraries/glibc/security-4a28f4d5.patch b/pkgs/development/libraries/glibc/security-4a28f4d5.patch deleted file mode 100644 index 25f994d859c..00000000000 --- a/pkgs/development/libraries/glibc/security-4a28f4d5.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 4a28f4d55a6cc33474c0792fe93b5942d81bf185 Mon Sep 17 00:00:00 2001 -From: Andreas Schwab -Date: Thu, 26 Feb 2015 14:55:24 +0100 -Subject: [PATCH] Fix read past end of pattern in fnmatch (bug 18032) - ---- - ChangeLog | 7 +++++++ - NEWS | 2 +- - posix/fnmatch_loop.c | 5 ++--- - posix/tst-fnmatch3.c | 8 +++++--- - 4 files changed, 15 insertions(+), 7 deletions(-) - -diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c -index c0cb2fc..72c5d8f 100644 ---- a/posix/fnmatch_loop.c -+++ b/posix/fnmatch_loop.c -@@ -945,14 +945,13 @@ FCT (pattern, string, string_end, no_leading_period, flags, ends, alloca_used) - } - else if (c == L('[') && *p == L('.')) - { -- ++p; - while (1) - { - c = *++p; -- if (c == '\0') -+ if (c == L('\0')) - return FNM_NOMATCH; - -- if (*p == L('.') && p[1] == L(']')) -+ if (c == L('.') && p[1] == L(']')) - break; - } - p += 2; -diff --git a/posix/tst-fnmatch3.c b/posix/tst-fnmatch3.c -index d27a557..75bc00a 100644 ---- a/posix/tst-fnmatch3.c -+++ b/posix/tst-fnmatch3.c -@@ -21,9 +21,11 @@ - int - do_test (void) - { -- const char *pattern = "[[:alpha:]'[:alpha:]\0]"; -- -- return fnmatch (pattern, "a", 0) != FNM_NOMATCH; -+ if (fnmatch ("[[:alpha:]'[:alpha:]\0]", "a", 0) != FNM_NOMATCH) -+ return 1; -+ if (fnmatch ("[a[.\0.]]", "a", 0) != FNM_NOMATCH) -+ return 1; -+ return 0; - } - - #define TEST_FUNCTION do_test () - diff --git a/pkgs/development/libraries/glibc/security-bdf1ff05.patch b/pkgs/development/libraries/glibc/security-bdf1ff05.patch deleted file mode 100644 index b4175694f91..00000000000 --- a/pkgs/development/libraries/glibc/security-bdf1ff05.patch +++ /dev/null @@ -1,39 +0,0 @@ -From bdf1ff052a8e23d637f2c838fa5642d78fcedc33 Mon Sep 17 00:00:00 2001 -From: Paul Pluzhnikov -Date: Sun, 22 Feb 2015 12:01:47 -0800 -Subject: [PATCH] Fix BZ #17269 -- _IO_wstr_overflow integer overflow - ---- - ChangeLog | 6 ++++++ - NEWS | 6 +++--- - libio/wstrops.c | 8 +++++++- - 3 files changed, 16 insertions(+), 4 deletions(-) - -diff --git a/libio/wstrops.c b/libio/wstrops.c -index 43d847d..3993579 100644 ---- a/libio/wstrops.c -+++ b/libio/wstrops.c -@@ -95,8 +95,11 @@ _IO_wstr_overflow (fp, c) - wchar_t *old_buf = fp->_wide_data->_IO_buf_base; - size_t old_wblen = _IO_wblen (fp); - _IO_size_t new_size = 2 * old_wblen + 100; -- if (new_size < old_wblen) -+ -+ if (__glibc_unlikely (new_size < old_wblen) -+ || __glibc_unlikely (new_size > SIZE_MAX / sizeof (wchar_t))) - return EOF; -+ - new_buf - = (wchar_t *) (*((_IO_strfile *) fp)->_s._allocate_buffer) (new_size - * sizeof (wchar_t)); -@@ -186,6 +189,9 @@ enlarge_userbuf (_IO_FILE *fp, _IO_off64_t offset, int reading) - return 1; - - _IO_size_t newsize = offset + 100; -+ if (__glibc_unlikely (newsize > SIZE_MAX / sizeof (wchar_t))) -+ return 1; -+ - wchar_t *oldbuf = wd->_IO_buf_base; - wchar_t *newbuf - = (wchar_t *) (*((_IO_strfile *) fp)->_s._allocate_buffer) (newsize - From 1ab14aad7ad61fead6bc93145d1169eca91d7b91 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 18 Feb 2016 21:11:15 +0100 Subject: [PATCH 056/291] glibc: Drop hurd support This hasn't been maintained since 2012. Also, renamed glibc's kernelHeaders argument to linuxHeaders. --- pkgs/development/libraries/glibc/builder.sh | 15 +--- pkgs/development/libraries/glibc/common.nix | 86 ++++++------------- pkgs/development/libraries/glibc/default.nix | 28 +----- pkgs/development/libraries/glibc/info.nix | 4 +- pkgs/development/libraries/glibc/locales.nix | 4 +- .../linux/cpufrequtils/default.nix | 2 +- pkgs/os-specific/linux/dietlibc/default.nix | 2 +- pkgs/tools/networking/nbd/default.nix | 4 +- pkgs/top-level/all-packages.nix | 6 +- 9 files changed, 43 insertions(+), 108 deletions(-) diff --git a/pkgs/development/libraries/glibc/builder.sh b/pkgs/development/libraries/glibc/builder.sh index 2836063e3bf..d0684d6194d 100644 --- a/pkgs/development/libraries/glibc/builder.sh +++ b/pkgs/development/libraries/glibc/builder.sh @@ -22,22 +22,11 @@ postInstall() { test -f $out/etc/ld.so.cache && rm $out/etc/ld.so.cache - # FIXME: Use `test -n $linuxHeaders' when `kernelHeaders' has been - # renamed. - if test -z "$hurdHeaders"; then + if test -n "$linuxHeaders"; then # Include the Linux kernel headers in Glibc, except the `scsi' # subdirectory, which Glibc provides itself. (cd $out/include && \ - ln -sv $(ls -d $kernelHeaders/include/* | grep -v 'scsi$') .) - fi - - if test -f "$out/lib/libhurduser.so"; then - # libc.so, libhurduser.so, and libmachuser.so depend on each - # other, so add them to libc.so (a RUNPATH on libc.so.0.3 - # would be ignored by the cross-linker.) - echo "adding \`libhurduser.so' and \`libmachuser.so' to the \`libc.so' linker script..." - sed -i "$out/lib/libc.so" \ - -e"s|\(libc\.so\.[^ ]\+\>\)|\1 $out/lib/libhurduser.so $out/lib/libmachuser.so|g" + ln -sv $(ls -d $linuxHeaders/include/* | grep -v 'scsi$') .) fi # Fix for NIXOS-54 (ldd not working on x86_64). Make a symlink diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 496440b1039..6a468657716 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -3,10 +3,8 @@ cross: -{ name, fetchurl, fetchgit ? null, stdenv, installLocales ? false -, gccCross ? null, kernelHeaders ? null -, machHeaders ? null, hurdHeaders ? null, libpthreadHeaders ? null -, mig ? null +{ name, fetchurl, lib, stdenv, installLocales ? false +, gccCross ? null, linuxHeaders ? null , profilingLibraries ? false, meta , withGd ? false, gd ? null, libpng ? null , preConfigure ? "", ... }@args: @@ -18,12 +16,9 @@ let in assert cross != null -> gccCross != null; -assert mig != null -> machHeaders != null; -assert machHeaders != null -> hurdHeaders != null; -assert hurdHeaders != null -> libpthreadHeaders != null; stdenv.mkDerivation ({ - inherit kernelHeaders installLocales; + inherit linuxHeaders installLocales; # The host/target system. crossConfig = if cross != null then cross.config else null; @@ -32,9 +27,7 @@ stdenv.mkDerivation ({ enableParallelBuilding = true; - /* Don't try to apply these patches to the Hurd's snapshot, which is - older. */ - patches = stdenv.lib.optionals (hurdHeaders == null) + patches = [ /* Have rpcgen(1) look for cpp(1) in $PATH. */ ./rpcgen-path.patch @@ -96,36 +89,35 @@ stdenv.mkDerivation ({ "--sysconfdir=/etc" "--localedir=/var/run/current-system/sw/lib/locale" "libc_cv_ssp=no" - (if kernelHeaders != null - then "--with-headers=${kernelHeaders}/include" + (if linuxHeaders != null + then "--with-headers=${linuxHeaders}/include" else "--without-headers") (if profilingLibraries then "--enable-profile" else "--disable-profile") - ] ++ stdenv.lib.optionals (cross == null && kernelHeaders != null) [ + ] ++ lib.optionals (cross == null && linuxHeaders != null) [ "--enable-kernel=2.6.32" - ] ++ stdenv.lib.optionals (cross != null) [ + ] ++ lib.optionals (cross != null) [ (if cross.withTLS then "--with-tls" else "--without-tls") (if cross.float == "soft" then "--without-fp" else "--with-fp") - ] ++ stdenv.lib.optionals (cross != null + ] ++ lib.optionals (cross != null && cross.platform ? kernelMajor && cross.platform.kernelMajor == "2.6") [ "--enable-kernel=2.6.0" "--with-__thread" - ] ++ stdenv.lib.optionals (cross == null && stdenv.isArm) [ + ] ++ lib.optionals (cross == null && stdenv.isArm) [ "--host=arm-linux-gnueabi" "--build=arm-linux-gnueabi" # To avoid linking with -lgcc_s (dynamic link) # so the glibc does not depend on its compiler store path "libc_cv_as_needed=no" - ] ++ stdenv.lib.optional withGd "--with-gd"; + ] ++ lib.optional withGd "--with-gd"; installFlags = [ "sysconfdir=$(out)/etc" ]; - buildInputs = stdenv.lib.optionals (cross != null) [ gccCross ] - ++ stdenv.lib.optional (mig != null) mig - ++ stdenv.lib.optionals withGd [ gd libpng ]; + buildInputs = lib.optionals (cross != null) [ gccCross ] + ++ lib.optionals withGd [ gd libpng ]; # Needed to install share/zoneinfo/zone.tab. Set to impure /bin/sh to # prevent a retained dependency on the bootstrap tools in the stdenv-linux @@ -137,32 +129,22 @@ stdenv.mkDerivation ({ # I.e. when gcc is compiled with --with-arch=i686, then the # preprocessor symbol `__i686' will be defined to `1'. This causes # the symbol __i686.get_pc_thunk.dx to be mangled. - NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.system == "i686-linux") "-U__i686" + NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.system == "i686-linux") "-U__i686" + " -Wno-error=strict-prototypes"; } # Remove the `gccCross' attribute so that the *native* glibc store path # doesn't depend on whether `gccCross' is null or not. -// (removeAttrs args [ "gccCross" "fetchurl" "fetchgit" "withGd" "gd" "libpng" ]) // +// (removeAttrs args [ "lib" "gccCross" "fetchurl" "withGd" "gd" "libpng" ]) // { name = name + "-${version}" + - stdenv.lib.optionalString (cross != null) "-${cross.config}"; + lib.optionalString (cross != null) "-${cross.config}"; - src = - if hurdHeaders != null - then fetchgit { - # Shamefully the "official" glibc won't build on GNU, so use the one - # maintained by the Hurd folks, `tschwinge/Roger_Whittaker' branch. - # See . - url = "git://git.sv.gnu.org/hurd/glibc.git"; - sha256 = "cecec9dd5a2bafc875c56b058b6d7628a22b250b53747513dec304f31ffdb82d"; - rev = "d3cdecf18e6550b0984a42b43ed48c5fb26501e1"; - } - else fetchurl { - url = "mirror://gnu/glibc/glibc-${version}.tar.gz"; - sha256 = "1rcby0cqgswgqaxyqz0yqc4zizb1kvpi5vlfqp7dh3sa132109m6"; - }; + src = fetchurl { + url = "mirror://gnu/glibc/glibc-${version}.tar.gz"; + sha256 = "1rcby0cqgswgqaxyqz0yqc4zizb1kvpi5vlfqp7dh3sa132109m6"; + }; # Remove absolute paths from `configure' & co.; build out-of-tree. preConfigure = '' @@ -178,17 +160,18 @@ stdenv.mkDerivation ({ configureScript="`pwd`/../$sourceRoot/configure" - ${stdenv.lib.optionalString (stdenv.cc.libc != null) + ${lib.optionalString (stdenv.cc.libc != null) ''makeFlags="$makeFlags BUILD_LDFLAGS=-Wl,-rpath,${stdenv.cc.libc}/lib"'' } ${preConfigure} ''; + preBuild = lib.optionalString withGd "unset NIX_DONT_SET_RPATH"; + meta = { homepage = http://www.gnu.org/software/libc/; - description = "The GNU C Library" - + stdenv.lib.optionalString (hurdHeaders != null) ", for GNU/Hurd"; + description = "The GNU C Library"; longDescription = '' Any Unix-like operating system needs a C library: the library which @@ -199,24 +182,9 @@ stdenv.mkDerivation ({ most systems with the Linux kernel. ''; - license = stdenv.lib.licenses.lgpl2Plus; + license = lib.licenses.lgpl2Plus; - maintainers = [ ]; - #platforms = stdenv.lib.platforms.linux; + maintainers = [ lib.maintainers.eelco ]; + #platforms = lib.platforms.linux; } // meta; -} - -// stdenv.lib.optionalAttrs withGd { - preBuild = "unset NIX_DONT_SET_RPATH"; -} - -// stdenv.lib.optionalAttrs (hurdHeaders != null) { - # Work around the fact that the configure snippet that looks for - # does not honor `--with-headers=$sysheaders' and that - # glibc expects Mach, Hurd, and pthread headers to be in the same place. - CPATH = "${hurdHeaders}/include:${machHeaders}/include:${libpthreadHeaders}/include"; - - # Install NSS stuff in the right place. - # XXX: This will be needed for all new glibcs and isn't Hurd-specific. - makeFlags = ''vardbdir="$out/var/db"''; }) diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix index 08eaf555e02..5e25c2dc8bc 100644 --- a/pkgs/development/libraries/glibc/default.nix +++ b/pkgs/development/libraries/glibc/default.nix @@ -1,6 +1,4 @@ -{ stdenv, fetchurl, fetchgit ? null, kernelHeaders -, machHeaders ? null, hurdHeaders ? null, libpthreadHeaders ? null -, mig ? null +{ lib, stdenv, fetchurl, linuxHeaders , installLocales ? true , profilingLibraries ? false , gccCross ? null @@ -16,11 +14,10 @@ let in build cross ({ name = "glibc" - + stdenv.lib.optionalString (hurdHeaders != null) "-hurd" - + stdenv.lib.optionalString debugSymbols "-debug" - + stdenv.lib.optionalString withGd "-gd"; + + lib.optionalString debugSymbols "-debug" + + lib.optionalString withGd "-gd"; - inherit fetchurl fetchgit stdenv kernelHeaders installLocales + inherit lib stdenv fetchurl linuxHeaders installLocales profilingLibraries gccCross withGd gd libpng; builder = ./builder.sh; @@ -58,23 +55,6 @@ in // - (if hurdHeaders != null - then rec { - inherit machHeaders hurdHeaders libpthreadHeaders mig fetchgit; - - propagatedBuildInputs = [ machHeaders hurdHeaders libpthreadHeaders ]; - - passthru = { - # When building GCC itself `propagatedBuildInputs' above is not - # honored, so we pass it here so that the GCC builder can do the right - # thing. - inherit propagatedBuildInputs; - }; - } - else { }) - - // - (if cross != null then { preConfigure = '' diff --git a/pkgs/development/libraries/glibc/info.nix b/pkgs/development/libraries/glibc/info.nix index e4cdb42dd68..1e60856430d 100644 --- a/pkgs/development/libraries/glibc/info.nix +++ b/pkgs/development/libraries/glibc/info.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, texinfo, perl }: +{ lib, stdenv, fetchurl, texinfo, perl }: let build = import ./common.nix; in @@ -6,7 +6,7 @@ let build = import ./common.nix; in build null { name = "glibc-info"; - inherit fetchurl stdenv; + inherit fetchurl stdenv lib; configureFlags = [ "--enable-add-ons" ]; diff --git a/pkgs/development/libraries/glibc/locales.nix b/pkgs/development/libraries/glibc/locales.nix index cbf7af22cac..9607d7ecb22 100644 --- a/pkgs/development/libraries/glibc/locales.nix +++ b/pkgs/development/libraries/glibc/locales.nix @@ -6,14 +6,14 @@ http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc */ -{ stdenv, fetchurl, writeText, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }: +{ lib, stdenv, fetchurl, writeText, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }: let build = import ./common.nix; in build null { name = "glibc-locales"; - inherit fetchurl stdenv; + inherit fetchurl stdenv lib; installLocales = true; builder = ./locales-builder.sh; diff --git a/pkgs/os-specific/linux/cpufrequtils/default.nix b/pkgs/os-specific/linux/cpufrequtils/default.nix index b7822035c20..65be409a75e 100644 --- a/pkgs/os-specific/linux/cpufrequtils/default.nix +++ b/pkgs/os-specific/linux/cpufrequtils/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { -i Makefile ''; - buildInputs = [ stdenv.cc.libc.kernelHeaders libtool gettext ]; + buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ]; meta = { description = "Tools to display or change the CPU governor settings"; diff --git a/pkgs/os-specific/linux/dietlibc/default.nix b/pkgs/os-specific/linux/dietlibc/default.nix index b795cb60da6..d98bfb96735 100644 --- a/pkgs/os-specific/linux/dietlibc/default.nix +++ b/pkgs/os-specific/linux/dietlibc/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation { builder = ./builder.sh; inherit glibc; - kernelHeaders = glibc.kernelHeaders; + kernelHeaders = glibc.linuxHeaders; patches = [ diff --git a/pkgs/tools/networking/nbd/default.nix b/pkgs/tools/networking/nbd/default.nix index 6cb75152af0..967b3863f20 100644 --- a/pkgs/tools/networking/nbd/default.nix +++ b/pkgs/tools/networking/nbd/default.nix @@ -8,7 +8,9 @@ stdenv.mkDerivation rec { sha256 = "1pkkid657zgjymwxv3fm32cxnq9llfz29rl15vp6mn42vnzbj1di"; }; - buildInputs = [ pkgconfig glib ] ++ stdenv.lib.optional (stdenv ? glibc) stdenv.glibc.kernelHeaders; + buildInputs = + [ pkgconfig glib ] + ++ stdenv.lib.optional (stdenv ? glibc) stdenv.glibc.linuxHeaders; postInstall = '' mkdir -p "$out/share/doc/${name}" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 38d8bf29642..4cce2e15913 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6707,22 +6707,18 @@ let glfw3 = callPackage ../development/libraries/glfw/3.x.nix { }; glibc = callPackage ../development/libraries/glibc { - kernelHeaders = linuxHeaders; installLocales = config.glibc.locales or false; - machHeaders = null; - hurdHeaders = null; gccCross = null; }; glibc_memusage = callPackage ../development/libraries/glibc { - kernelHeaders = linuxHeaders; installLocales = false; withGd = true; }; glibcCross = forceNativeDrv (glibc.override { gccCross = gccCrossStageStatic; - kernelHeaders = linuxHeadersCross; + linuxHeaders = linuxHeadersCross; }); # We can choose: From 076de98c9461eeb91b266fd44a11a6e7ac1b62ad Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 18 Feb 2016 21:37:26 +0100 Subject: [PATCH 057/291] separateDebugInfo: Restore ELF check --- pkgs/build-support/setup-hooks/separate-debug-info.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh index 55e3236847d..617bbba5845 100644 --- a/pkgs/build-support/setup-hooks/separate-debug-info.sh +++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh @@ -18,6 +18,7 @@ _separateDebugInfo() { # Skip non-ELF files. exec 10< "$i" read -n 4 -u 10 magic + if ! [[ "$magic" =~ ELF ]]; then continue; fi exec 10<&- # Extract the Build ID. FIXME: there's probably a cleaner way. From 854c27c69c2f38b2e5a7ed5099c88aa0bcc520d1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 18 Feb 2016 21:58:41 +0100 Subject: [PATCH 058/291] coreutils: 8.24 -> 8.25 --- pkgs/tools/misc/coreutils/default.nix | 41 +++++++++++++-------------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index baa3900ad97..78c27291648 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perl, gmp ? null +{ lib, stdenv, fetchurl, perl, gmp ? null , aclSupport ? false, acl ? null , selinuxSupport? false, libselinux ? null, libsepol ? null , autoconf, automake114x, texinfo @@ -8,32 +8,33 @@ assert aclSupport -> acl != null; assert selinuxSupport -> libselinux != null && libsepol != null; - -with { inherit (stdenv.lib) optional optionals optionalString optionalAttrs; }; +with lib; let self = stdenv.mkDerivation rec { - name = "coreutils-8.24"; + name = "coreutils-8.25"; src = fetchurl { url = "mirror://gnu/coreutils/${name}.tar.xz"; - sha256 = "0w11jw3fb5sslf0f72kxy7llxgk1ia3a6bcw0c9kmvxrlj355mx2"; + sha256 = "11yfrnb94xzmvi4lhclkcmkqsbhww64wf234ya1aacjvg82prrii"; }; - patches = if stdenv.isCygwin then ./coreutils-8.23-4.cygwin.patch else - (if stdenv.isArm then (fetchurl { - url = "http://git.savannah.gnu.org/cgit/coreutils.git/patch/?id=3ba68f9e64fa2eb8af22d510437a0c6441feb5e0"; - sha256 = "1dnlszhc8lihhg801i9sz896mlrgfsjfcz62636prb27k5hmixqz"; - name = "coreutils-tail-inotify-race.patch"; - }) else null); + patches = + lib.optional stdenv.isCygwin ./coreutils-8.23-4.cygwin.patch + ++ lib.optional stdenv.isArm + (fetchurl { + url = "http://git.savannah.gnu.org/cgit/coreutils.git/patch/?id=3ba68f9e64fa2eb8af22d510437a0c6441feb5e0"; + sha256 = "1dnlszhc8lihhg801i9sz896mlrgfsjfcz62636prb27k5hmixqz"; + name = "coreutils-tail-inotify-race.patch"; + }); # The test tends to fail on btrfs and maybe other unusual filesystems. - postPatch = stdenv.lib.optionalString (!stdenv.isDarwin) '' + postPatch = optionalString (!stdenv.isDarwin) '' sed '2i echo Skipping dd sparse test && exit 0' -i ./tests/dd/sparse.sh sed '2i echo Skipping cp sparse test && exit 0' -i ./tests/cp/sparse.sh '' + # This is required by coreutils-tail-inotify-race.patch to avoid more deps - stdenv.lib.optionalString stdenv.isArm '' + optionalString stdenv.isArm '' touch -r src/stat.c src/tail.c ''; @@ -83,20 +84,18 @@ let enableParallelBuilding = false; NIX_LDFLAGS = optionalString selinuxSupport "-lsepol"; - FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; + FORCE_UNSAFE_CONFIGURE = optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; makeFlags = optionalString stdenv.isDarwin "CFLAGS=-D_FORTIFY_SOURCE=0"; # e.g. ls -> gls; grep -> ggrep - postFixup = # feel free to simplify on a mass rebuild - if withPrefix then + postFixup = optionalString withPrefix '' ( cd "$out/bin" find * -type f -executable -exec mv {} g{} \; ) - '' - else null; + ''; meta = { homepage = http://www.gnu.org/software/coreutils/; @@ -109,11 +108,11 @@ let operating system. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + platforms = platforms.all; - maintainers = [ stdenv.lib.maintainers.eelco ]; + maintainers = [ maintainers.eelco ]; }; }; in From bf63de1613396a1a4d1f27fea73f125988d468a7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 18 Feb 2016 22:30:42 +0100 Subject: [PATCH 059/291] separateDebugInfo: Handle weird filenames properly --- .../build-support/setup-hooks/separate-debug-info.sh | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh index 617bbba5845..cf3d7b07a49 100644 --- a/pkgs/build-support/setup-hooks/separate-debug-info.sh +++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh @@ -11,15 +11,13 @@ _separateDebugInfo() { dst="$dst/lib/debug/.build-id" # Find executables and dynamic libraries. - local -a files=($(find "$prefix" -type f -a \( -perm /0100 -o -name "*.so" -o -name "*.so.*" \))) - local i magic - for i in "${files[@]}"; do + while IFS= read -r -d $'\0' i; do # Skip non-ELF files. - exec 10< "$i" - read -n 4 -u 10 magic + exec {fd}< "$i" + read -n 4 -u $fd magic + exec {fd}<&- if ! [[ "$magic" =~ ELF ]]; then continue; fi - exec 10<&- # Extract the Build ID. FIXME: there's probably a cleaner way. local id="$(readelf -n "$i" | sed 's/.*Build ID: \([0-9a-f]*\).*/\1/; t; d')" @@ -36,7 +34,7 @@ _separateDebugInfo() { # Also a create a symlink .debug. ln -sfn ".build-id/${id:0:2}/${id:2}.debug" "$dst/../$(basename "$i")" - done + done < <(find "$prefix" -type f -a \( -perm /0100 -o -name "*.so" -o -name "*.so.*" \) -print0) } # - We might prefer to compress the debug info during link-time already, From d71a4851e8a2ef52f6d806d65822290cdbae8804 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 18 Feb 2016 22:52:44 +0100 Subject: [PATCH 060/291] Don't try to apply patchelf to non-ELF binaries --- .../setup-hooks/separate-debug-info.sh | 8 ++------ .../tools/misc/patchelf/setup-hook.sh | 17 ++++++++++------- pkgs/stdenv/generic/setup.sh | 11 +++++++++++ 3 files changed, 23 insertions(+), 13 deletions(-) diff --git a/pkgs/build-support/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh index cf3d7b07a49..37753d9ce40 100644 --- a/pkgs/build-support/setup-hooks/separate-debug-info.sh +++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh @@ -13,11 +13,7 @@ _separateDebugInfo() { # Find executables and dynamic libraries. local i magic while IFS= read -r -d $'\0' i; do - # Skip non-ELF files. - exec {fd}< "$i" - read -n 4 -u $fd magic - exec {fd}<&- - if ! [[ "$magic" =~ ELF ]]; then continue; fi + if ! isELF "$i"; then continue; fi # Extract the Build ID. FIXME: there's probably a cleaner way. local id="$(readelf -n "$i" | sed 's/.*Build ID: \([0-9a-f]*\).*/\1/; t; d')" @@ -34,7 +30,7 @@ _separateDebugInfo() { # Also a create a symlink .debug. ln -sfn ".build-id/${id:0:2}/${id:2}.debug" "$dst/../$(basename "$i")" - done < <(find "$prefix" -type f -a \( -perm /0100 -o -name "*.so" -o -name "*.so.*" \) -print0) + done < <(find "$prefix" -type f -print0) } # - We might prefer to compress the debug info during link-time already, diff --git a/pkgs/development/tools/misc/patchelf/setup-hook.sh b/pkgs/development/tools/misc/patchelf/setup-hook.sh index a76fbfbd509..03b6f362a77 100644 --- a/pkgs/development/tools/misc/patchelf/setup-hook.sh +++ b/pkgs/development/tools/misc/patchelf/setup-hook.sh @@ -5,12 +5,15 @@ fixupOutputHooks+=('if [ -z "$dontPatchELF" ]; then patchELF "$prefix"; fi') patchELF() { - header "patching ELF executables and libraries in $prefix" - if [ -e "$prefix" ]; then - find "$prefix" \( \ - \( -type f -a -name "*.so*" \) -o \ - \( -type f -a -perm -0100 \) \ - \) -print -exec patchelf --shrink-rpath '{}' \; - fi + header "shrinking RPATHs of ELF executables and libraries in $prefix" + + local i + while IFS= read -r -d $'\0' i; do + if [[ "$i" =~ .build-id ]]; then continue; fi + if ! isELF "$i"; then continue; fi + echo "shrinking $i" + patchelf --shrink-rpath "$i" || true + done < <(find "$prefix" -type f -print0) + stopNest } diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index 7d25472993c..8081b69bffd 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -180,6 +180,17 @@ installBin() { } +# Return success if the specified file is an ELF object. +isELF() { + local fn="$1" + local magic + exec {fd}< "$fn" + read -n 4 -u $fd magic + exec {fd}<&- + if [[ "$magic" =~ ELF ]]; then return 0; else return 1; fi +} + + ###################################################################### # Initialisation. From 3ad12f2decdab0da872899107917e8c247fd07dc Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 16 Feb 2016 23:10:46 +0900 Subject: [PATCH 061/291] inputMethod service: init --- nixos/modules/i18n/inputMethod/default.nix | 29 ++++++++++++++++++++++ nixos/modules/i18n/inputMethod/fcitx.nix | 11 +------- nixos/modules/i18n/inputMethod/ibus.nix | 11 +------- nixos/modules/i18n/inputMethod/nabi.nix | 22 +--------------- nixos/modules/i18n/inputMethod/uim.nix | 11 +------- nixos/modules/module-list.nix | 1 + nixos/modules/rename.nix | 1 - 7 files changed, 34 insertions(+), 52 deletions(-) create mode 100644 nixos/modules/i18n/inputMethod/default.nix diff --git a/nixos/modules/i18n/inputMethod/default.nix b/nixos/modules/i18n/inputMethod/default.nix new file mode 100644 index 00000000000..7e6a25bfb08 --- /dev/null +++ b/nixos/modules/i18n/inputMethod/default.nix @@ -0,0 +1,29 @@ +{ config, pkgs, lib, ... }: + +with lib; + +{ + options = { + i18n.inputMethod = { + enabled = mkOption { + type = types.nullOr (types.enum [ "ibus" "fcitx" "nabi" "uim" ]); + default = null; + example = "fcitx"; + description = '' + Select the enabled input method. Input methods is a software to input symbols that are not available on standard input devices. + + Input methods are specially used to input Chinese, Japanese and Korean characters. + + Currently the following input methods are available in NixOS: + + + ibus: The intelligent input bus, extra input engines can be added using i18n.inputMethod.ibus.engines. + fcitx: A customizable lightweight input method, extra input engines can be added using i18n.inputMethod.fcitx.engines. + nabi: A Korean input method based on XIM. Nabi doesn't support Qt 5. + uim: The universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean. + + ''; + }; + }; + }; +} diff --git a/nixos/modules/i18n/inputMethod/fcitx.nix b/nixos/modules/i18n/inputMethod/fcitx.nix index b0e7578810a..f168f445170 100644 --- a/nixos/modules/i18n/inputMethod/fcitx.nix +++ b/nixos/modules/i18n/inputMethod/fcitx.nix @@ -14,15 +14,6 @@ in options = { i18n.inputMethod.fcitx = { - enable = mkOption { - type = types.bool; - default = false; - example = true; - description = '' - Enable Fcitx input method. - Fcitx can be used to input of Chinese, Korean, Japanese and other special characters. - ''; - }; engines = mkOption { type = with types; listOf fcitxEngine; default = []; @@ -36,7 +27,7 @@ in }; - config = mkIf cfg.enable { + config = mkIf (config.i18n.inputMethod.enabled == "fcitx") { environment.systemPackages = [ fcitxPackage ]; gtkPlugins = [ fcitxPackage ]; qtPlugins = [ fcitxPackage ]; diff --git a/nixos/modules/i18n/inputMethod/ibus.nix b/nixos/modules/i18n/inputMethod/ibus.nix index e4bc15cf891..86059751a3d 100644 --- a/nixos/modules/i18n/inputMethod/ibus.nix +++ b/nixos/modules/i18n/inputMethod/ibus.nix @@ -13,15 +13,6 @@ in { options = { i18n.inputMethod.ibus = { - enable = mkOption { - type = types.bool; - default = false; - example = true; - description = '' - Enable IBus input method. - IBus can be used input of Chinese, Korean, Japanese and other special characters. - ''; - }; engines = mkOption { type = with types; listOf ibusEngine; default = []; @@ -34,7 +25,7 @@ in }; }; - config = mkIf cfg.enable { + config = mkIf (config.i18n.inputMethod.enabled == "ibus") { # Without dconf enabled it is impossible to use IBus environment.systemPackages = [ ibusPackage pkgs.gnome3.dconf ]; diff --git a/nixos/modules/i18n/inputMethod/nabi.nix b/nixos/modules/i18n/inputMethod/nabi.nix index 7f97135fee1..8c396595513 100644 --- a/nixos/modules/i18n/inputMethod/nabi.nix +++ b/nixos/modules/i18n/inputMethod/nabi.nix @@ -1,28 +1,8 @@ { config, pkgs, lib, ... }: with lib; - -let - cfg = config.i18n.inputMethod.nabi; -in { - options = { - - i18n.inputMethod.nabi = { - enable = mkOption { - type = types.bool; - default = false; - example = true; - description = '' - Enable nabi input method. - Nabi can be used to input Korean. - ''; - }; - }; - - }; -{ - config = mkIf cfg.enable { + config = mkIf (config.i18n.inputMethod.enabled == "nabi") { environment.systemPackages = [ pkgs.nabi ]; qtPlugins = [ pkgs.nabi ]; diff --git a/nixos/modules/i18n/inputMethod/uim.nix b/nixos/modules/i18n/inputMethod/uim.nix index 0154cdc5057..401e1932f70 100644 --- a/nixos/modules/i18n/inputMethod/uim.nix +++ b/nixos/modules/i18n/inputMethod/uim.nix @@ -9,15 +9,6 @@ in options = { i18n.inputMethod.uim = { - enable = mkOption { - type = types.bool; - default = false; - example = true; - description = '' - Enable uim input method. - Uim can be used to input of Chinese, Korean, Japanese and other special characters. - ''; - }; toolbar = mkOption { type = types.enum [ "gtk" "gtk3" "gtk-systray" "gtk3-systray" "qt4" ]; default = "gtk"; @@ -30,7 +21,7 @@ in }; - config = mkIf cfg.enable { + config = mkIf (config.i18n.inputMethod.enabled == "uim") { environment.systemPackages = [ pkgs.uim ]; gtkPlugins = [ pkgs.uim ]; qtPlugins = [ pkgs.uim ]; diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 7fe4a90a135..eb4045fdfdc 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -43,6 +43,7 @@ ./hardware/video/nvidia.nix ./hardware/video/ati.nix ./hardware/video/webcam/facetimehd.nix + ./i18n/inputMethod/default.nix ./i18n/inputMethod/fcitx.nix ./i18n/inputMethod/ibus.nix ./i18n/inputMethod/nabi.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 698c28f37c8..6d5ee6fc84e 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -60,7 +60,6 @@ with lib; (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) # ibus - (mkRenamedOptionModule [ "programs" "ibus" "enable" ] [ "i18n" "inputMethod" "ibus" "enable" ]) (mkRenamedOptionModule [ "programs" "ibus" "plugins" ] [ "i18n" "inputMethod" "ibus" "engines" ]) # proxy From 9cf93ba13587dba8116fa99279e51cf60c7bde88 Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Thu, 18 Feb 2016 22:10:43 -0600 Subject: [PATCH 062/291] Simplify fetchurl assertion logic. The two lines I removed technically assert the exact same thing, since `!a -> b` is equivalent to `a || b`. So, I replaced the two lines with the more symmetric form to make it clearer. --- pkgs/build-support/fetchurl/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/build-support/fetchurl/default.nix b/pkgs/build-support/fetchurl/default.nix index 804974954d1..2c802bb3679 100644 --- a/pkgs/build-support/fetchurl/default.nix +++ b/pkgs/build-support/fetchurl/default.nix @@ -85,8 +85,7 @@ in }: assert builtins.isList urls; -assert urls != [] -> url == ""; -assert url != "" -> urls == []; +assert urls == [] || url == ""; let From 718848d5aac47660b0c0d7bdd1702c1f474debf1 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 18 Feb 2016 17:30:06 -0800 Subject: [PATCH 063/291] azure: package qemu @ 2.2.0 This commit packages qemu-220. This package is qemu-2.2.0 and is only used with Azure. --- nixos/modules/virtualisation/azure-image.nix | 4 ++-- .../azure-qemu-220-no-etc-install.patch | 14 ++++++++++++++ pkgs/build-support/vm/default.nix | 9 +++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 nixos/modules/virtualisation/azure-qemu-220-no-etc-install.patch diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix index 7093e50ed35..f0a739bc95d 100644 --- a/nixos/modules/virtualisation/azure-image.nix +++ b/nixos/modules/virtualisation/azure-image.nix @@ -16,14 +16,14 @@ in cyl=$(((${diskSize}*1024*1024)/(512*63*255))) size=$(($cyl*255*63*512)) roundedsize=$((($size/(1024*1024)+1)*(1024*1024))) - ${pkgs.vmTools.qemu}/bin/qemu-img create -f raw $diskImage $roundedsize + ${pkgs.vmTools.qemu-220}/bin/qemu-img create -f raw $diskImage $roundedsize mv closure xchg/ ''; postVM = '' mkdir -p $out - ${pkgs.vmTools.qemu}/bin/qemu-img convert -f raw -O vpc -o subformat=fixed $diskImage $out/disk.vhd + ${pkgs.vmTools.qemu-220}/bin/qemu-img convert -f raw -O vpc -o subformat=fixed $diskImage $out/disk.vhd rm $diskImage ''; diskImageBase = "nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.raw"; diff --git a/nixos/modules/virtualisation/azure-qemu-220-no-etc-install.patch b/nixos/modules/virtualisation/azure-qemu-220-no-etc-install.patch new file mode 100644 index 00000000000..81d29feea3d --- /dev/null +++ b/nixos/modules/virtualisation/azure-qemu-220-no-etc-install.patch @@ -0,0 +1,14 @@ +diff --git a/Makefile b/Makefile +index d6b9dc1..ce7c493 100644 +--- a/Makefile ++++ b/Makefile +@@ -384,8 +384,7 @@ install-confdir: + install-sysconfig: install-datadir install-confdir + $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)" + +-install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \ +-install-datadir install-localstatedir ++install: all $(if $(BUILD_DOCS),install-doc) install-datadir + ifneq ($(TOOLS),) + $(call install-prog,$(TOOLS),$(DESTDIR)$(bindir)) + endif diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 96611b725be..23f95bd4979 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -11,6 +11,15 @@ rec { qemu = pkgs.qemu_kvm; + qemu-220 = lib.overrideDerivation pkgs.qemu_kvm (attrs: rec { + version = "2.2.0"; + src = fetchurl { + url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2"; + sha256 = "1703c3scl5n07gmpilg7g2xzyxnr7jczxgx6nn4m8kv9gin9p35n"; + }; + patches = [ ../../../nixos/modules/virtualisation/azure-qemu-220-no-etc-install.patch ]; + }); + qemuProg = "${qemu}/bin/qemu-kvm"; From 86cbd505c557466ec5c175afae2f89c4c4792303 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 18 Feb 2016 17:39:36 -0800 Subject: [PATCH 064/291] azure-agent: switch back to upstream WALinuxAgent --- nixos/modules/virtualisation/azure-agent.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index 4fbc8fd3511..640519758c7 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -9,10 +9,10 @@ let waagent = with pkgs; stdenv.mkDerivation rec { name = "waagent-2.0"; src = pkgs.fetchFromGitHub { - owner = "phreedom"; + owner = "Azure"; repo = "WALinuxAgent"; - rev = "1d31fe8cbc7f842993eed9b33a3d3f5410c364e3"; - sha256 = "1s53pfmy3azp0rmympmnphyq96sr9jy07pbsfza6mdzpalx1ripl"; + rev = "1b3a8407a95344d9d12a2a377f64140975f1e8e4"; + sha256 = "10byzvmpgrmr4d5mdn2kq04aapqb3sgr1admk13wjmy5cd6bwd2x"; }; buildInputs = [ makeWrapper python pythonPackages.wrapPython ]; runtimeDeps = [ findutils gnugrep gawk coreutils openssl openssh From 90873ea02a6d3373b30a33cad499d5a1dbc6ee21 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Fri, 19 Feb 2016 06:38:40 +0000 Subject: [PATCH 065/291] requests2: 2.8.1 -> 2.9.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index de994801b87..bbf84844aff 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17562,11 +17562,11 @@ in modules // { requests2 = buildPythonPackage rec { name = "requests-${version}"; - version = "2.8.1"; + version = "2.9.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz"; - sha256 = "0ny2nr1sqr4hcn3903ghmh7w2yni8shlfv240a8c9p6wyidqvzl4"; + sha256 = "0zsqrzlybf25xscgi7ja4s48y2abf9wvjkn47wh984qgs1fq2xy5"; }; buildInputs = [ self.pytest ]; From 43a523526dfe924e59b0eadf9319bb1a72fad743 Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Fri, 19 Feb 2016 03:13:10 -0600 Subject: [PATCH 066/291] Require at least one of url or urls in fetchurl. --- pkgs/build-support/fetchurl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchurl/default.nix b/pkgs/build-support/fetchurl/default.nix index 2c802bb3679..d4b46cf9e9d 100644 --- a/pkgs/build-support/fetchurl/default.nix +++ b/pkgs/build-support/fetchurl/default.nix @@ -85,7 +85,7 @@ in }: assert builtins.isList urls; -assert urls == [] || url == ""; +assert (urls == []) != (url == ""); let From 26109869917c99191bef2a8c438f1e7833ad9fa2 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Thu, 18 Feb 2016 11:53:40 +0100 Subject: [PATCH 067/291] chromium/plugins: use jshon for extracting the Flash version from JSON --- pkgs/applications/networking/browsers/chromium/plugins.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index 157ddf379c2..c3b294876c8 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -1,4 +1,5 @@ { stdenv +, jshon , enablePepperFlash ? false , enableWideVine ? false @@ -83,9 +84,7 @@ let wvModule = "@widevine@/lib/libwidevinecdmadapter.so"; wvInfo = "#${wvName}#${wvDescription};${wvMimeTypes}"; in '' - flashVersion="$( - sed -n -r 's/.*"version": "([^"]+)",.*/\1/p' PepperFlash/manifest.json - )" + flashVersion="$(${jshon}/bin/jshon -F PepperFlash/manifest.json -e version -u)" install -vD PepperFlash/libpepflashplayer.so \ "$flash/lib/libpepflashplayer.so" From 4d06bf70f4580d5cb907278dd3c384c305f95c74 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 19 Feb 2016 13:12:11 +0100 Subject: [PATCH 068/291] buildPythonApplication: use new function for Python applications --- pkgs/applications/audio/gpodder/default.nix | 4 ++-- pkgs/applications/audio/gtklick/default.nix | 2 +- pkgs/applications/audio/lastfmsubmitd/default.nix | 2 +- pkgs/applications/audio/lastwatch/default.nix | 2 +- pkgs/applications/audio/mimms/default.nix | 2 +- pkgs/applications/audio/mopidy-gmusic/default.nix | 2 +- pkgs/applications/audio/mopidy-moped/default.nix | 2 +- pkgs/applications/audio/mopidy-mopify/default.nix | 2 +- .../audio/mopidy-musicbox-webclient/default.nix | 2 +- pkgs/applications/audio/mopidy-soundcloud/default.nix | 2 +- .../audio/mopidy-spotify-tunigo/default.nix | 2 +- pkgs/applications/audio/mopidy-spotify/default.nix | 2 +- pkgs/applications/audio/mopidy-youtube/default.nix | 2 +- pkgs/applications/audio/mopidy/default.nix | 2 +- pkgs/applications/audio/picard/default.nix | 4 ++-- pkgs/applications/audio/pithos/default.nix | 2 +- pkgs/applications/audio/quodlibet/default.nix | 4 ++-- pkgs/applications/audio/sonata/default.nix | 4 ++-- pkgs/applications/editors/leo-editor/default.nix | 2 +- pkgs/applications/editors/nvpy/default.nix | 4 ++-- pkgs/applications/graphics/jbrout/default.nix | 4 ++-- pkgs/applications/graphics/mcomix/default.nix | 4 ++-- pkgs/applications/graphics/mirage/default.nix | 4 ++-- pkgs/applications/misc/bleachbit/default.nix | 2 +- pkgs/applications/misc/electrum-dash/default.nix | 4 ++-- pkgs/applications/misc/electrum/default.nix | 4 ++-- pkgs/applications/misc/gramps/default.nix | 4 ++-- .../applications/misc/hamster-time-tracker/default.nix | 4 ++-- pkgs/applications/misc/khal/default.nix | 2 +- pkgs/applications/misc/khard/default.nix | 2 +- pkgs/applications/misc/loxodo/default.nix | 2 +- pkgs/applications/misc/ocropus/default.nix | 2 +- pkgs/applications/misc/octoprint/default.nix | 2 +- pkgs/applications/misc/octoprint/plugins.nix | 2 +- pkgs/applications/misc/pdfdiff/default.nix | 2 +- pkgs/applications/misc/pitz/default.nix | 4 ++-- pkgs/applications/misc/printrun/default.nix | 2 +- pkgs/applications/misc/pytrainer/default.nix | 2 +- pkgs/applications/misc/ranger/default.nix | 4 ++-- pkgs/applications/misc/rtv/default.nix | 2 +- pkgs/applications/misc/solaar/default.nix | 2 +- pkgs/applications/misc/zscroll/default.nix | 2 +- .../networking/browsers/qutebrowser/default.nix | 4 ++-- .../networking/feedreaders/canto-curses/default.nix | 2 +- .../networking/feedreaders/canto-daemon/default.nix | 2 +- .../networking/feedreaders/rawdog/default.nix | 2 +- .../networking/instant-messengers/blink/default.nix | 2 +- .../networking/mailreaders/mailnag/default.nix | 4 ++-- .../networking/mailreaders/mailpile/default.nix | 2 +- pkgs/applications/office/keepnote/default.nix | 4 ++-- pkgs/applications/office/zim/default.nix | 4 ++-- pkgs/applications/science/spyder/default.nix | 4 ++-- .../git-and-tools/git-cola/default.nix | 2 +- .../version-management/git-review/default.nix | 2 +- .../version-management/gitinspector/default.nix | 4 ++-- pkgs/applications/version-management/meld/default.nix | 4 ++-- pkgs/applications/version-management/peru/default.nix | 2 +- .../version-management/rabbitvcs/default.nix | 2 +- .../applications/version-management/tailor/default.nix | 2 +- .../version-management/tortoisehg/default.nix | 2 +- pkgs/applications/video/devede/default.nix | 4 ++-- pkgs/applications/video/kazam/default.nix | 2 +- pkgs/applications/video/key-mon/default.nix | 4 ++-- pkgs/applications/video/miro/default.nix | 4 ++-- pkgs/applications/virtualization/openstack/glance.nix | 2 +- .../applications/virtualization/openstack/keystone.nix | 2 +- pkgs/applications/virtualization/openstack/neutron.nix | 2 +- pkgs/applications/virtualization/openstack/nova.nix | 2 +- .../virtualization/virt-manager/default.nix | 2 +- pkgs/applications/window-managers/qtile/default.nix | 4 ++-- pkgs/development/arduino/ino/default.nix | 4 ++-- .../tools/build-managers/buildbot-slave/default.nix | 4 ++-- .../tools/build-managers/buildbot/default.nix | 4 ++-- pkgs/development/tools/devpi-client/default.nix | 2 +- pkgs/development/tools/grabserial/default.nix | 4 ++-- pkgs/development/tools/misc/nixbang/default.nix | 2 +- pkgs/development/tools/misc/ycmd/default.nix | 2 +- pkgs/development/tools/profiling/gprof2dot/default.nix | 2 +- pkgs/development/tools/winpdb/default.nix | 4 ++-- pkgs/games/mnemosyne/default.nix | 4 ++-- pkgs/misc/frescobaldi/default.nix | 2 +- pkgs/os-specific/linux/iotop/default.nix | 4 ++-- pkgs/servers/matrix-synapse/default.nix | 6 +++--- pkgs/shells/xonsh/default.nix | 2 +- pkgs/tools/X11/arandr/default.nix | 2 +- pkgs/tools/X11/winswitch/default.nix | 4 ++-- pkgs/tools/X11/xpra/default.nix | 4 ++-- pkgs/tools/X11/xpra/gtk3.nix | 4 ++-- pkgs/tools/admin/cli53/default.nix | 4 ++-- pkgs/tools/admin/letsencrypt/default.nix | 2 +- pkgs/tools/admin/simp_le/default.nix | 2 +- pkgs/tools/audio/beets/alternatives-plugin.nix | 4 ++-- pkgs/tools/audio/beets/default.nix | 6 +++--- pkgs/tools/backup/attic/default.nix | 2 +- pkgs/tools/backup/borg/default.nix | 2 +- pkgs/tools/backup/obnam/default.nix | 2 +- pkgs/tools/backup/s3ql/default.nix | 2 +- pkgs/tools/backup/wal-e/default.nix | 2 +- pkgs/tools/compression/dtrx/default.nix | 2 +- pkgs/tools/filesystems/gitfs/default.nix | 4 ++-- pkgs/tools/filesystems/nixpart/0.4/blivet.nix | 4 ++-- pkgs/tools/filesystems/nixpart/0.4/default.nix | 10 +++++----- pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix | 4 ++-- pkgs/tools/filesystems/nixpart/0.4/pyparted.nix | 4 ++-- pkgs/tools/filesystems/nixpart/default.nix | 4 ++-- pkgs/tools/misc/apt-offline/default.nix | 4 ++-- pkgs/tools/misc/diffoscope/default.nix | 2 +- pkgs/tools/misc/i3minator/default.nix | 4 ++-- pkgs/tools/misc/trash-cli/default.nix | 2 +- pkgs/tools/misc/vdirsyncer/default.nix | 2 +- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- pkgs/tools/networking/getmail/default.nix | 4 ++-- pkgs/tools/networking/gmvault/default.nix | 4 ++-- pkgs/tools/networking/httpie/default.nix | 2 +- pkgs/tools/networking/offlineimap/default.nix | 4 ++-- pkgs/tools/networking/p2p/tahoe-lafs/default.nix | 2 +- pkgs/tools/networking/s3cmd/default.nix | 2 +- pkgs/tools/networking/speedtest-cli/default.nix | 2 +- pkgs/tools/networking/urlwatch/default.nix | 2 +- pkgs/tools/package-management/nixops/generic.nix | 2 +- pkgs/tools/package-management/nox/default.nix | 2 +- pkgs/tools/package-management/python2nix/default.nix | 2 +- pkgs/tools/security/fail2ban/default.nix | 2 +- pkgs/tools/security/knockknock/default.nix | 4 ++-- pkgs/tools/security/sshuttle/default.nix | 2 +- pkgs/tools/security/volatility/default.nix | 4 ++-- pkgs/tools/system/honcho/default.nix | 4 ++-- pkgs/tools/text/grin/default.nix | 2 +- pkgs/tools/typesetting/odpdown/default.nix | 4 ++-- pkgs/tools/video/vnc2flv/default.nix | 2 +- pkgs/tools/virtualization/cloud-init/default.nix | 2 +- pkgs/tools/virtualization/euca2ools/default.nix | 2 +- pkgs/top-level/all-packages.nix | 6 +++--- 133 files changed, 195 insertions(+), 195 deletions(-) diff --git a/pkgs/applications/audio/gpodder/default.nix b/pkgs/applications/audio/gpodder/default.nix index 55337bf1d3a..7b724ca3d01 100644 --- a/pkgs/applications/audio/gpodder/default.nix +++ b/pkgs/applications/audio/gpodder/default.nix @@ -1,9 +1,9 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages, mygpoclient, intltool +{ stdenv, fetchurl, buildPythonApplication, pythonPackages, mygpoclient, intltool , ipodSupport ? true, libgpod , gnome3 }: -buildPythonPackage rec { +buildPythonApplication rec { name = "gpodder-${version}"; namePrefix = ""; diff --git a/pkgs/applications/audio/gtklick/default.nix b/pkgs/applications/audio/gtklick/default.nix index b11e1ac0fa7..c0a137d7de9 100644 --- a/pkgs/applications/audio/gtklick/default.nix +++ b/pkgs/applications/audio/gtklick/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, gettext, klick}: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "gtklick-${version}"; namePrefix = ""; version = "0.6.4"; diff --git a/pkgs/applications/audio/lastfmsubmitd/default.nix b/pkgs/applications/audio/lastfmsubmitd/default.nix index 314361329c7..ea182d73a5b 100644 --- a/pkgs/applications/audio/lastfmsubmitd/default.nix +++ b/pkgs/applications/audio/lastfmsubmitd/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "lastfmsubmitd-${version}"; namePrefix = ""; version = "1.0.6"; diff --git a/pkgs/applications/audio/lastwatch/default.nix b/pkgs/applications/audio/lastwatch/default.nix index 2cffb0ebacf..168a67a53f0 100644 --- a/pkgs/applications/audio/lastwatch/default.nix +++ b/pkgs/applications/audio/lastwatch/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchgit, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "lastwatch-${version}"; namePrefix = ""; version = "0.4.1"; diff --git a/pkgs/applications/audio/mimms/default.nix b/pkgs/applications/audio/mimms/default.nix index b337dbf6d82..cee3469e3f5 100644 --- a/pkgs/applications/audio/mimms/default.nix +++ b/pkgs/applications/audio/mimms/default.nix @@ -2,7 +2,7 @@ let version = "3.2"; in - pythonPackages.buildPythonPackage { + pythonPackages.buildPythonApplication { name = "mimms-${version}"; src = fetchurl { url = "http://download.savannah.gnu.org/releases/mimms/mimms-${version}.tar.bz2"; diff --git a/pkgs/applications/audio/mopidy-gmusic/default.nix b/pkgs/applications/audio/mopidy-gmusic/default.nix index 00468db767a..6984593cd41 100644 --- a/pkgs/applications/audio/mopidy-gmusic/default.nix +++ b/pkgs/applications/audio/mopidy-gmusic/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-gmusic-${version}"; version = "1.0.0"; diff --git a/pkgs/applications/audio/mopidy-moped/default.nix b/pkgs/applications/audio/mopidy-moped/default.nix index 6bf73c02185..ee3134f5fd8 100644 --- a/pkgs/applications/audio/mopidy-moped/default.nix +++ b/pkgs/applications/audio/mopidy-moped/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-moped-${version}"; version = "0.6.0"; diff --git a/pkgs/applications/audio/mopidy-mopify/default.nix b/pkgs/applications/audio/mopidy-mopify/default.nix index b7a1fbf2f08..abb9c50d71c 100644 --- a/pkgs/applications/audio/mopidy-mopify/default.nix +++ b/pkgs/applications/audio/mopidy-mopify/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-mopify-${version}"; version = "1.5.8"; diff --git a/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix index e13a1a978fd..b2bca838cee 100644 --- a/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix +++ b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-musicbox-webclient-${version}"; version = "2.0.0"; diff --git a/pkgs/applications/audio/mopidy-soundcloud/default.nix b/pkgs/applications/audio/mopidy-soundcloud/default.nix index c81de3e0d06..09881296164 100644 --- a/pkgs/applications/audio/mopidy-soundcloud/default.nix +++ b/pkgs/applications/audio/mopidy-soundcloud/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-soundcloud-${version}"; version = "2.0.2"; diff --git a/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix index ab07b0f1f68..4d7c1cb7326 100644 --- a/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix +++ b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages, mopidy, mopidy-spotify }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-spotify-tunigo-${version}"; version = "0.2.1"; diff --git a/pkgs/applications/audio/mopidy-spotify/default.nix b/pkgs/applications/audio/mopidy-spotify/default.nix index f44f95be140..3a717344aef 100644 --- a/pkgs/applications/audio/mopidy-spotify/default.nix +++ b/pkgs/applications/audio/mopidy-spotify/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-spotify-${version}"; version = "2.3.1"; diff --git a/pkgs/applications/audio/mopidy-youtube/default.nix b/pkgs/applications/audio/mopidy-youtube/default.nix index efd1425e255..2942cba95f0 100644 --- a/pkgs/applications/audio/mopidy-youtube/default.nix +++ b/pkgs/applications/audio/mopidy-youtube/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages, mopidy }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-youtube-${version}"; version = "2.0.1"; diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index ae53008d58c..29426f43de1 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -2,7 +2,7 @@ , glib_networking, gst_plugins_good, gst_plugins_base, gst_plugins_ugly }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mopidy-${version}"; version = "1.1.2"; diff --git a/pkgs/applications/audio/picard/default.nix b/pkgs/applications/audio/picard/default.nix index df76b8073b6..2373bbc549d 100644 --- a/pkgs/applications/audio/picard/default.nix +++ b/pkgs/applications/audio/picard/default.nix @@ -1,10 +1,10 @@ -{ stdenv, buildPythonPackage, fetchurl, gettext +{ stdenv, buildPythonApplication, fetchurl, gettext , pkgconfig, libofa, ffmpeg, chromaprint , pyqt4, mutagen, python-libdiscid }: let version = "1.3.2"; in -buildPythonPackage { +buildPythonApplication { name = "picard-${version}"; namePrefix = ""; diff --git a/pkgs/applications/audio/pithos/default.nix b/pkgs/applications/audio/pithos/default.nix index 4095d672f82..1083f9434a9 100644 --- a/pkgs/applications/audio/pithos/default.nix +++ b/pkgs/applications/audio/pithos/default.nix @@ -1,7 +1,7 @@ { fetchFromGitHub, stdenv, pythonPackages, gtk3, gobjectIntrospection, libnotify , gst_all_1, wrapGAppsHook }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { pname = "pithos"; version = "1.1.2"; name = "${pname}-${version}"; diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix index 38c679d7a3e..56ec0461102 100644 --- a/pkgs/applications/audio/quodlibet/default.nix +++ b/pkgs/applications/audio/quodlibet/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, python, buildPythonPackage, mutagen, pygtk, pygobject, intltool +{ stdenv, fetchurl, python, buildPythonApplication, mutagen, pygtk, pygobject, intltool , pythonDBus, gst_python, withGstPlugins ? false, gst_plugins_base ? null , gst_plugins_good ? null, gst_plugins_ugly ? null, gst_plugins_bad ? null }: @@ -9,7 +9,7 @@ assert withGstPlugins -> gst_plugins_base != null let version = "2.6.3"; in -buildPythonPackage { +buildPythonApplication { # call the package quodlibet and just quodlibet name = "quodlibet-${version}" + stdenv.lib.optionalString withGstPlugins "-with-gst-plugins"; diff --git a/pkgs/applications/audio/sonata/default.nix b/pkgs/applications/audio/sonata/default.nix index 74ce6a2c15f..e23a5404368 100644 --- a/pkgs/applications/audio/sonata/default.nix +++ b/pkgs/applications/audio/sonata/default.nix @@ -1,11 +1,11 @@ { pkgs, stdenv, fetchFromGitHub, pkgconfig, intltool, wrapGAppsHook, - python, buildPythonPackage, isPy3k, + python, buildPythonApplication, isPy3k, gnome3, gtk3, gobjectIntrospection, dbus, pygobject3, mpd2 }: with pkgs.lib; -buildPythonPackage rec { +buildPythonApplication rec { name = "sonata-${version}"; version = "1.7b1"; namePrefix = ""; diff --git a/pkgs/applications/editors/leo-editor/default.nix b/pkgs/applications/editors/leo-editor/default.nix index 597f9148564..6f540d1d74a 100644 --- a/pkgs/applications/editors/leo-editor/default.nix +++ b/pkgs/applications/editors/leo-editor/default.nix @@ -1,6 +1,6 @@ { stdenv, pythonPackages, fetchgit }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "leo-editor-${version}"; namePrefix = ""; version = "5.1"; diff --git a/pkgs/applications/editors/nvpy/default.nix b/pkgs/applications/editors/nvpy/default.nix index 29402f3b3d8..a6dd7bcb403 100644 --- a/pkgs/applications/editors/nvpy/default.nix +++ b/pkgs/applications/editors/nvpy/default.nix @@ -1,6 +1,6 @@ -{ pkgs, fetchurl, tk, buildPythonPackage, pythonPackages }: +{ pkgs, fetchurl, tk, buildPythonApplication, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { version = "0.9.2"; name = "nvpy-${version}"; diff --git a/pkgs/applications/graphics/jbrout/default.nix b/pkgs/applications/graphics/jbrout/default.nix index e37c2c283e4..8d6c15129cb 100644 --- a/pkgs/applications/graphics/jbrout/default.nix +++ b/pkgs/applications/graphics/jbrout/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchsvn, buildPythonPackage, python, pyGtkGlade, makeWrapper, pyexiv2, pythonPackages, fbida, which }: +{ stdenv, fetchsvn, buildPythonApplication, python, pyGtkGlade, makeWrapper, pyexiv2, pythonPackages, fbida, which }: -buildPythonPackage rec { +buildPythonApplication rec { name = "jbrout-${version}"; version = "338"; diff --git a/pkgs/applications/graphics/mcomix/default.nix b/pkgs/applications/graphics/mcomix/default.nix index 069a4bace28..39d17a32eec 100644 --- a/pkgs/applications/graphics/mcomix/default.nix +++ b/pkgs/applications/graphics/mcomix/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, python27Packages }: +{ stdenv, fetchurl, buildPythonApplication, python27Packages }: -buildPythonPackage rec { +buildPythonApplication rec { namePrefix = ""; name = "mcomix-1.01"; diff --git a/pkgs/applications/graphics/mirage/default.nix b/pkgs/applications/graphics/mirage/default.nix index c4b14388d1b..c3f06544bb4 100644 --- a/pkgs/applications/graphics/mirage/default.nix +++ b/pkgs/applications/graphics/mirage/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, python, pygtk, pillow, libX11, gettext }: +{ stdenv, fetchurl, buildPythonApplication, python, pygtk, pillow, libX11, gettext }: -buildPythonPackage rec { +buildPythonApplication rec { namePrefix = ""; name = "mirage-0.9.5.2"; diff --git a/pkgs/applications/misc/bleachbit/default.nix b/pkgs/applications/misc/bleachbit/default.nix index 511455ba6bb..cfab4195a09 100644 --- a/pkgs/applications/misc/bleachbit/default.nix +++ b/pkgs/applications/misc/bleachbit/default.nix @@ -1,5 +1,5 @@ { stdenv, pythonPackages, fetchurl }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "bleachbit-${version}"; version = "1.8"; diff --git a/pkgs/applications/misc/electrum-dash/default.nix b/pkgs/applications/misc/electrum-dash/default.nix index f046ecc9bf2..7b1bdef4eb5 100644 --- a/pkgs/applications/misc/electrum-dash/default.nix +++ b/pkgs/applications/misc/electrum-dash/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages, slowaes }: +{ stdenv, fetchurl, buildPythonApplication, pythonPackages, slowaes }: -buildPythonPackage rec { +buildPythonApplication rec { name = "electrum-dash-${version}"; version = "2.4.1"; diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index 632ae689f31..6025fce776c 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages, slowaes }: +{ stdenv, fetchurl, buildPythonApplication, pythonPackages, slowaes }: -buildPythonPackage rec { +buildPythonApplication rec { name = "electrum-${version}"; version = "2.5.4"; diff --git a/pkgs/applications/misc/gramps/default.nix b/pkgs/applications/misc/gramps/default.nix index 31cdb8d1786..79393eee7f1 100644 --- a/pkgs/applications/misc/gramps/default.nix +++ b/pkgs/applications/misc/gramps/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, gtk3, pythonPackages, python, pycairo, pygobject3, intltool, pango, gsettings_desktop_schemas }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "4.1.1"; name = "gramps-${version}"; namePrefix = ""; @@ -18,7 +18,7 @@ pythonPackages.buildPythonPackage rec { pythonPath = [ pygobject3 pango pycairo pythonPackages.bsddb ]; - # Same installPhase as in buildPythonPackage but without --old-and-unmanageble + # Same installPhase as in buildPythonApplication but without --old-and-unmanageble # install flag. installPhase = '' runHook preInstall diff --git a/pkgs/applications/misc/hamster-time-tracker/default.nix b/pkgs/applications/misc/hamster-time-tracker/default.nix index 52298e6c297..1732a7e1fb0 100644 --- a/pkgs/applications/misc/hamster-time-tracker/default.nix +++ b/pkgs/applications/misc/hamster-time-tracker/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, buildPythonPackage, docbook2x, libxslt, gnome_doc_utils +{ stdenv, fetchzip, buildPythonApplication, docbook2x, libxslt, gnome_doc_utils , intltool, dbus_glib, pygobject, pygtk, pyxdg, gnome_python, dbus, sqlite3 , hicolor_icon_theme }: @@ -8,7 +8,7 @@ # # WARNING:root:Could not import wnck - workspace tracking will be disabled -buildPythonPackage rec { +buildPythonApplication rec { name = "hamster-time-tracker-1.04"; namePrefix = ""; diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix index 22610c853e3..52a4f0dee75 100644 --- a/pkgs/applications/misc/khal/default.nix +++ b/pkgs/applications/misc/khal/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgs, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "0.7.0"; name = "khal-${version}"; diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix index 0c88314ed02..dae5ea4075f 100644 --- a/pkgs/applications/misc/khard/default.nix +++ b/pkgs/applications/misc/khard/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgs, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "0.8.1"; name = "khard-${version}"; namePrefix = ""; diff --git a/pkgs/applications/misc/loxodo/default.nix b/pkgs/applications/misc/loxodo/default.nix index 05d29ce7e09..f4243285e8e 100644 --- a/pkgs/applications/misc/loxodo/default.nix +++ b/pkgs/applications/misc/loxodo/default.nix @@ -3,7 +3,7 @@ let py = python27Packages; python = py.python; in -py.buildPythonPackage rec { +py.buildPythonApplication rec { name = "loxodo-0.20150124"; src = fetchgit { diff --git a/pkgs/applications/misc/ocropus/default.nix b/pkgs/applications/misc/ocropus/default.nix index 0e6b13f9a28..7e066fbc591 100644 --- a/pkgs/applications/misc/ocropus/default.nix +++ b/pkgs/applications/misc/ocropus/default.nix @@ -17,7 +17,7 @@ let ]; in -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "ocropus-${version}"; version = "20150316"; diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index 3e8b35ba435..67b351ba906 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "OctoPrint-${version}"; version = "1.2.9"; diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 801be43220d..829ae11fc7e 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, octoprint, pythonPackages }: let - buildPlugin = args: pythonPackages.buildPythonPackage (args // { + buildPlugin = args: pythonPackages.buildPythonApplication (args // { buildInputs = (args.buildInputs or []) ++ [ octoprint ]; }); in { diff --git a/pkgs/applications/misc/pdfdiff/default.nix b/pkgs/applications/misc/pdfdiff/default.nix index 43b98035343..90149263644 100644 --- a/pkgs/applications/misc/pdfdiff/default.nix +++ b/pkgs/applications/misc/pdfdiff/default.nix @@ -2,7 +2,7 @@ let py = pythonPackages; in -py.buildPythonPackage rec { +py.buildPythonApplication rec { name = "pdfdiff-${version}"; version = "0.92"; diff --git a/pkgs/applications/misc/pitz/default.nix b/pkgs/applications/misc/pitz/default.nix index e4f097469a4..1eb65a59470 100644 --- a/pkgs/applications/misc/pitz/default.nix +++ b/pkgs/applications/misc/pitz/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, buildPythonPackage, tempita, jinja2, pyyaml, clepy, mock +{ stdenv, fetchurl, buildPythonApplication, tempita, jinja2, pyyaml, clepy, mock , nose, decorator, docutils }: @@ -11,7 +11,7 @@ # pitz-shell is not the primary interface, so it is not critical to have it # working. Concider fixing pitz upstream. -buildPythonPackage rec { +buildPythonApplication rec { name = "pitz-1.2.4"; namePrefix = ""; diff --git a/pkgs/applications/misc/printrun/default.nix b/pkgs/applications/misc/printrun/default.nix index 7420441850b..27a55f4464f 100644 --- a/pkgs/applications/misc/printrun/default.nix +++ b/pkgs/applications/misc/printrun/default.nix @@ -1,6 +1,6 @@ { stdenv, python27Packages, fetchFromGitHub }: -python27Packages.buildPythonPackage rec { +python27Packages.buildPythonApplication rec { name = "printrun-20150310"; src = fetchFromGitHub { diff --git a/pkgs/applications/misc/pytrainer/default.nix b/pkgs/applications/misc/pytrainer/default.nix index 2f731fea1b0..bc6b4e16a37 100644 --- a/pkgs/applications/misc/pytrainer/default.nix +++ b/pkgs/applications/misc/pytrainer/default.nix @@ -11,7 +11,7 @@ let in -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "pytrainer-${version}"; version = "1.10.0"; diff --git a/pkgs/applications/misc/ranger/default.nix b/pkgs/applications/misc/ranger/default.nix index 19a0582a79c..14ae58a2932 100644 --- a/pkgs/applications/misc/ranger/default.nix +++ b/pkgs/applications/misc/ranger/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, python, w3m, file }: +{ stdenv, fetchurl, buildPythonApplication, python, w3m, file }: -buildPythonPackage rec { +buildPythonApplication rec { name = "ranger-1.7.2"; meta = { diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix index 2126ce23d3a..68097c2e254 100644 --- a/pkgs/applications/misc/rtv/default.nix +++ b/pkgs/applications/misc/rtv/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "1.8.0"; name = "rtv-${version}"; diff --git a/pkgs/applications/misc/solaar/default.nix b/pkgs/applications/misc/solaar/default.nix index 9a199c7ee49..55153d25cf9 100644 --- a/pkgs/applications/misc/solaar/default.nix +++ b/pkgs/applications/misc/solaar/default.nix @@ -1,5 +1,5 @@ {fetchurl, stdenv, gtk3, python34Packages, gobjectIntrospection}: -python34Packages.buildPythonPackage rec { +python34Packages.buildPythonApplication rec { name = "solaar-${version}"; version = "0.9.2"; namePrefix = ""; diff --git a/pkgs/applications/misc/zscroll/default.nix b/pkgs/applications/misc/zscroll/default.nix index 91e6c33310d..4d9197c8fd4 100644 --- a/pkgs/applications/misc/zscroll/default.nix +++ b/pkgs/applications/misc/zscroll/default.nix @@ -2,7 +2,7 @@ let version = "1.0"; in -python3Packages.buildPythonPackage { +python3Packages.buildPythonApplication { name = "zscroll-${version}"; # don't prefix with python version namePrefix = ""; diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 61b02d2a639..1be28829e35 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, python, buildPythonPackage, qtmultimedia, pyqt5 +{ stdenv, fetchurl, python, buildPythonApplication, qtmultimedia, pyqt5 , jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good , gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking }: let version = "0.5.1"; in -buildPythonPackage rec { +buildPythonApplication rec { name = "qutebrowser-${version}"; namePrefix = ""; diff --git a/pkgs/applications/networking/feedreaders/canto-curses/default.nix b/pkgs/applications/networking/feedreaders/canto-curses/default.nix index 8db1dac3b4b..37736d6edd7 100644 --- a/pkgs/applications/networking/feedreaders/canto-curses/default.nix +++ b/pkgs/applications/networking/feedreaders/canto-curses/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }: -python34Packages.buildPythonPackage rec { +python34Packages.buildPythonApplication rec { version = "0.9.6"; name = "canto-curses-${version}"; diff --git a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix index 0de38c259a3..b6f0ff19dc3 100644 --- a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix +++ b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, python34Packages, }: -python34Packages.buildPythonPackage rec { +python34Packages.buildPythonApplication rec { version = "0.9.5"; name = "canto-daemon-${version}"; namePrefix = ""; diff --git a/pkgs/applications/networking/feedreaders/rawdog/default.nix b/pkgs/applications/networking/feedreaders/rawdog/default.nix index e5e8f823d27..eca53ccf2ec 100644 --- a/pkgs/applications/networking/feedreaders/rawdog/default.nix +++ b/pkgs/applications/networking/feedreaders/rawdog/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "rawdog-${version}"; version = "2.21"; diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 9c75af2c77f..7b0e4d70fd9 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pythonPackages, pyqt4, cython, libvncserver, zlib, twisted , gnutls, libvpx }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "blink-${version}"; version = "1.4.2"; diff --git a/pkgs/applications/networking/mailreaders/mailnag/default.nix b/pkgs/applications/networking/mailreaders/mailnag/default.nix index 4818de49e42..673856e062a 100644 --- a/pkgs/applications/networking/mailreaders/mailnag/default.nix +++ b/pkgs/applications/networking/mailreaders/mailnag/default.nix @@ -1,9 +1,9 @@ -{ stdenv, buildPythonPackage, fetchurl, gettext, gtk3, pythonPackages +{ stdenv, buildPythonApplication, fetchurl, gettext, gtk3, pythonPackages , gdk_pixbuf, libnotify, gst_all_1 , libgnome_keyring3 ? null, networkmanager ? null }: -buildPythonPackage rec { +buildPythonApplication rec { name = "mailnag-${version}"; version = "1.1.0"; diff --git a/pkgs/applications/networking/mailreaders/mailpile/default.nix b/pkgs/applications/networking/mailreaders/mailpile/default.nix index c43944dc597..0ace6a01b3f 100644 --- a/pkgs/applications/networking/mailreaders/mailpile/default.nix +++ b/pkgs/applications/networking/mailreaders/mailpile/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchgit, pythonPackages, gnupg1orig, makeWrapper, openssl }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "mailpile-${version}"; version = "0.4.1"; diff --git a/pkgs/applications/office/keepnote/default.nix b/pkgs/applications/office/keepnote/default.nix index 409da36b264..d4790edbb3e 100644 --- a/pkgs/applications/office/keepnote/default.nix +++ b/pkgs/applications/office/keepnote/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages, pygtk }: +{ stdenv, fetchurl, buildPythonApplication, pythonPackages, pygtk }: -buildPythonPackage { +buildPythonApplication { name = "keepnote-0.7.8"; namePrefix = ""; diff --git a/pkgs/applications/office/zim/default.nix b/pkgs/applications/office/zim/default.nix index d5163eef4d8..4d2396e8a11 100644 --- a/pkgs/applications/office/zim/default.nix +++ b/pkgs/applications/office/zim/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, buildPythonPackage, pythonPackages, pygtk, pygobject, python }: +{ stdenv, lib, fetchurl, buildPythonApplication, pythonPackages, pygtk, pygobject, python }: # # TODO: Declare configuration options for the following optional dependencies: @@ -7,7 +7,7 @@ # - pyxdg: Need to make it work first (see setupPyInstallFlags). # -buildPythonPackage rec { +buildPythonApplication rec { name = "zim-${version}"; version = "0.63"; namePrefix = ""; diff --git a/pkgs/applications/science/spyder/default.nix b/pkgs/applications/science/spyder/default.nix index 9e74a233236..73847624e85 100644 --- a/pkgs/applications/science/spyder/default.nix +++ b/pkgs/applications/science/spyder/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, unzip, buildPythonPackage, makeDesktopItem +{ stdenv, fetchurl, unzip, buildPythonApplication, makeDesktopItem # mandatory , pyside # recommended @@ -7,7 +7,7 @@ , ipython ? null, pylint ? null, pep8 ? null }: -buildPythonPackage rec { +buildPythonApplication rec { name = "spyder-${version}"; version = "2.3.8"; namePrefix = ""; diff --git a/pkgs/applications/version-management/git-and-tools/git-cola/default.nix b/pkgs/applications/version-management/git-and-tools/git-cola/default.nix index c10ab14f639..44a617d70e1 100644 --- a/pkgs/applications/version-management/git-and-tools/git-cola/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-cola/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python, pythonPackages, makeWrapper, gettext }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "git-cola-${version}"; version = "2.2.1"; diff --git a/pkgs/applications/version-management/git-review/default.nix b/pkgs/applications/version-management/git-review/default.nix index fb6d542f479..de934db5f3b 100644 --- a/pkgs/applications/version-management/git-review/default.nix +++ b/pkgs/applications/version-management/git-review/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, python} : -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "git-review-${version}"; version = "1.25.0"; diff --git a/pkgs/applications/version-management/gitinspector/default.nix b/pkgs/applications/version-management/gitinspector/default.nix index 43df0e5b885..4e440d4bc6a 100644 --- a/pkgs/applications/version-management/gitinspector/default.nix +++ b/pkgs/applications/version-management/gitinspector/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchzip, buildPythonPackage }: +{ stdenv, fetchzip, buildPythonApplication }: -buildPythonPackage rec { +buildPythonApplication rec { name = "gitinspector-${version}"; version = "0.4.1"; namePrefix = ""; diff --git a/pkgs/applications/version-management/meld/default.nix b/pkgs/applications/version-management/meld/default.nix index 2f7c4af0024..d25decf35eb 100644 --- a/pkgs/applications/version-management/meld/default.nix +++ b/pkgs/applications/version-management/meld/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, itstool, buildPythonPackage, python27, intltool, makeWrapper +{ stdenv, fetchurl, itstool, buildPythonApplication, python27, intltool, makeWrapper , libxml2, pygobject3, gobjectIntrospection, gtk3, gnome3, pycairo, cairo }: @@ -8,7 +8,7 @@ let version = "${minor}.0"; in -buildPythonPackage rec { +buildPythonApplication rec { name = "meld-${version}"; namePrefix = ""; diff --git a/pkgs/applications/version-management/peru/default.nix b/pkgs/applications/version-management/peru/default.nix index d97aee23388..40e7d2f1883 100644 --- a/pkgs/applications/version-management/peru/default.nix +++ b/pkgs/applications/version-management/peru/default.nix @@ -4,7 +4,7 @@ let version = "0.2.3"; in -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { # Do not prefix name with python specific version identifier. namePrefix = ""; diff --git a/pkgs/applications/version-management/rabbitvcs/default.nix b/pkgs/applications/version-management/rabbitvcs/default.nix index 100e854f29b..58b29c10ae3 100644 --- a/pkgs/applications/version-management/rabbitvcs/default.nix +++ b/pkgs/applications/version-management/rabbitvcs/default.nix @@ -1,5 +1,5 @@ { fetchFromGitHub, lib, python2Packages, meld, subversion, gvfs, xdg_utils }: -python2Packages.buildPythonPackage rec { +python2Packages.buildPythonApplication rec { name = "rabbitvcs-${version}"; version = "0.16"; namePrefix = ""; diff --git a/pkgs/applications/version-management/tailor/default.nix b/pkgs/applications/version-management/tailor/default.nix index ebc0906fc6b..dde09dfe22d 100644 --- a/pkgs/applications/version-management/tailor/default.nix +++ b/pkgs/applications/version-management/tailor/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "tailor-${version}"; version = "0.9.35"; diff --git a/pkgs/applications/version-management/tortoisehg/default.nix b/pkgs/applications/version-management/tortoisehg/default.nix index 5e95b408bf7..ec20122d0ce 100644 --- a/pkgs/applications/version-management/tortoisehg/default.nix +++ b/pkgs/applications/version-management/tortoisehg/default.nix @@ -1,6 +1,6 @@ { pkgs, lib, mercurial, pyPackages ? pkgs.python27Packages }: -pkgs.buildPythonPackage rec { +pkgs.buildPythonApplication rec { name = "tortoisehg-${version}"; version = "3.6"; namePrefix = ""; diff --git a/pkgs/applications/video/devede/default.nix b/pkgs/applications/video/devede/default.nix index 6520f7ac21f..ce44377260e 100644 --- a/pkgs/applications/video/devede/default.nix +++ b/pkgs/applications/video/devede/default.nix @@ -1,9 +1,9 @@ -{ pkgs, stdenv, fetchurl, pythonPackages, buildPythonPackage, pygtk, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor }: +{ pkgs, stdenv, fetchurl, pythonPackages, buildPythonApplication, pygtk, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor }: let inherit (pythonPackages) dbus; -in buildPythonPackage rec { +in buildPythonApplication rec { name = "devede-3.23.0"; namePrefix = ""; diff --git a/pkgs/applications/video/kazam/default.nix b/pkgs/applications/video/kazam/default.nix index 17bf282a459..7217f4746c8 100644 --- a/pkgs/applications/video/kazam/default.nix +++ b/pkgs/applications/video/kazam/default.nix @@ -2,7 +2,7 @@ , gtk3, libwnck3, keybinder, intltool, libcanberra }: -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { name = "kazam-${version}"; version = "1.4.3"; namePrefix = ""; diff --git a/pkgs/applications/video/key-mon/default.nix b/pkgs/applications/video/key-mon/default.nix index 5d1a0e4a95b..12fc7151cd0 100644 --- a/pkgs/applications/video/key-mon/default.nix +++ b/pkgs/applications/video/key-mon/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, gnome, librsvg, pygtk, pythonPackages }: +{ stdenv, fetchurl, buildPythonApplication, gnome, librsvg, pygtk, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { name = "key-mon-${version}"; version = "1.17"; namePrefix = ""; diff --git a/pkgs/applications/video/miro/default.nix b/pkgs/applications/video/miro/default.nix index 6585306b289..66f249b8e4a 100644 --- a/pkgs/applications/video/miro/default.nix +++ b/pkgs/applications/video/miro/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, python, buildPythonPackage, pythonPackages, pkgconfig +{ stdenv, fetchurl, python, buildPythonApplication, pythonPackages, pkgconfig , pyrex096, ffmpeg, boost, glib, pygobject, gtk2, webkitgtk2, libsoup, pygtk , taglib, sqlite, pycurl, mutagen, pycairo, pythonDBus, pywebkitgtk , libtorrentRasterbar, glib_networking, gsettings_desktop_schemas @@ -10,7 +10,7 @@ assert enableBonjour -> avahi != null; with stdenv.lib; -buildPythonPackage rec { +buildPythonApplication rec { name = "miro-${version}"; namePrefix = ""; version = "6.0"; diff --git a/pkgs/applications/virtualization/openstack/glance.nix b/pkgs/applications/virtualization/openstack/glance.nix index caa72f49b94..0aacbeed055 100644 --- a/pkgs/applications/virtualization/openstack/glance.nix +++ b/pkgs/applications/virtualization/openstack/glance.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pythonPackages, sqlite, which, strace }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "glance-${version}"; version = "11.0.0"; namePrefix = ""; diff --git a/pkgs/applications/virtualization/openstack/keystone.nix b/pkgs/applications/virtualization/openstack/keystone.nix index 3060dcb04cb..956f3b28152 100644 --- a/pkgs/applications/virtualization/openstack/keystone.nix +++ b/pkgs/applications/virtualization/openstack/keystone.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, xmlsec, which, openssl }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "keystone-${version}"; version = "8.0.0"; namePrefix = ""; diff --git a/pkgs/applications/virtualization/openstack/neutron.nix b/pkgs/applications/virtualization/openstack/neutron.nix index ce44ed2913c..0520fcfc027 100644 --- a/pkgs/applications/virtualization/openstack/neutron.nix +++ b/pkgs/applications/virtualization/openstack/neutron.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, xmlsec, which, dnsmasq }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "neutron-${version}"; version = "7.0.0"; namePrefix = ""; diff --git a/pkgs/applications/virtualization/openstack/nova.nix b/pkgs/applications/virtualization/openstack/nova.nix index ee139868ba0..20e250bf05c 100644 --- a/pkgs/applications/virtualization/openstack/nova.nix +++ b/pkgs/applications/virtualization/openstack/nova.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, openssl, openssh }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "nova-${version}"; version = "12.0.0"; namePrefix = ""; diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index d22072f1095..60599d18922 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -7,7 +7,7 @@ with stdenv.lib; with pythonPackages; -buildPythonPackage rec { +buildPythonApplication rec { name = "virt-manager-${version}"; version = "1.3.1"; namePrefix = ""; diff --git a/pkgs/applications/window-managers/qtile/default.nix b/pkgs/applications/window-managers/qtile/default.nix index 0dae8a76c77..f2f864506d3 100644 --- a/pkgs/applications/window-managers/qtile/default.nix +++ b/pkgs/applications/window-managers/qtile/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchFromGitHub, buildPythonPackage, python27Packages, pkgs }: +{ stdenv, fetchFromGitHub, buildPythonApplication, python27Packages, pkgs }: let cairocffi-xcffib = python27Packages.cairocffi.override { pythonPath = [ python27Packages.xcffib ]; }; in -buildPythonPackage rec { +buildPythonApplication rec { name = "qtile-${version}"; version = "0.10.4"; diff --git a/pkgs/development/arduino/ino/default.nix b/pkgs/development/arduino/ino/default.nix index 47c7c68c1ab..073a2339720 100644 --- a/pkgs/development/arduino/ino/default.nix +++ b/pkgs/development/arduino/ino/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages, picocom +{ stdenv, fetchurl, buildPythonApplication, pythonPackages, picocom , avrdude, arduino-core, avrgcclibc }: -buildPythonPackage rec { +buildPythonApplication rec { name = "ino-0.3.6"; namePrefix = ""; diff --git a/pkgs/development/tools/build-managers/buildbot-slave/default.nix b/pkgs/development/tools/build-managers/buildbot-slave/default.nix index 715b009a17e..30fbe056926 100644 --- a/pkgs/development/tools/build-managers/buildbot-slave/default.nix +++ b/pkgs/development/tools/build-managers/buildbot-slave/default.nix @@ -1,6 +1,6 @@ -{ stdenv, buildPythonPackage, fetchurl, coreutils, twisted }: +{ stdenv, buildPythonApplication, fetchurl, coreutils, twisted }: -buildPythonPackage (rec { +buildPythonApplication (rec { name = "buildbot-slave-0.8.10"; namePrefix = ""; diff --git a/pkgs/development/tools/build-managers/buildbot/default.nix b/pkgs/development/tools/build-managers/buildbot/default.nix index a7c4fb89007..99c1352b4fb 100644 --- a/pkgs/development/tools/build-managers/buildbot/default.nix +++ b/pkgs/development/tools/build-managers/buildbot/default.nix @@ -1,4 +1,4 @@ -{ stdenv, buildPythonPackage, fetchurl, twisted, dateutil, jinja2 +{ stdenv, buildPythonApplication, fetchurl, twisted, dateutil, jinja2 , sqlalchemy , sqlalchemy_migrate_0_7 , enableDebugClient ? false, pygobject ? null, pyGtkGlade ? null }: @@ -8,7 +8,7 @@ assert enableDebugClient -> pygobject != null && pyGtkGlade != null; -buildPythonPackage (rec { +buildPythonApplication (rec { name = "buildbot-0.8.12"; namePrefix = ""; diff --git a/pkgs/development/tools/devpi-client/default.nix b/pkgs/development/tools/devpi-client/default.nix index 5db62da06d8..f3db234cd96 100644 --- a/pkgs/development/tools/devpi-client/default.nix +++ b/pkgs/development/tools/devpi-client/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, python} : -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "devpi-client-${version}"; version = "2.3.2"; diff --git a/pkgs/development/tools/grabserial/default.nix b/pkgs/development/tools/grabserial/default.nix index bafde1f9687..34a45fa0b84 100644 --- a/pkgs/development/tools/grabserial/default.nix +++ b/pkgs/development/tools/grabserial/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchgit, buildPythonPackage, pythonPackages }: +{ stdenv, fetchgit, buildPythonApplication, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { name = "grabserial-20141120"; namePrefix = ""; diff --git a/pkgs/development/tools/misc/nixbang/default.nix b/pkgs/development/tools/misc/nixbang/default.nix index a97dc3a249a..ade9954021a 100644 --- a/pkgs/development/tools/misc/nixbang/default.nix +++ b/pkgs/development/tools/misc/nixbang/default.nix @@ -1,7 +1,7 @@ { lib, pythonPackages, fetchFromGitHub }: let version = "0.1.2"; in -pythonPackages.buildPythonPackage { +pythonPackages.buildPythonApplication { name = "nixbang-${version}"; namePrefix = ""; diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix index 029e76e0c99..44bf2ac855c 100644 --- a/pkgs/development/tools/misc/ycmd/default.nix +++ b/pkgs/development/tools/misc/ycmd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, cmake, python, llvmPackages, boost, pythonPackages, buildPythonPackage, makeWrapper +{ stdenv, fetchgit, cmake, python, llvmPackages, boost, pythonPackages, buildPythonApplication, makeWrapper }: stdenv.mkDerivation rec { diff --git a/pkgs/development/tools/profiling/gprof2dot/default.nix b/pkgs/development/tools/profiling/gprof2dot/default.nix index 38315116eeb..154c0da93d4 100644 --- a/pkgs/development/tools/profiling/gprof2dot/default.nix +++ b/pkgs/development/tools/profiling/gprof2dot/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages }: -pythonPackages.buildPythonPackage { +pythonPackages.buildPythonApplication { name = "gprof2dot-2015-04-27"; src = fetchFromGitHub { diff --git a/pkgs/development/tools/winpdb/default.nix b/pkgs/development/tools/winpdb/default.nix index fd6e0a99138..58a857c2214 100644 --- a/pkgs/development/tools/winpdb/default.nix +++ b/pkgs/development/tools/winpdb/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, wxPython, makeDesktopItem }: +{ stdenv, fetchurl, buildPythonApplication, wxPython, makeDesktopItem }: -buildPythonPackage rec { +buildPythonApplication rec { name = "winpdb-1.4.8"; namePrefix = ""; diff --git a/pkgs/games/mnemosyne/default.nix b/pkgs/games/mnemosyne/default.nix index 8624e168f92..d4f90a906d8 100644 --- a/pkgs/games/mnemosyne/default.nix +++ b/pkgs/games/mnemosyne/default.nix @@ -1,12 +1,12 @@ { stdenv , fetchurl -, buildPythonPackage +, buildPythonApplication , pyqt4 , pythonPackages }: let version = "2.3.2"; -in buildPythonPackage rec { +in buildPythonApplication rec { name = "mnemosyne-${version}"; src = fetchurl { url = "http://sourceforge.net/projects/mnemosyne-proj/files/mnemosyne/${name}/Mnemosyne-${version}.tar.gz"; diff --git a/pkgs/misc/frescobaldi/default.nix b/pkgs/misc/frescobaldi/default.nix index 0ccc0c7c6cf..04370424abb 100644 --- a/pkgs/misc/frescobaldi/default.nix +++ b/pkgs/misc/frescobaldi/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, lilypond, pyqt4, pygame }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "frescobaldi-${version}"; version = "2.0.16"; diff --git a/pkgs/os-specific/linux/iotop/default.nix b/pkgs/os-specific/linux/iotop/default.nix index 7481edeee7b..a83d4a2ad9f 100644 --- a/pkgs/os-specific/linux/iotop/default.nix +++ b/pkgs/os-specific/linux/iotop/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages }: +{ stdenv, fetchurl, buildPythonApplication, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { name = "iotop-0.6"; namePrefix = ""; diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 714ff9d002c..9165e03d79c 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -1,6 +1,6 @@ -{ pkgs, stdenv, buildPythonPackage, pythonPackages, fetchurl, fetchFromGitHub }: +{ pkgs, stdenv, buildPythonApplication, pythonPackages, fetchurl, fetchFromGitHub }: let - matrix-angular-sdk = buildPythonPackage rec { + matrix-angular-sdk = buildPythonApplication rec { name = "matrix-angular-sdk-${version}"; version = "0.6.6"; @@ -10,7 +10,7 @@ let }; }; in -buildPythonPackage rec { +buildPythonApplication rec { name = "matrix-synapse-${version}"; version = "0.12.0"; diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index 6b33f5833d8..4aa65a7d8bd 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -1,6 +1,6 @@ {stdenv, fetchFromGitHub, python3Packages}: -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { name = "xonsh-${version}"; version = "0.1.3"; diff --git a/pkgs/tools/X11/arandr/default.nix b/pkgs/tools/X11/arandr/default.nix index a6af7b99651..68355d0d8aa 100644 --- a/pkgs/tools/X11/arandr/default.nix +++ b/pkgs/tools/X11/arandr/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python, xrandr, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "arandr-0.1.8"; src = fetchurl { diff --git a/pkgs/tools/X11/winswitch/default.nix b/pkgs/tools/X11/winswitch/default.nix index ad7ac7c64c8..767edbc47d5 100644 --- a/pkgs/tools/X11/winswitch/default.nix +++ b/pkgs/tools/X11/winswitch/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages +{ stdenv, fetchurl, buildPythonApplication, pythonPackages , which, xpra, xmodmap }: let - base = buildPythonPackage rec { + base = buildPythonApplication rec { name = "winswitch-${version}"; namePrefix = ""; version = "0.12.16"; diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index c5b8db591c4..e0e12051bff 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages +{ stdenv, fetchurl, buildPythonApplication, pythonPackages , python, cython, pkgconfig , xorg, gtk, glib, pango, cairo, gdk_pixbuf, atk, pycairo , makeWrapper, xkbcomp, xorgserver, getopt, xauth, utillinux, which, fontsConf, xkeyboard_config , ffmpeg, x264, libvpx, libwebp , libfakeXinerama }: -buildPythonPackage rec { +buildPythonApplication rec { name = "xpra-0.15.3"; namePrefix = ""; diff --git a/pkgs/tools/X11/xpra/gtk3.nix b/pkgs/tools/X11/xpra/gtk3.nix index 6e485dc0a05..5b81ec0a7ed 100644 --- a/pkgs/tools/X11/xpra/gtk3.nix +++ b/pkgs/tools/X11/xpra/gtk3.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchurl, buildPythonPackage +{ stdenv, fetchurl, buildPythonApplication , python, cython, pkgconfig , xorg, gtk3, glib, pango, cairo, gdk_pixbuf, atk, pygobject3, pycairo, gobjectIntrospection , makeWrapper, xkbcomp, xorgserver, getopt, xauth, utillinux, which, fontsConf, xkeyboard_config , ffmpeg, x264, libvpx, libwebp , libfakeXinerama }: -buildPythonPackage rec { +buildPythonApplication rec { name = "xpra-0.14.19"; namePrefix = ""; diff --git a/pkgs/tools/admin/cli53/default.nix b/pkgs/tools/admin/cli53/default.nix index 2fa54796e4c..3248ac63bf7 100644 --- a/pkgs/tools/admin/cli53/default.nix +++ b/pkgs/tools/admin/cli53/default.nix @@ -1,6 +1,6 @@ -{ lib, buildPythonPackage, pythonPackages, fetchurl }: +{ lib, buildPythonApplication, pythonPackages, fetchurl }: -buildPythonPackage rec { +buildPythonApplication rec { name = "cli53-${version}"; namePrefix = ""; # Suppress "python27-" name prefix version = "0.4.4"; diff --git a/pkgs/tools/admin/letsencrypt/default.nix b/pkgs/tools/admin/letsencrypt/default.nix index 2c74a677b91..516fc20c5a7 100644 --- a/pkgs/tools/admin/letsencrypt/default.nix +++ b/pkgs/tools/admin/letsencrypt/default.nix @@ -1,6 +1,6 @@ { stdenv, pythonPackages, fetchurl, dialog }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "0.1.0"; name = "letsencrypt-${version}"; diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix index f6b352056fa..77c45e0ad3f 100644 --- a/pkgs/tools/admin/simp_le/default.nix +++ b/pkgs/tools/admin/simp_le/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "simp_le-2016-01-09"; src = fetchFromGitHub { diff --git a/pkgs/tools/audio/beets/alternatives-plugin.nix b/pkgs/tools/audio/beets/alternatives-plugin.nix index 1b0c9b3992b..75f74e71be5 100644 --- a/pkgs/tools/audio/beets/alternatives-plugin.nix +++ b/pkgs/tools/audio/beets/alternatives-plugin.nix @@ -1,6 +1,6 @@ -{ stdenv, buildPythonPackage, fetchFromGitHub, pythonPackages }: +{ stdenv, buildPythonApplication, fetchFromGitHub, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { name = "beets-alternatives-${version}"; version = "0.8.2"; diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 91407331d7c..4532d642411 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, writeScript, glibcLocales -, buildPythonPackage, pythonPackages, python, imagemagick +, buildPythonApplication, pythonPackages, python, imagemagick , enableAcousticbrainz ? true , enableAcoustid ? true @@ -68,7 +68,7 @@ let testShell = "${bashInteractive}/bin/bash --norc"; completion = "${bashCompletion}/share/bash-completion/bash_completion"; -in buildPythonPackage rec { +in buildPythonApplication rec { name = "beets-${version}"; version = "1.3.17"; namePrefix = ""; @@ -103,7 +103,7 @@ in buildPythonPackage rec { ++ optional enableThumbnails pythonPackages.pyxdg ++ optional enableWeb pythonPackages.flask ++ optional enableAlternatives (import ./alternatives-plugin.nix { - inherit stdenv buildPythonPackage pythonPackages fetchFromGitHub; + inherit stdenv buildPythonApplication pythonPackages fetchFromGitHub; }); buildInputs = with pythonPackages; [ diff --git a/pkgs/tools/backup/attic/default.nix b/pkgs/tools/backup/attic/default.nix index 0e2462c5ec8..4f659428c00 100644 --- a/pkgs/tools/backup/attic/default.nix +++ b/pkgs/tools/backup/attic/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, python3Packages, openssl, acl }: -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { name = "attic-${version}"; version = "0.16"; namePrefix = ""; diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix index 1ea8095bd38..208c3d4b1aa 100644 --- a/pkgs/tools/backup/borg/default.nix +++ b/pkgs/tools/backup/borg/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python3Packages, acl, lz4, openssl }: -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { name = "borgbackup-${version}"; version = "0.30.0"; namePrefix = ""; diff --git a/pkgs/tools/backup/obnam/default.nix b/pkgs/tools/backup/obnam/default.nix index c287efe8e11..0df9fa9d39f 100644 --- a/pkgs/tools/backup/obnam/default.nix +++ b/pkgs/tools/backup/obnam/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python, pythonPackages, pycrypto, attr }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "obnam-${version}"; version = "1.19.1"; diff --git a/pkgs/tools/backup/s3ql/default.nix b/pkgs/tools/backup/s3ql/default.nix index b455c672b10..e94af89a7c6 100644 --- a/pkgs/tools/backup/s3ql/default.nix +++ b/pkgs/tools/backup/s3ql/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python3Packages, sqlite }: -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { name = "${pname}-${version}"; pname = "s3ql"; version = "2.13"; diff --git a/pkgs/tools/backup/wal-e/default.nix b/pkgs/tools/backup/wal-e/default.nix index 025a998aed4..3b66ac1b491 100644 --- a/pkgs/tools/backup/wal-e/default.nix +++ b/pkgs/tools/backup/wal-e/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages, lzop, postgresql, pv }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "wal-e-${version}"; version = "0.6.10"; diff --git a/pkgs/tools/compression/dtrx/default.nix b/pkgs/tools/compression/dtrx/default.nix index 343709dd957..d412a4e433e 100644 --- a/pkgs/tools/compression/dtrx/default.nix +++ b/pkgs/tools/compression/dtrx/default.nix @@ -1,6 +1,6 @@ {stdenv, fetchurl, pythonPackages}: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "dtrx-${version}"; version = "7.1"; diff --git a/pkgs/tools/filesystems/gitfs/default.nix b/pkgs/tools/filesystems/gitfs/default.nix index cd79f5db85b..9c44394697f 100644 --- a/pkgs/tools/filesystems/gitfs/default.nix +++ b/pkgs/tools/filesystems/gitfs/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, python, buildPythonPackage, pythonPackages }: +{ stdenv, fetchFromGitHub, python, buildPythonApplication, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { name = "gitfs-0.2.5"; src = fetchFromGitHub { diff --git a/pkgs/tools/filesystems/nixpart/0.4/blivet.nix b/pkgs/tools/filesystems/nixpart/0.4/blivet.nix index d4129f4d390..d3b3b716ffa 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/blivet.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/blivet.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchurl, buildPythonPackage, pykickstart, pyparted, pyblock +{ stdenv, fetchurl, buildPythonApplication, pykickstart, pyparted, pyblock , libselinux, cryptsetup, multipath_tools, lsof, utillinux , useNixUdev ? true, udev ? null }: assert useNixUdev -> udev != null; -buildPythonPackage rec { +buildPythonApplication rec { name = "blivet-${version}"; version = "0.17-1"; diff --git a/pkgs/tools/filesystems/nixpart/0.4/default.nix b/pkgs/tools/filesystems/nixpart/0.4/default.nix index 01a3caafc5d..1d983816895 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/default.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, python, buildPythonPackage +{ stdenv, fetchurl, python, buildPythonApplication # Propagated to blivet , useNixUdev ? true # No longer needed, but kept for backwards-compatibility with older NixOps. @@ -9,7 +9,7 @@ let blivet = import ./blivet.nix { - inherit stdenv fetchurl buildPythonPackage; + inherit stdenv fetchurl buildPythonApplication; inherit pykickstart pyparted pyblock cryptsetup multipath_tools; inherit useNixUdev; inherit (pkgs) lsof utillinux udev; @@ -48,15 +48,15 @@ let }; pykickstart = import ./pykickstart.nix { - inherit stdenv fetchurl python buildPythonPackage urlgrabber; + inherit stdenv fetchurl python buildPythonApplication urlgrabber; }; pyparted = import ./pyparted.nix { - inherit stdenv fetchurl python buildPythonPackage parted; + inherit stdenv fetchurl python buildPythonApplication parted; inherit (pkgs) pkgconfig e2fsprogs; }; -in buildPythonPackage rec { +in buildPythonApplication rec { name = "nixpart-${version}"; version = "0.4.1"; diff --git a/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix b/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix index 7bc3f54c236..86479126d39 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix @@ -1,6 +1,6 @@ -{ stdenv, python, buildPythonPackage, fetchurl, urlgrabber }: +{ stdenv, python, buildPythonApplication, fetchurl, urlgrabber }: -buildPythonPackage rec { +buildPythonApplication rec { name = "pykickstart-${version}"; version = "1.99.39"; diff --git a/pkgs/tools/filesystems/nixpart/0.4/pyparted.nix b/pkgs/tools/filesystems/nixpart/0.4/pyparted.nix index 67f318c863e..721e5185be3 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/pyparted.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/pyparted.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, pkgconfig, python, buildPythonPackage, parted, e2fsprogs }: +{ stdenv, fetchurl, pkgconfig, python, buildPythonApplication, parted, e2fsprogs }: -buildPythonPackage rec { +buildPythonApplication rec { name = "pyparted-${version}"; version = "3.10"; diff --git a/pkgs/tools/filesystems/nixpart/default.nix b/pkgs/tools/filesystems/nixpart/default.nix index 895ae99c309..ce00367c771 100644 --- a/pkgs/tools/filesystems/nixpart/default.nix +++ b/pkgs/tools/filesystems/nixpart/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, blivet }: +{ stdenv, fetchurl, buildPythonApplication, blivet }: -buildPythonPackage rec { +buildPythonApplication rec { name = "nixpart-${version}"; version = "1.0.0"; diff --git a/pkgs/tools/misc/apt-offline/default.nix b/pkgs/tools/misc/apt-offline/default.nix index 219cb2139f5..e479167dc15 100644 --- a/pkgs/tools/misc/apt-offline/default.nix +++ b/pkgs/tools/misc/apt-offline/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, bash, buildPythonPackage }: +{ stdenv, fetchurl, bash, buildPythonApplication }: -buildPythonPackage rec { +buildPythonApplication rec { version = "1.3"; name = "apt-offline-${version}"; diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index 6715f1ac38f..304f721ee8d 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -4,7 +4,7 @@ , enableBloat ? false }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "diffoscope-${version}"; version = "45"; diff --git a/pkgs/tools/misc/i3minator/default.nix b/pkgs/tools/misc/i3minator/default.nix index 0c3907b89bf..45fd27b7f4f 100644 --- a/pkgs/tools/misc/i3minator/default.nix +++ b/pkgs/tools/misc/i3minator/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, pythonPackages, python }: +{ stdenv, fetchurl, buildPythonApplication, pythonPackages, python }: -buildPythonPackage rec { +buildPythonApplication rec { name = "i3minator-${version}"; version = "0.0.4"; diff --git a/pkgs/tools/misc/trash-cli/default.nix b/pkgs/tools/misc/trash-cli/default.nix index 78835afddef..e3adbfe3887 100644 --- a/pkgs/tools/misc/trash-cli/default.nix +++ b/pkgs/tools/misc/trash-cli/default.nix @@ -2,7 +2,7 @@ assert stdenv.isLinux; -python2Packages.buildPythonPackage rec { +python2Packages.buildPythonApplication rec { name = "trash-cli-${version}"; version = "0.12.9.14"; namePrefix = ""; diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix index df7cbc04a14..d6789bf52bc 100644 --- a/pkgs/tools/misc/vdirsyncer/default.nix +++ b/pkgs/tools/misc/vdirsyncer/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "0.9.0"; name = "vdirsyncer-${version}"; namePrefix = ""; diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 8baa5cc9174..9bb3250675d 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, buildPythonPackage, makeWrapper, ffmpeg, zip +{ stdenv, fetchurl, buildPythonApplication, makeWrapper, ffmpeg, zip , pandoc ? null }: @@ -9,7 +9,7 @@ # case someone wants to use this derivation to build a Git version of # the tool that doesn't have the formatted man page included. -buildPythonPackage rec { +buildPythonApplication rec { name = "youtube-dl-${version}"; version = "2016.01.01"; diff --git a/pkgs/tools/networking/getmail/default.nix b/pkgs/tools/networking/getmail/default.nix index 8dd288b5588..d11e154817d 100644 --- a/pkgs/tools/networking/getmail/default.nix +++ b/pkgs/tools/networking/getmail/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage }: +{ stdenv, fetchurl, buildPythonApplication }: -buildPythonPackage rec { +buildPythonApplication rec { version = "4.49.0"; name = "getmail-${version}"; namePrefix = ""; diff --git a/pkgs/tools/networking/gmvault/default.nix b/pkgs/tools/networking/gmvault/default.nix index aa52e4f3ae2..4ccd09ac555 100644 --- a/pkgs/tools/networking/gmvault/default.nix +++ b/pkgs/tools/networking/gmvault/default.nix @@ -1,6 +1,6 @@ -{ pkgs, fetchurl, buildPythonPackage, pythonPackages }: +{ pkgs, fetchurl, buildPythonApplication, pythonPackages }: -buildPythonPackage rec { +buildPythonApplication rec { version = "1.8.1-beta"; name = "gmvault-${version}"; diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix index cc1531961b3..a3c52f7dd50 100644 --- a/pkgs/tools/networking/httpie/default.nix +++ b/pkgs/tools/networking/httpie/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "httpie-0.9.2"; namePrefix = ""; diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix index 5331f71a96a..00061b3aeff 100644 --- a/pkgs/tools/networking/offlineimap/default.nix +++ b/pkgs/tools/networking/offlineimap/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, buildPythonPackage, sqlite3 }: +{ stdenv, fetchFromGitHub, buildPythonApplication, sqlite3 }: -buildPythonPackage rec { +buildPythonApplication rec { version = "6.6.1"; name = "offlineimap-${version}"; namePrefix = ""; diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix index dae985febbb..5f1d6b4ef1a 100644 --- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix +++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix @@ -5,7 +5,7 @@ # store path. The problem appears to be non-fatal, but there's probably # some loss of functionality because of it. -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { version = "1.10.2"; name = "tahoe-lafs-${version}"; namePrefix = ""; diff --git a/pkgs/tools/networking/s3cmd/default.nix b/pkgs/tools/networking/s3cmd/default.nix index 2287671aef2..0ff741ef7e2 100644 --- a/pkgs/tools/networking/s3cmd/default.nix +++ b/pkgs/tools/networking/s3cmd/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "s3cmd-1.5.2"; src = fetchurl { diff --git a/pkgs/tools/networking/speedtest-cli/default.nix b/pkgs/tools/networking/speedtest-cli/default.nix index 4e1391dfeb9..10b35298461 100644 --- a/pkgs/tools/networking/speedtest-cli/default.nix +++ b/pkgs/tools/networking/speedtest-cli/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "speedtest-cli-${version}"; version = "0.3.1"; namePrefix = ""; diff --git a/pkgs/tools/networking/urlwatch/default.nix b/pkgs/tools/networking/urlwatch/default.nix index ef420961a1f..8ad93095160 100644 --- a/pkgs/tools/networking/urlwatch/default.nix +++ b/pkgs/tools/networking/urlwatch/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python3Packages }: -python3Packages.buildPythonPackage rec { +python3Packages.buildPythonApplication rec { name = "urlwatch-2.0"; src = fetchurl { diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix index b9b9eee8d16..023ec07dba1 100644 --- a/pkgs/tools/package-management/nixops/generic.nix +++ b/pkgs/tools/package-management/nixops/generic.nix @@ -3,7 +3,7 @@ , src, version }: -pythonPackages.buildPythonPackage { +pythonPackages.buildPythonApplication { name = "nixops-${version}"; namePrefix = ""; diff --git a/pkgs/tools/package-management/nox/default.nix b/pkgs/tools/package-management/nox/default.nix index 92edd915ad7..89e72307ead 100644 --- a/pkgs/tools/package-management/nox/default.nix +++ b/pkgs/tools/package-management/nox/default.nix @@ -1,6 +1,6 @@ { lib, pythonPackages, fetchurl }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "nox-${version}"; version = "0.0.2"; namePrefix = ""; diff --git a/pkgs/tools/package-management/python2nix/default.nix b/pkgs/tools/package-management/python2nix/default.nix index 1e84a81e524..0bc92314e02 100644 --- a/pkgs/tools/package-management/python2nix/default.nix +++ b/pkgs/tools/package-management/python2nix/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "python2nix-20140927"; src = fetchFromGitHub { diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 667157978a3..9443eac01da 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -2,7 +2,7 @@ let version = "0.9.3"; in -pythonPackages.buildPythonPackage { +pythonPackages.buildPythonApplication { name = "fail2ban-${version}"; namePrefix = ""; diff --git a/pkgs/tools/security/knockknock/default.nix b/pkgs/tools/security/knockknock/default.nix index 6258f231590..089dd0de2bd 100644 --- a/pkgs/tools/security/knockknock/default.nix +++ b/pkgs/tools/security/knockknock/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, buildPythonPackage, python, pycrypto, hping }: +{ stdenv, fetchFromGitHub, buildPythonApplication, python, pycrypto, hping }: -buildPythonPackage rec { +buildPythonApplication rec { rev = "bf14bbff"; name = "knockknock-r${rev}"; diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index b7cefdd86ea..b78eb43782e 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -1,7 +1,7 @@ { stdenv, pythonPackages, fetchurl, makeWrapper, pandoc , coreutils, iptables, nettools, openssh, procps }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "sshuttle-${version}"; version = "0.76"; diff --git a/pkgs/tools/security/volatility/default.nix b/pkgs/tools/security/volatility/default.nix index 6aa3a9d5ea1..bed7d536957 100644 --- a/pkgs/tools/security/volatility/default.nix +++ b/pkgs/tools/security/volatility/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, buildPythonPackage, pycrypto }: +{ stdenv, fetchurl, buildPythonApplication, pycrypto }: -buildPythonPackage rec { +buildPythonApplication rec { namePrefix = ""; name = "volatility-2.4"; diff --git a/pkgs/tools/system/honcho/default.nix b/pkgs/tools/system/honcho/default.nix index b52c1c0f636..5aca54ad918 100644 --- a/pkgs/tools/system/honcho/default.nix +++ b/pkgs/tools/system/honcho/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchzip, pythonPackages, buildPythonPackage }: +{ stdenv, fetchzip, pythonPackages, buildPythonApplication }: -let honcho = buildPythonPackage rec { +let honcho = buildPythonApplication rec { name = "honcho-${version}"; version = "0.6.6"; namePrefix = ""; diff --git a/pkgs/tools/text/grin/default.nix b/pkgs/tools/text/grin/default.nix index 2ea4a950145..da3a77e8d2e 100644 --- a/pkgs/tools/text/grin/default.nix +++ b/pkgs/tools/text/grin/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "grin-1.2.1"; namePrefix = ""; diff --git a/pkgs/tools/typesetting/odpdown/default.nix b/pkgs/tools/typesetting/odpdown/default.nix index 9ff33b2fb69..fe1e915e27b 100644 --- a/pkgs/tools/typesetting/odpdown/default.nix +++ b/pkgs/tools/typesetting/odpdown/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, buildPythonPackage, libreoffice, lpod, lxml, mistune, pillow +{ stdenv, fetchurl, buildPythonApplication, libreoffice, lpod, lxml, mistune, pillow , pygments }: -buildPythonPackage rec { +buildPythonApplication rec { name = "odpdown-${version}"; version = "0.4.1"; diff --git a/pkgs/tools/video/vnc2flv/default.nix b/pkgs/tools/video/vnc2flv/default.nix index 55f54e2cf3d..3675b5ab091 100644 --- a/pkgs/tools/video/vnc2flv/default.nix +++ b/pkgs/tools/video/vnc2flv/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "vnc2flv-20100207"; namePrefix = ""; diff --git a/pkgs/tools/virtualization/cloud-init/default.nix b/pkgs/tools/virtualization/cloud-init/default.nix index af2779e59e3..34b6226ff98 100644 --- a/pkgs/tools/virtualization/cloud-init/default.nix +++ b/pkgs/tools/virtualization/cloud-init/default.nix @@ -2,7 +2,7 @@ let version = "0.7.6"; -in pythonPackages.buildPythonPackage rec { +in pythonPackages.buildPythonApplication rec { name = "cloud-init-${version}"; namePrefix = ""; diff --git a/pkgs/tools/virtualization/euca2ools/default.nix b/pkgs/tools/virtualization/euca2ools/default.nix index a87dd568322..7a93d96036f 100644 --- a/pkgs/tools/virtualization/euca2ools/default.nix +++ b/pkgs/tools/virtualization/euca2ools/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchgit, which, pythonPackages }: -pythonPackages.buildPythonPackage rec { +pythonPackages.buildPythonApplication rec { name = "euca2ools-2.1.4"; namePrefix = ""; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 090dbc005ba..440040bac29 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3197,7 +3197,7 @@ let solvespace = callPackage ../applications/graphics/solvespace { }; sonata = callPackage ../applications/audio/sonata { - inherit (python3Packages) buildPythonPackage python isPy3k dbus pygobject3 mpd2; + inherit (python3Packages) buildPythonApplication python isPy3k dbus pygobject3 mpd2; }; sparsehash = callPackage ../development/libraries/sparsehash { }; @@ -13216,7 +13216,7 @@ let }; qutebrowser = qt55.callPackage ../applications/networking/browsers/qutebrowser { - inherit (python34Packages) buildPythonPackage python pyqt5 jinja2 pygments pyyaml pypeg2; + inherit (python34Packages) buildPythonApplication python pyqt5 jinja2 pygments pyyaml pypeg2; inherit (gst_all_1) gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav; }; @@ -14090,7 +14090,7 @@ let xpra = callPackage ../tools/X11/xpra { inherit (texFunctions) fontsConf; }; libfakeXinerama = callPackage ../tools/X11/xpra/libfakeXinerama.nix { }; #TODO: 'pil' is not available for python3, yet - xpraGtk3 = callPackage ../tools/X11/xpra/gtk3.nix { inherit (texFunctions) fontsConf; inherit (python3Packages) buildPythonPackage python cython pygobject3 pycairo; }; + xpraGtk3 = callPackage ../tools/X11/xpra/gtk3.nix { inherit (texFunctions) fontsConf; inherit (python3Packages) buildPythonApplication python cython pygobject3 pycairo; }; xrestop = callPackage ../tools/X11/xrestop { }; From c6f143307c10ca4ecf448c523267bc37fa10299e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 19 Feb 2016 17:00:19 +0300 Subject: [PATCH 069/291] uwsgi: refactor, throw sensible error if plugin is not found --- pkgs/servers/uwsgi/default.nix | 46 ++++++++++++++++++--------------- pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index abcbaa04b8c..2d447d3c82a 100644 --- a/pkgs/servers/uwsgi/default.nix +++ b/pkgs/servers/uwsgi/default.nix @@ -1,28 +1,35 @@ { stdenv, lib, fetchurl, pkgconfig, jansson -# plugins: list of strings, eg. [python2, python3] +# plugins: list of strings, eg. [ "python2" "python3" ] , plugins -, pam, withPAM ? stdenv.isLinux -, systemd, withSystemd ? stdenv.isLinux +, pam, withPAM ? false +, systemd, withSystemd ? false , python2, python3, ncurses }: -let pythonPlugin = pkg : { name = "python${if pkg ? isPy2 then "2" else "3"}"; - interpreter = pkg; +let pythonPlugin = pkg : lib.nameValuePair "python${if pkg ? isPy2 then "2" else "3"}" { + interpreter = pkg.interpreter; path = "plugins/python"; - deps = [ pkg ncurses ]; + inputs = [ pkg ncurses ]; install = '' install -Dm644 uwsgidecorators.py $out/${pkg.sitePackages}/uwsgidecorators.py ${pkg.executable} -m compileall $out/${pkg.sitePackages}/ ${pkg.executable} -O -m compileall $out/${pkg.sitePackages}/ ''; }; - available = [ (pythonPlugin python2) + + available = lib.listToAttrs [ + (pythonPlugin python2) (pythonPlugin python3) ]; - needed = builtins.filter (x: lib.any (y: x.name == y) plugins) available; -in -assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; + getPlugin = name: + let all = lib.concatStringsSep ", " (lib.attrNames available); + in if lib.hasAttr name available + then lib.getAttr name available // { inherit name; } + else throw "Unknown UWSGI plugin ${name}, available : ${all}"; + + needed = builtins.map getPlugin plugins; +in stdenv.mkDerivation rec { name = "uwsgi-2.0.11.2"; @@ -34,17 +41,15 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ python3 pkgconfig ]; - buildInputs = with stdenv.lib; - [ jansson ] - ++ optional withPAM pam - ++ optional withSystemd systemd - ++ lib.concatMap (x: x.deps) needed + buildInputs = [ jansson ] + ++ lib.optional withPAM pam + ++ lib.optional withSystemd systemd + ++ lib.concatMap (x: x.inputs) needed ; - basePlugins = with stdenv.lib; - concatStringsSep "," - ( optional withPAM "pam" - ++ optional withSystemd "systemd_logger" + basePlugins = lib.concatStringsSep "," + ( lib.optional withPAM "pam" + ++ lib.optional withSystemd "systemd_logger" ); passthru = { @@ -59,12 +64,11 @@ stdenv.mkDerivation rec { buildPhase = '' mkdir -p $pluginDir python3 uwsgiconfig.py --build nixos - ${lib.concatMapStringsSep ";" (x: "${x.interpreter.interpreter} uwsgiconfig.py --plugin ${x.path} nixos ${x.name}") needed} + ${lib.concatMapStringsSep ";" (x: "${x.interpreter} uwsgiconfig.py --plugin ${x.path} nixos ${x.name}") needed} ''; installPhase = '' install -Dm755 uwsgi $out/bin/uwsgi - #cp *_plugin.so $pluginDir || true ${lib.concatMapStringsSep "\n" (x: x.install) needed} ''; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44c42e012a4..e915658b350 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3477,6 +3477,8 @@ let uwsgi = callPackage ../servers/uwsgi { plugins = []; + withPAM = stdenv.isLinux; + withSystemd = stdenv.isLinux; }; vacuum = callPackage ../applications/networking/instant-messengers/vacuum {}; From d39d87bb812fcd63a551b207bb0c66022048aed9 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 19 Feb 2016 17:00:31 +0300 Subject: [PATCH 070/291] uwsgi: disable built-in yaml support --- pkgs/servers/uwsgi/nixos.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/uwsgi/nixos.ini b/pkgs/servers/uwsgi/nixos.ini index 454eb51893f..51bc6da33f6 100644 --- a/pkgs/servers/uwsgi/nixos.ini +++ b/pkgs/servers/uwsgi/nixos.ini @@ -2,4 +2,5 @@ plugin_dir = @pluginDir@ main_plugin = @basePlugins@ json = true +yaml = false inherit = base From e48c991131b4f75445e79b4da8871ae721339ae2 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 19 Feb 2016 17:02:14 +0300 Subject: [PATCH 071/291] uwsgi service: refactor, throw more errors and drop simultaneous Python 2/3 in path --- nixos/modules/services/web-servers/uwsgi.nix | 112 +++++++++++++------ 1 file changed, 77 insertions(+), 35 deletions(-) diff --git a/nixos/modules/services/web-servers/uwsgi.nix b/nixos/modules/services/web-servers/uwsgi.nix index 3e18a6f0e98..39f7047af2d 100644 --- a/nixos/modules/services/web-servers/uwsgi.nix +++ b/nixos/modules/services/web-servers/uwsgi.nix @@ -5,44 +5,86 @@ with lib; let cfg = config.services.uwsgi; - python2Pkgs = pkgs.python2Packages.override { - python = pkgs.uwsgi.python2; - self = python2Pkgs; - }; - - python3Pkgs = pkgs.python3Packages.override { - python = pkgs.uwsgi.python3; - self = python3Pkgs; - }; - - buildCfg = c: if builtins.typeOf c != "set" then builtins.readFile c else builtins.toJSON { - uwsgi = - if c.type == "normal" - then { - pythonpath = - (if c ? python2Packages - then builtins.map (x: "${x}/${pkgs.uwsgi.python2.sitePackages}") (c.python2Packages python2Pkgs) - else []) - ++ (if c ? python3Packages - then builtins.map (x: "${x}/${pkgs.uwsgi.python3.sitePackages}") (c.python3Packages python3Pkgs) - else []); - plugins = cfg.plugins; - } // removeAttrs c [ "type" "python2Packages" "python3Packages" ] - else if c.type == "emperor" - then { - emperor = if builtins.typeOf c.vassals != "set" then c.vassals - else pkgs.buildEnv { - name = "vassals"; - paths = mapAttrsToList (n: c: pkgs.writeTextDir "${n}.json" (buildCfg c)) c.vassals; - }; - } // removeAttrs c [ "type" "vassals" ] - else abort "type should be either 'normal' or 'emperor'"; - }; - uwsgi = pkgs.uwsgi.override { plugins = cfg.plugins; }; + buildCfg = name: c: + let + plugins = + if any (n: !any (m: m == n) cfg.plugins) (c.plugins or []) + then throw "`plugins` attribute in UWSGI configuration contains plugins not in config.services.uwsgi.plugins" + else c.plugins or cfg.plugins; + + hasPython = v: filter (n: n == "python${v}") plugins != []; + hasPython2 = hasPython "2"; + hasPython3 = hasPython "3"; + + python = + if hasPython2 && hasPython3 then + throw "`plugins` attribute in UWSGI configuration shouldn't contain both python2 and python3" + else if hasPython2 then uwsgi.python2 + else if hasPython3 then uwsgi.python3 + else null; + + pythonPackages = pkgs.pythonPackages.override { + inherit python; + self = pythonPackages; + }; + + json = builtins.toJSON { + uwsgi = + if c.type == "normal" + then { + inherit plugins; + } // removeAttrs c [ "type" "pythonPackages" ] + // optionalAttrs (python != null) { + pythonpath = "@PYTHONPATH@"; + env = (c.env or {}) // { + PATH = optionalString (c ? env.PATH) "${c.env.PATH}:" + "@PATH@"; + }; + } + else if c.type == "emperor" + then { + emperor = if builtins.typeOf c.vassals != "set" then c.vassals + else pkgs.buildEnv { + name = "vassals"; + paths = mapAttrsToList buildCfg c.vassals; + }; + } // removeAttrs c [ "type" "vassals" ] + else throw "`type` attribute in UWSGI configuration should be either 'normal' or 'emperor'"; + }; + + in + if python == null || c.type != "normal" + then pkgs.writeTextDir "${name}.json" json + else pkgs.stdenv.mkDerivation { + name = "uwsgi-config"; + inherit json; + passAsFile = [ "json" ]; + nativeBuildInputs = [ pythonPackages.wrapPython ]; + pythonInputs = (c.pythonPackages or (self: [])) pythonPackages; + + buildCommand = '' + mkdir $out + declare -A pythonPathsSeen=() + program_PYTHONPATH= + program_PATH= + if [ -n "$pythonInputs" ]; then + for i in $pythonInputs; do + _addToPythonPath $i + done + fi + # A hack to replace "@PYTHONPATH@" with a JSON list + if [ -n "$program_PYTHONPATH" ]; then + program_PYTHONPATH="\"''${program_PYTHONPATH//:/\",\"}\"" + fi + substitute $jsonPath $out/${name}.json \ + --replace '"@PYTHONPATH@"' "[$program_PYTHONPATH]" \ + --subst-var-by PATH "$program_PATH" + ''; + }; + in { options = { @@ -118,7 +160,7 @@ in { ''; serviceConfig = { Type = "notify"; - ExecStart = "${uwsgi}/bin/uwsgi --uid ${cfg.user} --gid ${cfg.group} --json ${pkgs.writeText "uwsgi.json" (buildCfg cfg.instance)}"; + ExecStart = "${uwsgi}/bin/uwsgi --uid ${cfg.user} --gid ${cfg.group} --json ${buildCfg "server" cfg.instance}/server.json"; ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; ExecStop = "${pkgs.coreutils}/bin/kill -INT $MAINPID"; NotifyAccess = "main"; From b6c49abba028bea76ba85966beb1e4149d5865be Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 19 Feb 2016 17:10:05 +0300 Subject: [PATCH 072/291] uwsgi service: update documentation --- nixos/modules/services/web-servers/uwsgi.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/web-servers/uwsgi.nix b/nixos/modules/services/web-servers/uwsgi.nix index 39f7047af2d..e6c25e6215c 100644 --- a/nixos/modules/services/web-servers/uwsgi.nix +++ b/nixos/modules/services/web-servers/uwsgi.nix @@ -113,21 +113,24 @@ in { vassals = { moin = { type = "normal"; - python2Packages = self: with self; [ moinmoin ]; + pythonPackages = self: with self; [ moinmoin ]; socket = "${config.services.uwsgi.runDir}/uwsgi.sock"; }; }; } ''; description = '' - uWSGI configuration. This awaits either a path to file or a set which will be made into one. - If given a set, it awaits an attribute type which can be either normal - or emperor. + uWSGI configuration. It awaits an attribute type inside which can be either + normal or emperor. + + For normal mode you can specify pythonPackages as a function + from libraries set into a list of libraries. pythonpath will be set accordingly. - For normal mode you can specify python2Packages and - python3Packages as functions from libraries set into lists of libraries. For emperor mode, you should use vassals attribute which should be either a set of names and configurations or a path to a directory. + + Other attributes will be used in configuration file as-is. Notice that you can redefine + plugins setting here. ''; }; From 2d5537d89efb93eda88e96beb13ab169f2e08c37 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sat, 20 Feb 2016 10:22:54 +0900 Subject: [PATCH 073/291] fcitx-m17n: init at 0.2.3 --- .../fcitx-engines/fcitx-m17n/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/inputmethods/fcitx-engines/fcitx-m17n/default.nix diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-m17n/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-m17n/default.nix new file mode 100644 index 00000000000..ff42bbbbcc8 --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-m17n/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, cmake, fcitx, gettext, m17n_lib, m17n_db, pkgconfig }: + +stdenv.mkDerivation rec { + name = "fcitx-m17n-${version}"; + version = "0.2.3"; + + src = fetchurl { + url = "http://download.fcitx-im.org/fcitx-m17n/${name}.tar.xz"; + sha256 = "0ffyhsg7bc6525k94kfhnja1h6ajlfprq72d286dp54cksnakyc4"; + }; + + buildInputs = [ cmake fcitx gettext m17n_lib m17n_db pkgconfig ]; + + preInstall = '' + substituteInPlace im/cmake_install.cmake \ + --replace ${fcitx} $out + ''; + + meta = with stdenv.lib; { + isFcitxEngine = true; + homepage = "https://github.com/fcitx/fcitx-m17n"; + downloadPage = "http://download.fcitx-im.org/fcitx-table-other/"; + description = "Fcitx wrapper for m17n"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index db3bc6abdc2..89af7ad5a8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1529,6 +1529,8 @@ let hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; + m17n = callPackage ../tools/inputmethods/fcitx-engines/fcitx-m17n { }; + mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc { inherit (pythonPackages) gyp; }; From 9e7ddbdcbd8d33f996242774aef630204b264613 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sat, 20 Feb 2016 10:49:35 +0900 Subject: [PATCH 074/291] ibus-m17n: init at 1.3.4 --- .../ibus-engines/ibus-m17n/default.nix | 32 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix new file mode 100644 index 00000000000..30329c4306f --- /dev/null +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub, ibus, m17n_lib, m17n_db, automake, autoconf, + gettext, libtool, pkgconfig, python, pythonPackages }: + +stdenv.mkDerivation rec { + name = "ibus-m17n-${version}"; + version = "1.3.4"; + + src = fetchFromGitHub { + owner = "ibus"; + repo = "ibus-m17n"; + rev = version; + sha256 = "1n0bvgc4jyksgvzrw5zs2pxcpxcn3gcc0j2kasbznm34fpv3frsr"; + }; + + buildInputs = [ + ibus m17n_lib m17n_db automake autoconf gettext + libtool pkgconfig python pythonPackages.pygobject3 + ]; + + preConfigure = '' + autoreconf --verbose --force --install + ''; + + meta = with stdenv.lib; { + isIbusEngine = true; + description = "m17n engine for ibus."; + homepage = https://github.com.com/ibus/ibus-m17n; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89af7ad5a8c..3929c174b13 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1180,6 +1180,8 @@ let hangul = callPackage ../tools/inputmethods/ibus-engines/ibus-hangul { }; + m17n = callPackage ../tools/inputmethods/ibus-engines/ibus-m17n { }; + mozc = callPackage ../tools/inputmethods/ibus-engines/ibus-mozc { inherit (pythonPackages) gyp; }; From dc6bd6118730873a9746261ba72d9ae5fe497607 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 16 Feb 2016 23:32:01 +0900 Subject: [PATCH 075/291] added input method related changelog --- .../doc/manual/release-notes/rl-unstable.xml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index c2d1563e0a5..393f0fdeb40 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -44,6 +44,7 @@ nixos.path = ./nixpkgs-unstable-2015-12-06/nixos; services/networking/pdnsd.nix services/web-apps/pump.io.nix services/security/haka.nix + i18n/inputMethod/default.nix @@ -197,6 +198,32 @@ fileSystems."/example" = { services.hardware.opengl.extraPackages{,32} instead. You can also specify VDPAU drivers there. + + + + programs.ibus moved to i18n.inputMethod.ibus. + The option programs.ibus.plugins changed to i18n.inputMethod.ibus.engines + and the option to enable ibus changed from programs.ibus.enable to + i18n.inputMethod.enabled. + i18n.inputMethod.enabled should be set to the used input method name, + "ibus" for ibus. + An example of the new style: + + +i18n.inputMethod.enabled = "ibus"; +i18n.inputMethod.ibus.engines = with pkgs.ibus-engines; [ anthy mozc ]; + + +That is equivalent to the old version: + + +programs.ibus.enable = true; +programs.ibus.plugins = with pkgs; [ ibus-anthy mozc ]; + + + + + @@ -215,6 +242,12 @@ fileSystems."/example" = { NixOS. + + Input method support was improved. New NixOS modules (fcitx, nabi and uim), + fcitx engines (chewing, hangul, m17n, mozc and table-other) and ibus engines (hangul and m17n) + have been added. + + From 11733b39b58a377ecebde444d2c630731882eb50 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 20 Feb 2016 14:07:27 +0000 Subject: [PATCH 076/291] git: fixes references to gettext properly A better implementation of 5273dbf530a1149076cfd22c676b09c5f2627524 Fixes https://github.com/NixOS/nixpkgs/issues/13150 The attached patch removes a whole swath of unnecessary runtime gettext detection. It also adds gettext on the PATH so that git-rebase can find it. --- .../git-and-tools/git/default.nix | 3 +- .../git-and-tools/git/git-sh-i18n.patch | 78 +++++++++++++++++++ 2 files changed, 80 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/version-management/git-and-tools/git/git-sh-i18n.patch diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 53c9dc84dfb..ca6087ce318 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation { patches = [ ./docbook2texi.patch ./symlinks-in-bin.patch + ./git-sh-i18n.patch ]; buildInputs = [curl openssl zlib expat gettext cpio makeWrapper libiconv] @@ -85,7 +86,7 @@ stdenv.mkDerivation { # Fix references to gettext. substituteInPlace $out/libexec/git-core/git-sh-i18n \ - --replace 'gettext.sh' '${gettext}/bin/gettext.sh' + --subst-var-by gettext ${gettext} # gzip (and optionally bzip2, xz, zip) are runtime dependencies for # gitweb.cgi, need to patch so that it's found diff --git a/pkgs/applications/version-management/git-and-tools/git/git-sh-i18n.patch b/pkgs/applications/version-management/git-and-tools/git/git-sh-i18n.patch new file mode 100644 index 00000000000..8e3ee2bce89 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/git/git-sh-i18n.patch @@ -0,0 +1,78 @@ +diff --git a/git-sh-i18n.sh b/git-sh-i18n.sh +index e6c3116..4e34a2c 100644 +--- a/git-sh-i18n.sh ++++ b/git-sh-i18n.sh +@@ -15,69 +15,11 @@ else + fi + export TEXTDOMAINDIR + +-# First decide what scheme to use... +-GIT_INTERNAL_GETTEXT_SH_SCHEME=fallthrough +-if test -n "@@USE_GETTEXT_SCHEME@@" +-then +- GIT_INTERNAL_GETTEXT_SH_SCHEME="@@USE_GETTEXT_SCHEME@@" +-elif test -n "$GIT_INTERNAL_GETTEXT_TEST_FALLBACKS" +-then +- : no probing necessary +-elif test -n "$GIT_GETTEXT_POISON" +-then +- GIT_INTERNAL_GETTEXT_SH_SCHEME=poison +-elif type gettext.sh >/dev/null 2>&1 +-then +- # GNU libintl's gettext.sh +- GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu +-elif test "$(gettext -h 2>&1)" = "-h" +-then +- # gettext binary exists but no gettext.sh. likely to be a gettext +- # binary on a Solaris or something that is not GNU libintl and +- # lack eval_gettext. +- GIT_INTERNAL_GETTEXT_SH_SCHEME=gettext_without_eval_gettext +-fi +-export GIT_INTERNAL_GETTEXT_SH_SCHEME +- +-# ... and then follow that decision. +-case "$GIT_INTERNAL_GETTEXT_SH_SCHEME" in +-gnu) +- # Use libintl's gettext.sh, or fall back to English if we can't. +- . gettext.sh +- ;; +-gettext_without_eval_gettext) +- # Solaris has a gettext(1) but no eval_gettext(1) +- eval_gettext () { +- gettext "$1" | ( +- export PATH $(git sh-i18n--envsubst --variables "$1"); +- git sh-i18n--envsubst "$1" +- ) +- } +- ;; +-poison) +- # Emit garbage so that tests that incorrectly rely on translatable +- # strings will fail. +- gettext () { +- printf "%s" "# GETTEXT POISON #" +- } +- +- eval_gettext () { +- printf "%s" "# GETTEXT POISON #" +- } +- ;; +-*) +- gettext () { +- printf "%s" "$1" +- } ++# GNU gettext ++export GIT_INTERNAL_GETTEXT_SH_SCHEME=gnu ++export PATH=@gettext@/bin:$PATH + +- eval_gettext () { +- printf "%s" "$1" | ( +- export PATH $(git sh-i18n--envsubst --variables "$1"); +- git sh-i18n--envsubst "$1" +- ) +- } +- ;; +-esac ++. @gettext@/bin/gettext.sh + + # Git-specific wrapper functions + gettextln () { From 8bfc5d7e724da7d9642b7b20f8634727280ec9a4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 20 Feb 2016 19:10:23 +0200 Subject: [PATCH 077/291] coreutils: Remove ARM patch (coreutils-tail-inotify-race.patch) The patch no longer applies as it's applied in the 8.25 release. While at it don't use FORCE_UNSAFE_CONFIGURE on ARM as I don't see why it's needed and it works for me without it. Build-tested GNU hello on ARMv7 and verified that this affect its hash on i686. --- pkgs/tools/misc/coreutils/default.nix | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 78c27291648..3bd5a9cbc58 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -19,24 +19,13 @@ let sha256 = "11yfrnb94xzmvi4lhclkcmkqsbhww64wf234ya1aacjvg82prrii"; }; - patches = - lib.optional stdenv.isCygwin ./coreutils-8.23-4.cygwin.patch - ++ lib.optional stdenv.isArm - (fetchurl { - url = "http://git.savannah.gnu.org/cgit/coreutils.git/patch/?id=3ba68f9e64fa2eb8af22d510437a0c6441feb5e0"; - sha256 = "1dnlszhc8lihhg801i9sz896mlrgfsjfcz62636prb27k5hmixqz"; - name = "coreutils-tail-inotify-race.patch"; - }); + patches = optional stdenv.isCygwin ./coreutils-8.23-4.cygwin.patch; # The test tends to fail on btrfs and maybe other unusual filesystems. postPatch = optionalString (!stdenv.isDarwin) '' sed '2i echo Skipping dd sparse test && exit 0' -i ./tests/dd/sparse.sh sed '2i echo Skipping cp sparse test && exit 0' -i ./tests/cp/sparse.sh - '' + - # This is required by coreutils-tail-inotify-race.patch to avoid more deps - optionalString stdenv.isArm '' - touch -r src/stat.c src/tail.c - ''; + ''; configureFlags = optionalString stdenv.isSunOS "ac_cv_func_inotify_init=no"; @@ -84,7 +73,7 @@ let enableParallelBuilding = false; NIX_LDFLAGS = optionalString selinuxSupport "-lsepol"; - FORCE_UNSAFE_CONFIGURE = optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; + FORCE_UNSAFE_CONFIGURE = optionalString stdenv.isSunOS "1"; makeFlags = optionalString stdenv.isDarwin "CFLAGS=-D_FORTIFY_SOURCE=0"; From 59617de6d7f8a05f12bbb652e1c68a6a7e6362b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 21 Feb 2016 10:30:09 +0100 Subject: [PATCH 078/291] glibc: 2.22 -> 2.23 The two patches were included upstream. (Even the one from guix, except for a whitespace difference.) --- pkgs/development/libraries/glibc/common.nix | 10 +- .../libraries/glibc/cve-2015-7547.patch | 580 ------------------ .../glibc/glibc-locale-incompatibility.patch | 25 - 3 files changed, 3 insertions(+), 612 deletions(-) delete mode 100644 pkgs/development/libraries/glibc/cve-2015-7547.patch delete mode 100644 pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 6a468657716..13d5adcd9b1 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -11,8 +11,8 @@ cross: let - version = "2.22"; - + version = "2.23"; + sha256 = "1lk9a8jv5kyx8hp0wmfzjyk047q95ybyjqbyw5idl7414jxqml1b"; in assert cross != null -> gccCross != null; @@ -49,10 +49,6 @@ stdenv.mkDerivation ({ "/bin:/usr/bin", which is inappropriate on NixOS machines. This patch extends the search path by "/run/current-system/sw/bin". */ ./fix_path_attribute_in_getconf.patch - - ./cve-2015-7547.patch - - ./glibc-locale-incompatibility.patch ]; postPatch = @@ -143,7 +139,7 @@ stdenv.mkDerivation ({ src = fetchurl { url = "mirror://gnu/glibc/glibc-${version}.tar.gz"; - sha256 = "1rcby0cqgswgqaxyqz0yqc4zizb1kvpi5vlfqp7dh3sa132109m6"; + inherit sha256; }; # Remove absolute paths from `configure' & co.; build out-of-tree. diff --git a/pkgs/development/libraries/glibc/cve-2015-7547.patch b/pkgs/development/libraries/glibc/cve-2015-7547.patch deleted file mode 100644 index 55d58c16698..00000000000 --- a/pkgs/development/libraries/glibc/cve-2015-7547.patch +++ /dev/null @@ -1,580 +0,0 @@ -commit b995d95a5943785be3ab862b2d3276f3b4a22481 -Author: Carlos O'Donell -Date: Tue Feb 16 21:26:37 2016 -0500 - - CVE-2015-7547: getaddrinfo() stack-based buffer overflow (Bug 18665). - - * A stack-based buffer overflow was found in libresolv when invoked from - libnss_dns, allowing specially crafted DNS responses to seize control - of execution flow in the DNS client. The buffer overflow occurs in - the functions send_dg (send datagram) and send_vc (send TCP) for the - NSS module libnss_dns.so.2 when calling getaddrinfo with AF_UNSPEC - family. The use of AF_UNSPEC triggers the low-level resolver code to - send out two parallel queries for A and AAAA. A mismanagement of the - buffers used for those queries could result in the response of a query - writing beyond the alloca allocated buffer created by - _nss_dns_gethostbyname4_r. Buffer management is simplified to remove - the overflow. Thanks to the Google Security Team and Red Hat for - reporting the security impact of this issue, and Robert Holiday of - Ciena for reporting the related bug 18665. (CVE-2015-7547) - - See also: - https://sourceware.org/ml/libc-alpha/2016-02/msg00416.html - https://sourceware.org/ml/libc-alpha/2016-02/msg00418.html - - (cherry picked from commit e9db92d3acfe1822d56d11abcea5bfc4c41cf6ca) - -diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c -index 357ac04..a0fe9a8 100644 ---- a/resolv/nss_dns/dns-host.c -+++ b/resolv/nss_dns/dns-host.c -@@ -1031,7 +1031,10 @@ gaih_getanswer_slice (const querybuf *answer, int anslen, const char *qname, - int h_namelen = 0; - - if (ancount == 0) -- return NSS_STATUS_NOTFOUND; -+ { -+ *h_errnop = HOST_NOT_FOUND; -+ return NSS_STATUS_NOTFOUND; -+ } - - while (ancount-- > 0 && cp < end_of_message && had_error == 0) - { -@@ -1208,7 +1211,14 @@ gaih_getanswer_slice (const querybuf *answer, int anslen, const char *qname, - /* Special case here: if the resolver sent a result but it only - contains a CNAME while we are looking for a T_A or T_AAAA record, - we fail with NOTFOUND instead of TRYAGAIN. */ -- return canon == NULL ? NSS_STATUS_TRYAGAIN : NSS_STATUS_NOTFOUND; -+ if (canon != NULL) -+ { -+ *h_errnop = HOST_NOT_FOUND; -+ return NSS_STATUS_NOTFOUND; -+ } -+ -+ *h_errnop = NETDB_INTERNAL; -+ return NSS_STATUS_TRYAGAIN; - } - - -@@ -1222,11 +1232,101 @@ gaih_getanswer (const querybuf *answer1, int anslen1, const querybuf *answer2, - - enum nss_status status = NSS_STATUS_NOTFOUND; - -+ /* Combining the NSS status of two distinct queries requires some -+ compromise and attention to symmetry (A or AAAA queries can be -+ returned in any order). What follows is a breakdown of how this -+ code is expected to work and why. We discuss only SUCCESS, -+ TRYAGAIN, NOTFOUND and UNAVAIL, since they are the only returns -+ that apply (though RETURN and MERGE exist). We make a distinction -+ between TRYAGAIN (recoverable) and TRYAGAIN' (not-recoverable). -+ A recoverable TRYAGAIN is almost always due to buffer size issues -+ and returns ERANGE in errno and the caller is expected to retry -+ with a larger buffer. -+ -+ Lastly, you may be tempted to make significant changes to the -+ conditions in this code to bring about symmetry between responses. -+ Please don't change anything without due consideration for -+ expected application behaviour. Some of the synthesized responses -+ aren't very well thought out and sometimes appear to imply that -+ IPv4 responses are always answer 1, and IPv6 responses are always -+ answer 2, but that's not true (see the implementation of send_dg -+ and send_vc to see response can arrive in any order, particularly -+ for UDP). However, we expect it holds roughly enough of the time -+ that this code works, but certainly needs to be fixed to make this -+ a more robust implementation. -+ -+ ---------------------------------------------- -+ | Answer 1 Status / | Synthesized | Reason | -+ | Answer 2 Status | Status | | -+ |--------------------------------------------| -+ | SUCCESS/SUCCESS | SUCCESS | [1] | -+ | SUCCESS/TRYAGAIN | TRYAGAIN | [5] | -+ | SUCCESS/TRYAGAIN' | SUCCESS | [1] | -+ | SUCCESS/NOTFOUND | SUCCESS | [1] | -+ | SUCCESS/UNAVAIL | SUCCESS | [1] | -+ | TRYAGAIN/SUCCESS | TRYAGAIN | [2] | -+ | TRYAGAIN/TRYAGAIN | TRYAGAIN | [2] | -+ | TRYAGAIN/TRYAGAIN' | TRYAGAIN | [2] | -+ | TRYAGAIN/NOTFOUND | TRYAGAIN | [2] | -+ | TRYAGAIN/UNAVAIL | TRYAGAIN | [2] | -+ | TRYAGAIN'/SUCCESS | SUCCESS | [3] | -+ | TRYAGAIN'/TRYAGAIN | TRYAGAIN | [3] | -+ | TRYAGAIN'/TRYAGAIN' | TRYAGAIN' | [3] | -+ | TRYAGAIN'/NOTFOUND | TRYAGAIN' | [3] | -+ | TRYAGAIN'/UNAVAIL | UNAVAIL | [3] | -+ | NOTFOUND/SUCCESS | SUCCESS | [3] | -+ | NOTFOUND/TRYAGAIN | TRYAGAIN | [3] | -+ | NOTFOUND/TRYAGAIN' | TRYAGAIN' | [3] | -+ | NOTFOUND/NOTFOUND | NOTFOUND | [3] | -+ | NOTFOUND/UNAVAIL | UNAVAIL | [3] | -+ | UNAVAIL/SUCCESS | UNAVAIL | [4] | -+ | UNAVAIL/TRYAGAIN | UNAVAIL | [4] | -+ | UNAVAIL/TRYAGAIN' | UNAVAIL | [4] | -+ | UNAVAIL/NOTFOUND | UNAVAIL | [4] | -+ | UNAVAIL/UNAVAIL | UNAVAIL | [4] | -+ ---------------------------------------------- -+ -+ [1] If the first response is a success we return success. -+ This ignores the state of the second answer and in fact -+ incorrectly sets errno and h_errno to that of the second -+ answer. However because the response is a success we ignore -+ *errnop and *h_errnop (though that means you touched errno on -+ success). We are being conservative here and returning the -+ likely IPv4 response in the first answer as a success. -+ -+ [2] If the first response is a recoverable TRYAGAIN we return -+ that instead of looking at the second response. The -+ expectation here is that we have failed to get an IPv4 response -+ and should retry both queries. -+ -+ [3] If the first response was not a SUCCESS and the second -+ response is not NOTFOUND (had a SUCCESS, need to TRYAGAIN, -+ or failed entirely e.g. TRYAGAIN' and UNAVAIL) then use the -+ result from the second response, otherwise the first responses -+ status is used. Again we have some odd side-effects when the -+ second response is NOTFOUND because we overwrite *errnop and -+ *h_errnop that means that a first answer of NOTFOUND might see -+ its *errnop and *h_errnop values altered. Whether it matters -+ in practice that a first response NOTFOUND has the wrong -+ *errnop and *h_errnop is undecided. -+ -+ [4] If the first response is UNAVAIL we return that instead of -+ looking at the second response. The expectation here is that -+ it will have failed similarly e.g. configuration failure. -+ -+ [5] Testing this code is complicated by the fact that truncated -+ second response buffers might be returned as SUCCESS if the -+ first answer is a SUCCESS. To fix this we add symmetry to -+ TRYAGAIN with the second response. If the second response -+ is a recoverable error we now return TRYAGIN even if the first -+ response was SUCCESS. */ -+ - if (anslen1 > 0) - status = gaih_getanswer_slice(answer1, anslen1, qname, - &pat, &buffer, &buflen, - errnop, h_errnop, ttlp, - &first); -+ - if ((status == NSS_STATUS_SUCCESS || status == NSS_STATUS_NOTFOUND - || (status == NSS_STATUS_TRYAGAIN - /* We want to look at the second answer in case of an -@@ -1242,8 +1342,15 @@ gaih_getanswer (const querybuf *answer1, int anslen1, const querybuf *answer2, - &pat, &buffer, &buflen, - errnop, h_errnop, ttlp, - &first); -+ /* Use the second response status in some cases. */ - if (status != NSS_STATUS_SUCCESS && status2 != NSS_STATUS_NOTFOUND) - status = status2; -+ /* Do not return a truncated second response (unless it was -+ unavoidable e.g. unrecoverable TRYAGAIN). */ -+ if (status == NSS_STATUS_SUCCESS -+ && (status2 == NSS_STATUS_TRYAGAIN -+ && *errnop == ERANGE && *h_errnop != NO_RECOVERY)) -+ status = NSS_STATUS_TRYAGAIN; - } - - return status; -diff --git a/resolv/res_query.c b/resolv/res_query.c -index 4a9b3b3..95470a9 100644 ---- a/resolv/res_query.c -+++ b/resolv/res_query.c -@@ -396,6 +396,7 @@ __libc_res_nsearch(res_state statp, - { - free (*answerp2); - *answerp2 = NULL; -+ *nanswerp2 = 0; - *answerp2_malloced = 0; - } - } -@@ -447,6 +448,7 @@ __libc_res_nsearch(res_state statp, - { - free (*answerp2); - *answerp2 = NULL; -+ *nanswerp2 = 0; - *answerp2_malloced = 0; - } - -@@ -521,6 +523,7 @@ __libc_res_nsearch(res_state statp, - { - free (*answerp2); - *answerp2 = NULL; -+ *nanswerp2 = 0; - *answerp2_malloced = 0; - } - if (saved_herrno != -1) -diff --git a/resolv/res_send.c b/resolv/res_send.c -index 5e53cc2..6511bb1 100644 ---- a/resolv/res_send.c -+++ b/resolv/res_send.c -@@ -1,3 +1,20 @@ -+/* Copyright (C) 2016 Free Software Foundation, Inc. -+ This file is part of the GNU C Library. -+ -+ The GNU C Library is free software; you can redistribute it and/or -+ modify it under the terms of the GNU Lesser General Public -+ License as published by the Free Software Foundation; either -+ version 2.1 of the License, or (at your option) any later version. -+ -+ The GNU C Library is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ Lesser General Public License for more details. -+ -+ You should have received a copy of the GNU Lesser General Public -+ License along with the GNU C Library; if not, see -+ . */ -+ - /* - * Copyright (c) 1985, 1989, 1993 - * The Regents of the University of California. All rights reserved. -@@ -363,6 +380,8 @@ __libc_res_nsend(res_state statp, const u_char *buf, int buflen, - #ifdef USE_HOOKS - if (__glibc_unlikely (statp->qhook || statp->rhook)) { - if (anssiz < MAXPACKET && ansp) { -+ /* Always allocate MAXPACKET, callers expect -+ this specific size. */ - u_char *buf = malloc (MAXPACKET); - if (buf == NULL) - return (-1); -@@ -638,6 +657,77 @@ get_nsaddr (res_state statp, int n) - return (struct sockaddr *) (void *) &statp->nsaddr_list[n]; - } - -+/* The send_vc function is responsible for sending a DNS query over TCP -+ to the nameserver numbered NS from the res_state STATP i.e. -+ EXT(statp).nssocks[ns]. The function supports sending both IPv4 and -+ IPv6 queries at the same serially on the same socket. -+ -+ Please note that for TCP there is no way to disable sending both -+ queries, unlike UDP, which honours RES_SNGLKUP and RES_SNGLKUPREOP -+ and sends the queries serially and waits for the result after each -+ sent query. This implemetnation should be corrected to honour these -+ options. -+ -+ Please also note that for TCP we send both queries over the same -+ socket one after another. This technically violates best practice -+ since the server is allowed to read the first query, respond, and -+ then close the socket (to service another client). If the server -+ does this, then the remaining second query in the socket data buffer -+ will cause the server to send the client an RST which will arrive -+ asynchronously and the client's OS will likely tear down the socket -+ receive buffer resulting in a potentially short read and lost -+ response data. This will force the client to retry the query again, -+ and this process may repeat until all servers and connection resets -+ are exhausted and then the query will fail. It's not known if this -+ happens with any frequency in real DNS server implementations. This -+ implementation should be corrected to use two sockets by default for -+ parallel queries. -+ -+ The query stored in BUF of BUFLEN length is sent first followed by -+ the query stored in BUF2 of BUFLEN2 length. Queries are sent -+ serially on the same socket. -+ -+ Answers to the query are stored firstly in *ANSP up to a max of -+ *ANSSIZP bytes. If more than *ANSSIZP bytes are needed and ANSCP -+ is non-NULL (to indicate that modifying the answer buffer is allowed) -+ then malloc is used to allocate a new response buffer and ANSCP and -+ ANSP will both point to the new buffer. If more than *ANSSIZP bytes -+ are needed but ANSCP is NULL, then as much of the response as -+ possible is read into the buffer, but the results will be truncated. -+ When truncation happens because of a small answer buffer the DNS -+ packets header field TC will bet set to 1, indicating a truncated -+ message and the rest of the socket data will be read and discarded. -+ -+ Answers to the query are stored secondly in *ANSP2 up to a max of -+ *ANSSIZP2 bytes, with the actual response length stored in -+ *RESPLEN2. If more than *ANSSIZP bytes are needed and ANSP2 -+ is non-NULL (required for a second query) then malloc is used to -+ allocate a new response buffer, *ANSSIZP2 is set to the new buffer -+ size and *ANSP2_MALLOCED is set to 1. -+ -+ The ANSP2_MALLOCED argument will eventually be removed as the -+ change in buffer pointer can be used to detect the buffer has -+ changed and that the caller should use free on the new buffer. -+ -+ Note that the answers may arrive in any order from the server and -+ therefore the first and second answer buffers may not correspond to -+ the first and second queries. -+ -+ It is not supported to call this function with a non-NULL ANSP2 -+ but a NULL ANSCP. Put another way, you can call send_vc with a -+ single unmodifiable buffer or two modifiable buffers, but no other -+ combination is supported. -+ -+ It is the caller's responsibility to free the malloc allocated -+ buffers by detecting that the pointers have changed from their -+ original values i.e. *ANSCP or *ANSP2 has changed. -+ -+ If errors are encountered then *TERRNO is set to an appropriate -+ errno value and a zero result is returned for a recoverable error, -+ and a less-than zero result is returned for a non-recoverable error. -+ -+ If no errors are encountered then *TERRNO is left unmodified and -+ a the length of the first response in bytes is returned. */ - static int - send_vc(res_state statp, - const u_char *buf, int buflen, const u_char *buf2, int buflen2, -@@ -647,11 +737,7 @@ send_vc(res_state statp, - { - const HEADER *hp = (HEADER *) buf; - const HEADER *hp2 = (HEADER *) buf2; -- u_char *ans = *ansp; -- int orig_anssizp = *anssizp; -- // XXX REMOVE -- // int anssiz = *anssizp; -- HEADER *anhp = (HEADER *) ans; -+ HEADER *anhp = (HEADER *) *ansp; - struct sockaddr *nsap = get_nsaddr (statp, ns); - int truncating, connreset, n; - /* On some architectures compiler might emit a warning indicating -@@ -743,6 +829,8 @@ send_vc(res_state statp, - * Receive length & response - */ - int recvresp1 = 0; -+ /* Skip the second response if there is no second query. -+ To do that we mark the second response as received. */ - int recvresp2 = buf2 == NULL; - uint16_t rlen16; - read_len: -@@ -779,40 +867,14 @@ send_vc(res_state statp, - u_char **thisansp; - int *thisresplenp; - if ((recvresp1 | recvresp2) == 0 || buf2 == NULL) { -+ /* We have not received any responses -+ yet or we only have one response to -+ receive. */ - thisanssizp = anssizp; - thisansp = anscp ?: ansp; - assert (anscp != NULL || ansp2 == NULL); - thisresplenp = &resplen; - } else { -- if (*anssizp != MAXPACKET) { -- /* No buffer allocated for the first -- reply. We can try to use the rest -- of the user-provided buffer. */ --#if __GNUC_PREREQ (4, 7) -- DIAG_PUSH_NEEDS_COMMENT; -- DIAG_IGNORE_NEEDS_COMMENT (5, "-Wmaybe-uninitialized"); --#endif --#if _STRING_ARCH_unaligned -- *anssizp2 = orig_anssizp - resplen; -- *ansp2 = *ansp + resplen; --#else -- int aligned_resplen -- = ((resplen + __alignof__ (HEADER) - 1) -- & ~(__alignof__ (HEADER) - 1)); -- *anssizp2 = orig_anssizp - aligned_resplen; -- *ansp2 = *ansp + aligned_resplen; --#endif --#if __GNUC_PREREQ (4, 7) -- DIAG_POP_NEEDS_COMMENT; --#endif -- } else { -- /* The first reply did not fit into the -- user-provided buffer. Maybe the second -- answer will. */ -- *anssizp2 = orig_anssizp; -- *ansp2 = *ansp; -- } -- - thisanssizp = anssizp2; - thisansp = ansp2; - thisresplenp = resplen2; -@@ -820,10 +882,14 @@ send_vc(res_state statp, - anhp = (HEADER *) *thisansp; - - *thisresplenp = rlen; -- if (rlen > *thisanssizp) { -- /* Yes, we test ANSCP here. If we have two buffers -- both will be allocatable. */ -- if (__glibc_likely (anscp != NULL)) { -+ /* Is the answer buffer too small? */ -+ if (*thisanssizp < rlen) { -+ /* If the current buffer is not the the static -+ user-supplied buffer then we can reallocate -+ it. */ -+ if (thisansp != NULL && thisansp != ansp) { -+ /* Always allocate MAXPACKET, callers expect -+ this specific size. */ - u_char *newp = malloc (MAXPACKET); - if (newp == NULL) { - *terrno = ENOMEM; -@@ -835,6 +901,9 @@ send_vc(res_state statp, - if (thisansp == ansp2) - *ansp2_malloced = 1; - anhp = (HEADER *) newp; -+ /* A uint16_t can't be larger than MAXPACKET -+ thus it's safe to allocate MAXPACKET but -+ read RLEN bytes instead. */ - len = rlen; - } else { - Dprint(statp->options & RES_DEBUG, -@@ -997,6 +1066,66 @@ reopen (res_state statp, int *terrno, int ns) - return 1; - } - -+/* The send_dg function is responsible for sending a DNS query over UDP -+ to the nameserver numbered NS from the res_state STATP i.e. -+ EXT(statp).nssocks[ns]. The function supports IPv4 and IPv6 queries -+ along with the ability to send the query in parallel for both stacks -+ (default) or serially (RES_SINGLKUP). It also supports serial lookup -+ with a close and reopen of the socket used to talk to the server -+ (RES_SNGLKUPREOP) to work around broken name servers. -+ -+ The query stored in BUF of BUFLEN length is sent first followed by -+ the query stored in BUF2 of BUFLEN2 length. Queries are sent -+ in parallel (default) or serially (RES_SINGLKUP or RES_SNGLKUPREOP). -+ -+ Answers to the query are stored firstly in *ANSP up to a max of -+ *ANSSIZP bytes. If more than *ANSSIZP bytes are needed and ANSCP -+ is non-NULL (to indicate that modifying the answer buffer is allowed) -+ then malloc is used to allocate a new response buffer and ANSCP and -+ ANSP will both point to the new buffer. If more than *ANSSIZP bytes -+ are needed but ANSCP is NULL, then as much of the response as -+ possible is read into the buffer, but the results will be truncated. -+ When truncation happens because of a small answer buffer the DNS -+ packets header field TC will bet set to 1, indicating a truncated -+ message, while the rest of the UDP packet is discarded. -+ -+ Answers to the query are stored secondly in *ANSP2 up to a max of -+ *ANSSIZP2 bytes, with the actual response length stored in -+ *RESPLEN2. If more than *ANSSIZP bytes are needed and ANSP2 -+ is non-NULL (required for a second query) then malloc is used to -+ allocate a new response buffer, *ANSSIZP2 is set to the new buffer -+ size and *ANSP2_MALLOCED is set to 1. -+ -+ The ANSP2_MALLOCED argument will eventually be removed as the -+ change in buffer pointer can be used to detect the buffer has -+ changed and that the caller should use free on the new buffer. -+ -+ Note that the answers may arrive in any order from the server and -+ therefore the first and second answer buffers may not correspond to -+ the first and second queries. -+ -+ It is not supported to call this function with a non-NULL ANSP2 -+ but a NULL ANSCP. Put another way, you can call send_vc with a -+ single unmodifiable buffer or two modifiable buffers, but no other -+ combination is supported. -+ -+ It is the caller's responsibility to free the malloc allocated -+ buffers by detecting that the pointers have changed from their -+ original values i.e. *ANSCP or *ANSP2 has changed. -+ -+ If an answer is truncated because of UDP datagram DNS limits then -+ *V_CIRCUIT is set to 1 and the return value non-zero to indicate to -+ the caller to retry with TCP. The value *GOTSOMEWHERE is set to 1 -+ if any progress was made reading a response from the nameserver and -+ is used by the caller to distinguish between ECONNREFUSED and -+ ETIMEDOUT (the latter if *GOTSOMEWHERE is 1). -+ -+ If errors are encountered then *TERRNO is set to an appropriate -+ errno value and a zero result is returned for a recoverable error, -+ and a less-than zero result is returned for a non-recoverable error. -+ -+ If no errors are encountered then *TERRNO is left unmodified and -+ a the length of the first response in bytes is returned. */ - static int - send_dg(res_state statp, - const u_char *buf, int buflen, const u_char *buf2, int buflen2, -@@ -1006,8 +1135,6 @@ send_dg(res_state statp, - { - const HEADER *hp = (HEADER *) buf; - const HEADER *hp2 = (HEADER *) buf2; -- u_char *ans = *ansp; -- int orig_anssizp = *anssizp; - struct timespec now, timeout, finish; - struct pollfd pfd[1]; - int ptimeout; -@@ -1040,6 +1167,8 @@ send_dg(res_state statp, - int need_recompute = 0; - int nwritten = 0; - int recvresp1 = 0; -+ /* Skip the second response if there is no second query. -+ To do that we mark the second response as received. */ - int recvresp2 = buf2 == NULL; - pfd[0].fd = EXT(statp).nssocks[ns]; - pfd[0].events = POLLOUT; -@@ -1203,55 +1332,56 @@ send_dg(res_state statp, - int *thisresplenp; - - if ((recvresp1 | recvresp2) == 0 || buf2 == NULL) { -+ /* We have not received any responses -+ yet or we only have one response to -+ receive. */ - thisanssizp = anssizp; - thisansp = anscp ?: ansp; - assert (anscp != NULL || ansp2 == NULL); - thisresplenp = &resplen; - } else { -- if (*anssizp != MAXPACKET) { -- /* No buffer allocated for the first -- reply. We can try to use the rest -- of the user-provided buffer. */ --#if _STRING_ARCH_unaligned -- *anssizp2 = orig_anssizp - resplen; -- *ansp2 = *ansp + resplen; --#else -- int aligned_resplen -- = ((resplen + __alignof__ (HEADER) - 1) -- & ~(__alignof__ (HEADER) - 1)); -- *anssizp2 = orig_anssizp - aligned_resplen; -- *ansp2 = *ansp + aligned_resplen; --#endif -- } else { -- /* The first reply did not fit into the -- user-provided buffer. Maybe the second -- answer will. */ -- *anssizp2 = orig_anssizp; -- *ansp2 = *ansp; -- } -- - thisanssizp = anssizp2; - thisansp = ansp2; - thisresplenp = resplen2; - } - - if (*thisanssizp < MAXPACKET -- /* Yes, we test ANSCP here. If we have two buffers -- both will be allocatable. */ -- && anscp -+ /* If the current buffer is not the the static -+ user-supplied buffer then we can reallocate -+ it. */ -+ && (thisansp != NULL && thisansp != ansp) - #ifdef FIONREAD -+ /* Is the size too small? */ - && (ioctl (pfd[0].fd, FIONREAD, thisresplenp) < 0 - || *thisanssizp < *thisresplenp) - #endif - ) { -+ /* Always allocate MAXPACKET, callers expect -+ this specific size. */ - u_char *newp = malloc (MAXPACKET); - if (newp != NULL) { -- *anssizp = MAXPACKET; -- *thisansp = ans = newp; -+ *thisanssizp = MAXPACKET; -+ *thisansp = newp; - if (thisansp == ansp2) - *ansp2_malloced = 1; - } - } -+ /* We could end up with truncation if anscp was NULL -+ (not allowed to change caller's buffer) and the -+ response buffer size is too small. This isn't a -+ reliable way to detect truncation because the ioctl -+ may be an inaccurate report of the UDP message size. -+ Therefore we use this only to issue debug output. -+ To do truncation accurately with UDP we need -+ MSG_TRUNC which is only available on Linux. We -+ can abstract out the Linux-specific feature in the -+ future to detect truncation. */ -+ if (__glibc_unlikely (*thisanssizp < *thisresplenp)) { -+ Dprint(statp->options & RES_DEBUG, -+ (stdout, ";; response may be truncated (UDP)\n") -+ ); -+ } -+ - HEADER *anhp = (HEADER *) *thisansp; - socklen_t fromlen = sizeof(struct sockaddr_in6); - assert (sizeof(from) <= fromlen); diff --git a/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch b/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch deleted file mode 100644 index 8ca2ce4cd88..00000000000 --- a/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch +++ /dev/null @@ -1,25 +0,0 @@ -http://git.savannah.gnu.org/cgit/guix.git/plain/gnu/packages/patches/glibc-locale-incompatibility.patch - -This patch avoids an assertion failure when incompatible locale data -is encountered: - - https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html - ---- glibc-2.22/locale/loadlocale.c 2015-09-22 17:16:02.321981548 +0200 -+++ glibc-2.22/locale/loadlocale.c 2015-09-22 17:17:34.814659064 +0200 -@@ -120,10 +120,11 @@ - _nl_value_type_LC_XYZ array. There are all pointers. */ - switch (category) - { --#define CATTEST(cat) \ -- case LC_##cat: \ -- assert (cnt < (sizeof (_nl_value_type_LC_##cat) \ -- / sizeof (_nl_value_type_LC_##cat[0]))); \ -+#define CATTEST(cat) \ -+ case LC_##cat: \ -+ if (cnt >= (sizeof (_nl_value_type_LC_##cat) \ -+ / sizeof (_nl_value_type_LC_##cat[0]))) \ -+ goto puntdata; \ - break - CATTEST (NUMERIC); - CATTEST (TIME); From 17ad5ab0a9bde13c3e97f5be050f32d7c8dd503e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 21 Feb 2016 18:22:59 +0000 Subject: [PATCH 079/291] gist: 4.4.2 -> 4.5.0 Fixes #13158 --- pkgs/tools/text/gist/Gemfile | 2 -- pkgs/tools/text/gist/Gemfile.lock | 10 ---------- pkgs/tools/text/gist/default.nix | 30 +++++++++++++++++++++--------- pkgs/tools/text/gist/gemset.nix | 9 --------- 4 files changed, 21 insertions(+), 30 deletions(-) delete mode 100644 pkgs/tools/text/gist/Gemfile delete mode 100644 pkgs/tools/text/gist/Gemfile.lock delete mode 100644 pkgs/tools/text/gist/gemset.nix diff --git a/pkgs/tools/text/gist/Gemfile b/pkgs/tools/text/gist/Gemfile deleted file mode 100644 index 18500f898f1..00000000000 --- a/pkgs/tools/text/gist/Gemfile +++ /dev/null @@ -1,2 +0,0 @@ -source "https://rubygems.org" -gem "gist" diff --git a/pkgs/tools/text/gist/Gemfile.lock b/pkgs/tools/text/gist/Gemfile.lock deleted file mode 100644 index 7414da072ad..00000000000 --- a/pkgs/tools/text/gist/Gemfile.lock +++ /dev/null @@ -1,10 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - gist (4.4.2) - -PLATFORMS - ruby - -DEPENDENCIES - gist diff --git a/pkgs/tools/text/gist/default.nix b/pkgs/tools/text/gist/default.nix index 223ba59eecb..ca9de0590ca 100644 --- a/pkgs/tools/text/gist/default.nix +++ b/pkgs/tools/text/gist/default.nix @@ -1,15 +1,27 @@ -{ stdenv, lib, bundlerEnv }: +{ buildRubyGem, lib, ruby, makeWrapper }: + +buildRubyGem rec { + inherit ruby; + name = "${gemName}-${version}"; + gemName = "gist"; + version = "4.5.0"; + sha256 = "0k9bgjdmnr14whmjx6c8d5ak1dpazirj96hk5ds69rl5d9issw0l"; + + buildInputs = [ makeWrapper ]; + + postInstall = '' + # Fix the default ruby wrapper + makeWrapper $out/${ruby.gemPath}/bin/gist $out/bin/gist \ + --set GEM_PATH $out/${ruby.gemPath}:${ruby}/${ruby.gemPath} + ''; + + dontStrip = true; -let version = "4.4.2"; -in bundlerEnv { - name = "gist-${version}"; - gemfile = ./Gemfile; - lockfile = ./Gemfile.lock; - gemset = ./gemset.nix; meta = with lib; { - homepage = "http://defunkt.io/gist/"; description = "upload code to https://gist.github.com (or github enterprise)"; - platforms = platforms.all; + homepage = "http://defunkt.io/gist/"; license = licenses.mit; + maintainers = with maintainers; [ zimbatm ]; + platforms = ruby.meta.platforms; }; } diff --git a/pkgs/tools/text/gist/gemset.nix b/pkgs/tools/text/gist/gemset.nix deleted file mode 100644 index 961f96dcb97..00000000000 --- a/pkgs/tools/text/gist/gemset.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ - "gist" = { - version = "4.4.2"; - source = { - type = "gem"; - sha256 = "0lr4rywpm549llk0ypdpb3sjdpqw9snzwzqc3dggg8qn5wj69k81"; - }; - }; -} \ No newline at end of file From 5d8c4443f1827e8ba0d86885a13215251e55c69b Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 21 Feb 2016 20:24:07 +0100 Subject: [PATCH 080/291] ddclient: add meta.platforms --- pkgs/tools/networking/ddclient/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/networking/ddclient/default.nix b/pkgs/tools/networking/ddclient/default.nix index 1664fbf3707..53a0f4c3e6d 100644 --- a/pkgs/tools/networking/ddclient/default.nix +++ b/pkgs/tools/networking/ddclient/default.nix @@ -32,5 +32,8 @@ buildPerlPackage rec { homepage = https://sourceforge.net/p/ddclient/wiki/Home/; description = "Client for updating dynamic DNS service entries"; license = licenses.gpl2Plus; + + # Mostly since `iproute` is Linux only. + platforms = platforms.linux; }; } From 7d6f2c4e3f84daa2ec3f5d971918f0f34d556f1f Mon Sep 17 00:00:00 2001 From: Michael Hoy Date: Sun, 21 Feb 2016 13:41:02 -0600 Subject: [PATCH 081/291] mdk: init at 1.2.9 --- pkgs/development/tools/mdk/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/tools/mdk/default.nix diff --git a/pkgs/development/tools/mdk/default.nix b/pkgs/development/tools/mdk/default.nix new file mode 100644 index 00000000000..f54b409efb6 --- /dev/null +++ b/pkgs/development/tools/mdk/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, intltool, pkgconfig, glib }: + +stdenv.mkDerivation { + name = "gnu-mdk-1.2.9"; + src = fetchurl { + url = http://ftp.gnu.org/gnu/mdk/v1.2.9/mdk-1.2.9.tar.gz; + md5 = "08c96baa4b99dd9d25190dd15fe415a5"; + }; + buildInputs = [ intltool pkgconfig glib ]; + postInstall = '' + mkdir -p $out/share/emacs/site-lisp/ + cp -v ./misc/*.el $out/share/emacs/site-lisp + ''; + + meta = { + description = "GNU MIX Development Kit (MDK)"; + homepage = https://www.gnu.org/software/mdk/; + license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e016152a5c..2871a261b0f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2344,6 +2344,8 @@ let inherit (gnome) scrollkeeper; }; + mdk = callPackage ../development/tools/mdk { }; + mdp = callPackage ../applications/misc/mdp { }; mednafen = callPackage ../misc/emulators/mednafen { }; From b58e26dbf6ada6a424e958c69da049b1af8e84e7 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 2 Aug 2015 01:11:17 +0100 Subject: [PATCH 082/291] cide: init at 0.8.1 --- .../tools/continuous-integration/cide/Gemfile | 6 + .../continuous-integration/cide/Gemfile.lock | 40 +++++++ .../continuous-integration/cide/default.nix | 32 ++++++ .../continuous-integration/cide/gemset.nix | 103 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 5 files changed, 183 insertions(+) create mode 100644 pkgs/development/tools/continuous-integration/cide/Gemfile create mode 100644 pkgs/development/tools/continuous-integration/cide/Gemfile.lock create mode 100644 pkgs/development/tools/continuous-integration/cide/default.nix create mode 100644 pkgs/development/tools/continuous-integration/cide/gemset.nix diff --git a/pkgs/development/tools/continuous-integration/cide/Gemfile b/pkgs/development/tools/continuous-integration/cide/Gemfile new file mode 100644 index 00000000000..7e72ac0529d --- /dev/null +++ b/pkgs/development/tools/continuous-integration/cide/Gemfile @@ -0,0 +1,6 @@ +source "https://rubygems.org" + +gem 'cide' + +# Optional dependency, only used by `cide upload` +gem 'aws-sdk', '~> 2' diff --git a/pkgs/development/tools/continuous-integration/cide/Gemfile.lock b/pkgs/development/tools/continuous-integration/cide/Gemfile.lock new file mode 100644 index 00000000000..7db1b9db9b3 --- /dev/null +++ b/pkgs/development/tools/continuous-integration/cide/Gemfile.lock @@ -0,0 +1,40 @@ +GEM + remote: https://rubygems.org/ + specs: + aws-sdk (2.2.17) + aws-sdk-resources (= 2.2.17) + aws-sdk-core (2.2.17) + jmespath (~> 1.0) + aws-sdk-resources (2.2.17) + aws-sdk-core (= 2.2.17) + axiom-types (0.1.1) + descendants_tracker (~> 0.0.4) + ice_nine (~> 0.11.0) + thread_safe (~> 0.3, >= 0.3.1) + cide (0.8.1) + thor (~> 0.19) + virtus (~> 1.0) + coercible (1.0.0) + descendants_tracker (~> 0.0.1) + descendants_tracker (0.0.4) + thread_safe (~> 0.3, >= 0.3.1) + equalizer (0.0.11) + ice_nine (0.11.2) + jmespath (1.1.3) + thor (0.19.1) + thread_safe (0.3.5) + virtus (1.0.5) + axiom-types (~> 0.1) + coercible (~> 1.0) + descendants_tracker (~> 0.0, >= 0.0.3) + equalizer (~> 0.0, >= 0.0.9) + +PLATFORMS + ruby + +DEPENDENCIES + aws-sdk (~> 2) + cide + +BUNDLED WITH + 1.10.6 diff --git a/pkgs/development/tools/continuous-integration/cide/default.nix b/pkgs/development/tools/continuous-integration/cide/default.nix new file mode 100644 index 00000000000..1dc8f8def33 --- /dev/null +++ b/pkgs/development/tools/continuous-integration/cide/default.nix @@ -0,0 +1,32 @@ +{ stdenv, lib, bundlerEnv, makeWrapper, docker }: + +stdenv.mkDerivation rec { + name = "cide-${version}"; + version = "0.8.1"; + + env = bundlerEnv { + name = "${name}-gems"; + + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + }; + + phases = ["installPhase"]; + + buildInputs = [ makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + makeWrapper ${env}/bin/cide $out/bin/cide \ + --set PATH ${docker}/bin + ''; + + meta = with lib; { + description = "Isolated test runner with Docker"; + homepage = http://zimbatm.github.io/cide/; + license = licenses.mit; + maintainers = with maintainers; [ zimbatm ]; + platforms = docker.meta.platforms; + }; +} diff --git a/pkgs/development/tools/continuous-integration/cide/gemset.nix b/pkgs/development/tools/continuous-integration/cide/gemset.nix new file mode 100644 index 00000000000..2d5df24bb45 --- /dev/null +++ b/pkgs/development/tools/continuous-integration/cide/gemset.nix @@ -0,0 +1,103 @@ +{ + virtus = { + dependencies = ["axiom-types" "coercible" "descendants_tracker" "equalizer"]; + source = { + sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; + type = "gem"; + }; + version = "1.0.5"; + }; + thread_safe = { + source = { + sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; + type = "gem"; + }; + version = "0.3.5"; + }; + thor = { + source = { + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + type = "gem"; + }; + version = "0.19.1"; + }; + jmespath = { + version = "1.1.3"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0vpvd61kc60f98jn28kw7x7vi82qrwgglam42nvzh98i43yxwsfb"; + }; + }; + ice_nine = { + version = "0.11.2"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1nv35qg1rps9fsis28hz2cq2fx1i96795f91q4nmkm934xynll2x"; + }; + }; + equalizer = { + source = { + sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; + type = "gem"; + }; + version = "0.0.11"; + }; + descendants_tracker = { + dependencies = ["thread_safe"]; + source = { + sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; + type = "gem"; + }; + version = "0.0.4"; + }; + coercible = { + dependencies = ["descendants_tracker"]; + source = { + sha256 = "1p5azydlsz0nkxmcq0i1gzmcfq02lgxc4as7wmf47j1c6ljav0ah"; + type = "gem"; + }; + version = "1.0.0"; + }; + cide = { + version = "0.8.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1vsa7smab5dj6mcf0csl9wm18x95h6yphm7x18is53bv5hrzgill"; + }; + }; + axiom-types = { + dependencies = ["descendants_tracker" "ice_nine" "thread_safe"]; + source = { + sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; + type = "gem"; + }; + version = "0.1.1"; + }; + aws-sdk-resources = { + version = "2.2.17"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0vdnpjmil99n9d1fpk1w6ssgvmzx4wfmrqcij8nyd0iqdaacx3fj"; + }; + }; + aws-sdk-core = { + version = "2.2.17"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1vq7ny5n3rdfzkdqdm76r48slmp2a5v7565llrl4bw5hb5k4p75z"; + }; + }; + aws-sdk = { + version = "2.2.17"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1cwycrdk21blzjzf8fj1wlmdix94rj9aixj6phx6lwbqykn2dzx9"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e016152a5c..4a3ea879016 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5754,6 +5754,8 @@ let chruby = callPackage ../development/tools/misc/chruby { rubies = null; }; + cide = callPackage ../development/tools/continuous-integration/cide { }; + "cl-launch" = callPackage ../development/tools/misc/cl-launch {}; coan = callPackage ../development/tools/analysis/coan { }; From 8765e9b3bc7e102ac8be7464fbdfdaf971315b94 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 21 Feb 2016 20:42:26 -0600 Subject: [PATCH 083/291] melpaPackages 2016-02-21 --- .../editors/emacs-modes/melpa-generated.nix | 8719 +++++++++-------- 1 file changed, 4713 insertions(+), 4006 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix index b8128ddfe8a..138c53dfe9a 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix @@ -10,7 +10,7 @@ sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/0blayout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/0blayout"; sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; name = "_0blayout"; }; @@ -30,7 +30,7 @@ sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/2048-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/2048-game"; sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0"; name = "_2048-game"; }; @@ -51,7 +51,7 @@ sha256 = "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/4clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/4clojure"; sha256 = "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb"; name = "_4clojure"; }; @@ -72,7 +72,7 @@ sha256 = "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; @@ -93,7 +93,7 @@ sha256 = "09hy7rj27h7xbvasd87146di4vhpg5cmqc9f39fy0ihmv9gy56za"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/abl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abl-mode"; sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb"; name = "abl-mode"; }; @@ -114,7 +114,7 @@ sha256 = "1zifkqkxb0wzddfcapm71g3k52fn36ink779imyncg72plg216g0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/abyss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abyss-theme"; sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; name = "abyss-theme"; }; @@ -135,7 +135,7 @@ sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; @@ -148,15 +148,15 @@ ac-anaconda = callPackage ({ anaconda-mode, auto-complete, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-anaconda"; - version = "20150912.308"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "ac-anaconda"; - rev = "d0dec5c026235f65f9fd6594540df8886ed1b6a8"; - sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44"; + rev = "e42b68f648a4179c76b56b7ff03d25a6e482f38c"; + sha256 = "092m8y38h4irh2ig6n6510gw2scjjxah37zim6mk92jzn1xv06d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; @@ -177,7 +177,7 @@ sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-c-headers"; sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv"; name = "ac-c-headers"; }; @@ -198,7 +198,7 @@ sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; @@ -219,7 +219,7 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; @@ -240,7 +240,7 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; @@ -261,7 +261,7 @@ sha256 = "1k4zk27zvxmcffwwg0zx19rcy2ysd65nnrifwspdw699glpwx2l5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; @@ -282,7 +282,7 @@ sha256 = "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; @@ -300,7 +300,7 @@ sha256 = "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-dabbrev"; sha256 = "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh"; name = "ac-dabbrev"; }; @@ -321,7 +321,7 @@ sha256 = "1dydjkilvyzxl7wwy3afmn1cjf8jv0385im4nhn8c3xr8iiil7yv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; @@ -342,7 +342,7 @@ sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-emmet"; sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x"; name = "ac-emmet"; }; @@ -363,7 +363,7 @@ sha256 = "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; @@ -384,7 +384,7 @@ sha256 = "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; @@ -405,7 +405,7 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; @@ -426,7 +426,7 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; @@ -447,7 +447,7 @@ sha256 = "1ycchpiiavxw8n08gra0bsp9pxp6ln8cgjrkz9jjq7i6ixi8f9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; @@ -468,7 +468,7 @@ sha256 = "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; @@ -489,7 +489,7 @@ sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html-angular"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-angular"; sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s"; name = "ac-html-angular"; }; @@ -510,7 +510,7 @@ sha256 = "0v33p6lnsq1nwyxfbgs6vg6fidfyqwxd5wls2yza95yxzl30m9r7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; @@ -531,7 +531,7 @@ sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; @@ -552,7 +552,7 @@ sha256 = "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; @@ -573,7 +573,7 @@ sha256 = "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; @@ -594,7 +594,7 @@ sha256 = "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-js2"; sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa"; name = "ac-js2"; }; @@ -615,7 +615,7 @@ sha256 = "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-math"; sha256 = "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4"; name = "ac-math"; }; @@ -636,7 +636,7 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; @@ -657,7 +657,7 @@ sha256 = "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; @@ -678,7 +678,7 @@ sha256 = "013j8iv62jiq3pbammh3ia6dcf9dm28w938nkh7hljh1c26hg4hp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-php"; sha256 = "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk"; name = "ac-php"; }; @@ -710,7 +710,7 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; @@ -731,7 +731,7 @@ sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-skk"; sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z"; name = "ac-skk"; }; @@ -752,7 +752,7 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; @@ -773,7 +773,7 @@ sha256 = "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-sly"; sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx"; name = "ac-sly"; }; @@ -794,7 +794,7 @@ sha256 = "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; @@ -815,7 +815,7 @@ sha256 = "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; @@ -825,22 +825,22 @@ license = lib.licenses.free; }; }) {}; - ace-jump-buffer = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + ace-jump-buffer = callPackage ({ avy, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-buffer"; - version = "20150215.34"; + version = "20160219.1756"; src = fetchFromGitHub { owner = "waymondo"; repo = "ace-jump-buffer"; - rev = "9299ebd4bbbf6ba78dcb40440b3aadd7b540375c"; - sha256 = "11c9jfrh9mzi0qwbvgcjia6s1gkwb76ssiraka3f4k7rc8dli11y"; + rev = "d652091416bbe01d1a839809976b8fd6b8eddf32"; + sha256 = "154p332ikyc06hl0paqjyq3hzmf1afv9mwspx6333frsif0g0bds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; - packageRequires = [ ace-jump-mode dash ]; + packageRequires = [ avy dash ]; meta = { homepage = "http://melpa.org/#/ace-jump-buffer"; license = lib.licenses.free; @@ -849,15 +849,15 @@ ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "ace-jump-helm-line"; - version = "20151113.1300"; + version = "20160220.136"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-jump-helm-line"; - rev = "8400dbdd93d0442493f74f4030b09bbfac2d5700"; - sha256 = "0yfhny921krpl9j8x7xflj8jzbrj8fkabc8373b8q5hyz20d332k"; + rev = "cda9ef9c8d5efdcd027600fe0628b990e32d698f"; + sha256 = "0qd49jbm4rlkv6idjfhfyhifmjlqfag0n06rm7wmyhbzg11lfynf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; @@ -878,7 +878,7 @@ sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; @@ -899,7 +899,7 @@ sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; @@ -920,7 +920,7 @@ sha256 = "1vs5rwd3gwpydr2fyszjxdkvpzl0vrr48g8f0180fz5b3phh1h1i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; @@ -941,7 +941,7 @@ sha256 = "1zx94dysd817i4xgapzm6fb8fcqb90sqym212b57qlqimyi3f59m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; @@ -962,7 +962,7 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; @@ -983,7 +983,7 @@ sha256 = "053074jyinr3a2zkr1jfgmizdbhk5s37vrvf490x2hwf19dzis4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; @@ -1003,7 +1003,7 @@ sha256 = "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/achievements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/achievements"; sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr"; name = "achievements"; }; @@ -1024,7 +1024,7 @@ sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; @@ -1045,7 +1045,7 @@ sha256 = "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; @@ -1058,15 +1058,15 @@ addressbook-bookmark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "addressbook-bookmark"; - version = "20160108.1008"; + version = "20160205.133"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "addressbook-bookmark"; - rev = "a1de09c69666195f53532e652706b1cec86b9c0d"; - sha256 = "1ag8zs8bkazblvgxm0q4lnpvdlnzswx1jb4jjbrs2bmq7qmmwvns"; + rev = "4bac9327e8ccfbe48d0928c2167c4392d14e7019"; + sha256 = "044piw8jrg6j313cijry38x9mrwvl4b2a46ak2949xqrljh766k6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/addressbook-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/addressbook-bookmark"; sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r"; name = "addressbook-bookmark"; }; @@ -1087,7 +1087,7 @@ sha256 = "01fn73vyhdcy84s60r2jjy9a0xm3zwagpzi6b4qlankbvswypask"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; @@ -1108,7 +1108,7 @@ sha256 = "1p90yv2xl1hhpjm0mmhdjyf1jagf79610hkzhw8nycy2p1y4gvl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; @@ -1129,7 +1129,7 @@ sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/afternoon-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/afternoon-theme"; sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj"; name = "afternoon-theme"; }; @@ -1150,7 +1150,7 @@ sha256 = "1ra5nrc4nvp41rcdc4nkjs9lk7131zd54v63c6lyi3zkg3dyl7im"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; @@ -1171,7 +1171,7 @@ sha256 = "18zlxgwcvqhlw9y7zn6fywmy04f7rs71fd5ihcx28j4rx9ay929c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aggressive-fill-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aggressive-fill-paragraph"; sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja"; name = "aggressive-fill-paragraph"; }; @@ -1184,15 +1184,15 @@ aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "20160115.1614"; + version = "20160209.1156"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; - rev = "651812f8fca9c0beb337a04438949bbfb879b5f7"; - sha256 = "1mymlsm469nl4jaxkjgn26ij37mdf4rjv7kswjwf626bxq9s3136"; + rev = "1b831d21ac9688e3f31703f0b492202f6d24a75b"; + sha256 = "0g8mhfab55a4jvb00kcv9f8cyx4l4d5qyfvp7sf7z12qnkik7b6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; @@ -1211,7 +1211,7 @@ sha256 = "0fnn52b2prai8dlsj4759mbcgbbbvhr2lbqs3f0k5d2q8vvqrch1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ahg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahg"; sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4"; name = "ahg"; }; @@ -1224,15 +1224,15 @@ ahk-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahk-mode"; - version = "20151104.1737"; + version = "20160214.1922"; src = fetchFromGitHub { owner = "ralesi"; repo = "ahk-mode"; - rev = "e08a1b467d42b9d5e719c39407908152011b4573"; - sha256 = "122as0ssc6xzmxb5hlvhx6dlx6gq2f70xisz0z8pxgm3bpf9h6mx"; + rev = "d437ed0b3d3d38d0d0eec794ded019459b32f42a"; + sha256 = "1ff0am1j619ypvjkmihrc8zxvv45grllj6wyka0r6mb3z189xyjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; @@ -1245,15 +1245,15 @@ ahungry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahungry-theme"; - version = "20151014.2138"; + version = "20160208.2232"; src = fetchFromGitHub { owner = "ahungry"; repo = "color-theme-ahungry"; - rev = "52b050992ef6fe0e6e57b51bcb5c98e02c616541"; - sha256 = "0dlk53zij907413fl6wh02i8nwzrbbrm22nn3i9h5sc8x9dhzazg"; + rev = "1ce5a659e968af25122b46a3fc3b04b30b5ebdd5"; + sha256 = "1436i7vdzaqykimfrm2y1s3dw2q398dzv1hyr9mr5z4kxa5f0rjj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ahungry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahungry-theme"; sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy"; name = "ahungry-theme"; }; @@ -1274,7 +1274,7 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; @@ -1295,7 +1295,7 @@ sha256 = "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/airplay"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/airplay"; sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f"; name = "airplay"; }; @@ -1308,15 +1308,15 @@ alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "alchemist"; - version = "20160125.107"; + version = "20160215.144"; src = fetchFromGitHub { owner = "tonini"; repo = "alchemist.el"; - rev = "f7d442107910b16a7e5727c4435463be1307b6a4"; - sha256 = "0z87n537g2l99s9sgqdaagappfr3fm9p7yyh0946cnh80m8c71la"; + rev = "091a6f3b5e2785dcac3ae1a514eb73b0e8dbf469"; + sha256 = "0vc1nadbj16wv75xfl4l662ifmhgsankldj6c580v4clj3ck482b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; @@ -1326,6 +1326,27 @@ license = lib.licenses.free; }; }) {}; + alda-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "alda-mode"; + version = "20160220.923"; + src = fetchFromGitHub { + owner = "jgkamat"; + repo = "alda-mode"; + rev = "a77e835d117375eb31c975f4eda61f6513d07142"; + sha256 = "0pyfilaqwcnvllwmy575ldi8ac5is2dj4qhxaw19300iqa1hpfkj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alda-mode"; + sha256 = "0vpxiw3k0qxp6s19n93qkkyrr44rbw38ygriqdrfpp84pa09wprh"; + name = "alda-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/alda-mode"; + license = lib.licenses.free; + }; + }) {}; alect-themes = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alect-themes"; @@ -1337,7 +1358,7 @@ sha256 = "0hvf7ydd2p3dfk5hqjqcbaajhgihkyvlwvqcr97a8jknznk7hfzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; @@ -1358,7 +1379,7 @@ sha256 = "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; @@ -1379,7 +1400,7 @@ sha256 = "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/align-cljlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/align-cljlet"; sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih"; name = "align-cljlet"; }; @@ -1397,7 +1418,7 @@ sha256 = "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/all-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/all-ext"; sha256 = "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv"; name = "all-ext"; }; @@ -1407,22 +1428,31 @@ license = lib.licenses.free; }; }) {}; - amd-mode = callPackage ({ dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: + amd-mode = callPackage ({ ag, dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: melpaBuild { pname = "amd-mode"; - version = "20160202.953"; + version = "20160210.732"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "amd-mode.el"; - rev = "e552bdd3a0d24e9c471fd21c4a2ae17cb20c7594"; - sha256 = "1b7w8zrcliibwxlrrzmi2r684f59jzd892c556svh3qad048mriv"; + rev = "e3dc1a3d02734a2b6194aa80e7c0ec1c82e68c6f"; + sha256 = "09vzcy842lzi67lbx5kkhn868nsxvbahkp13697p6dhb58b71rlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; - packageRequires = [ dash f js2-mode js2-refactor makey projectile s ]; + packageRequires = [ + ag + dash + f + js2-mode + js2-refactor + makey + projectile + s + ]; meta = { homepage = "http://melpa.org/#/amd-mode"; license = lib.licenses.free; @@ -1439,7 +1469,7 @@ sha256 = "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ample-regexps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ample-regexps"; sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2"; name = "ample-regexps"; }; @@ -1460,7 +1490,7 @@ sha256 = "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ample-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ample-theme"; sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry"; name = "ample-theme"; }; @@ -1481,7 +1511,7 @@ sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ample-zen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ample-zen-theme"; sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3"; name = "ample-zen-theme"; }; @@ -1494,15 +1524,15 @@ anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: melpaBuild { pname = "anaconda-mode"; - version = "20150922.737"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "anaconda-mode"; - rev = "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8"; - sha256 = "01a9l785chmcf6d7fsyc72gapapb4gddgqmpps705zpkhjm8f6wj"; + rev = "395b111de79cc204a976be5d37133a08d794b54c"; + sha256 = "0ripdiyr93c6cdb42inni18p1p39gl9pjjgbzkp1b072y8dgrv10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; @@ -1523,7 +1553,7 @@ sha256 = "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; @@ -1542,7 +1572,7 @@ sha256 = "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anchored-transpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anchored-transpose"; sha256 = "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w"; name = "anchored-transpose"; }; @@ -1563,7 +1593,7 @@ sha256 = "1ms338qq17nwivpq8c1xsnld5k532rfhgvfxx1zg3l8wrjh235d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; @@ -1584,7 +1614,7 @@ sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/angry-police-captain"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angry-police-captain"; sha256 = "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r"; name = "angry-police-captain"; }; @@ -1605,7 +1635,7 @@ sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; @@ -1626,7 +1656,7 @@ sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; @@ -1647,7 +1677,7 @@ sha256 = "08gs96r9mbdg0s5l504yp6i5nmi9qr4nwxq3xprsbx9bdzv5l2dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; @@ -1668,7 +1698,7 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; @@ -1689,7 +1719,7 @@ sha256 = "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansi"; sha256 = "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1"; name = "ansi"; }; @@ -1710,7 +1740,7 @@ sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; @@ -1731,7 +1761,7 @@ sha256 = "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; @@ -1744,15 +1774,15 @@ ant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ant"; - version = "20131228.107"; + version = "20160211.943"; src = fetchFromGitHub { owner = "apgwoz"; repo = "ant-el"; - rev = "8afe6cd0ee4674911ce6b9381b551ab22c567c49"; - sha256 = "1g4ah0iwqrvvzcxr0ss6il5kign73gzcz1dbc22wdgprlfa4hah7"; + rev = "510b5a3f57ee4b2855422d88d359a28922c1ab70"; + sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ant"; sha256 = "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6"; name = "ant"; }; @@ -1765,15 +1795,15 @@ anti-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anti-zenburn-theme"; - version = "20160119.1705"; + version = "20160205.2009"; src = fetchFromGitHub { owner = "m00natic"; repo = "anti-zenburn-theme"; - rev = "72906fbf1f47035ad97e39c0dea1a6b46b091a64"; - sha256 = "0h3zl56n27r331xrbx4sa6vhqbhrhkji1idqlmba0z16dlzfp1pw"; + rev = "bbb3517dcba4ea3b03bb6e0469b8e71c8b9a76e1"; + sha256 = "02m991awps2b0h31ybrwxznbz88f10a241fmy34r671lrni2ymgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; @@ -1794,7 +1824,7 @@ sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anx-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anx-api"; sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r"; name = "anx-api"; }; @@ -1815,7 +1845,7 @@ sha256 = "0qy5q4rq68nb21k7w3xpil8k8k5awcpjrjlxjwnhcklwb83w3dhf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anybar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anybar"; sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm"; name = "anybar"; }; @@ -1836,7 +1866,7 @@ sha256 = "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; @@ -1856,7 +1886,7 @@ sha256 = "e90ded84609e59a4cef22bfd9d9a543ec6b677b78ab44fb4eb6cbae9eb248669"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; @@ -1877,7 +1907,7 @@ sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; @@ -1898,7 +1928,7 @@ sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-git-files"; sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw"; name = "anything-git-files"; }; @@ -1919,7 +1949,7 @@ sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-git-grep"; sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl"; name = "anything-git-grep"; }; @@ -1940,7 +1970,7 @@ sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-milkode"; sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan"; name = "anything-milkode"; }; @@ -1961,7 +1991,7 @@ sha256 = "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-project"; sha256 = "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr"; name = "anything-project"; }; @@ -1982,7 +2012,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-prosjekt"; sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8"; name = "anything-prosjekt"; }; @@ -2003,7 +2033,7 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; @@ -2024,7 +2054,7 @@ sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; @@ -2045,7 +2075,7 @@ sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; @@ -2063,7 +2093,7 @@ sha256 = "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aok"; sha256 = "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46"; name = "aok"; }; @@ -2084,7 +2114,7 @@ sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aozora-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aozora-view"; sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w"; name = "aozora-view"; }; @@ -2102,7 +2132,7 @@ sha256 = "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apache-mode"; sha256 = "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44"; name = "apache-mode"; }; @@ -2123,7 +2153,7 @@ sha256 = "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apel"; sha256 = "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y"; name = "apel"; }; @@ -2144,7 +2174,7 @@ sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; @@ -2164,7 +2194,7 @@ sha256 = "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/applescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/applescript-mode"; sha256 = "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611"; name = "applescript-mode"; }; @@ -2185,7 +2215,7 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; @@ -2204,7 +2234,7 @@ sha256 = "0wc9zg30a48cj2ssfj9wc7ga0ip9igcxcdbn1wr0qmndzxxa7x5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apropos-fn+var"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apropos-fn+var"; sha256 = "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x"; name = "apropos-fn-plus-var"; }; @@ -2217,15 +2247,15 @@ apropospriate-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apropospriate-theme"; - version = "20160124.118"; + version = "20160212.1130"; src = fetchFromGitHub { owner = "waymondo"; repo = "apropospriate-theme"; - rev = "c35c9799556194298e67dd0f03a7dcfa72040a54"; - sha256 = "0gipjdjg6ds04wlg6kf6qjanl24jfzzhkjw8ngjqwla98vly7qcr"; + rev = "bdd9deddd78df2e8dda0030de5d3e86003bf2f4e"; + sha256 = "0j0k5ak5pzh3n2grf7b6b7ajxsp4ssv2l5gmg08kmbdwscavzc4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apropospriate-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apropospriate-theme"; sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9"; name = "apropospriate-theme"; }; @@ -2243,7 +2273,7 @@ sha256 = "1xbvky0mspmbi8ghqhqhgbjn70acipwf0qwn6s5zdarwch10nljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apu"; sha256 = "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2"; name = "apu"; }; @@ -2261,7 +2291,7 @@ sha256 = "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/archive-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/archive-region"; sha256 = "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd"; name = "archive-region"; }; @@ -2282,7 +2312,7 @@ sha256 = "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/arduino-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/arduino-mode"; sha256 = "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx"; name = "arduino-mode"; }; @@ -2302,7 +2332,7 @@ sha256 = "2713755e56b03e28a5a6e10c85865c1ace0247e71caeb8b89ec65d5618addafc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aria2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aria2"; sha256 = "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc"; name = "aria2"; }; @@ -2323,7 +2353,7 @@ sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ariadne"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ariadne"; sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p"; name = "ariadne"; }; @@ -2344,7 +2374,7 @@ sha256 = "1i6y3kv2vii6f8gpd845vv6h832hqx0vxb3fmb1x80kwx3gda682"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/arjen-grey-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/arjen-grey-theme"; sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7"; name = "arjen-grey-theme"; }; @@ -2365,7 +2395,7 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; @@ -2383,7 +2413,7 @@ sha256 = "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ascii"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ascii"; sha256 = "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r"; name = "ascii"; }; @@ -2404,7 +2434,7 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; @@ -2425,7 +2455,7 @@ sha256 = "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/asn1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/asn1-mode"; sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy"; name = "asn1-mode"; }; @@ -2446,7 +2476,7 @@ sha256 = "074wdciq62jfc41f829590p4y52dnkn3nxicj9lcabgxwz7cahjp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; @@ -2467,7 +2497,7 @@ sha256 = "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/@"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/@"; sha256 = "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz"; name = "at"; }; @@ -2488,7 +2518,7 @@ sha256 = "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/atom-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/atom-dark-theme"; sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f"; name = "atom-dark-theme"; }; @@ -2509,7 +2539,7 @@ sha256 = "027j027w2nbplg1gi28hg9iyiirigydj5n4npf7y9a6g626snxz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/atom-one-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/atom-one-dark-theme"; sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; name = "atom-one-dark-theme"; }; @@ -2530,7 +2560,7 @@ sha256 = "1h0044zfzklc9sy0a02vcdr75ly6wlhjx3n5bvq7yiicqd012316"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auctex-latexmk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auctex-latexmk"; sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327"; name = "auctex-latexmk"; }; @@ -2551,7 +2581,7 @@ sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auctex-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auctex-lua"; sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf"; name = "auctex-lua"; }; @@ -2572,7 +2602,7 @@ sha256 = "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/audio-notes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/audio-notes-mode"; sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h"; name = "audio-notes-mode"; }; @@ -2593,7 +2623,7 @@ sha256 = "0z0wq79ks8251fflk2iwrhd885h5qbki2m19f0jy4a8c00ydmxyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; @@ -2614,7 +2644,7 @@ sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aurora-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurora-config-mode"; sha256 = "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm"; name = "aurora-config-mode"; }; @@ -2635,7 +2665,7 @@ sha256 = "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aurora-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurora-theme"; sha256 = "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5"; name = "aurora-theme"; }; @@ -2656,7 +2686,7 @@ sha256 = "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; @@ -2675,7 +2705,7 @@ sha256 = "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-async-byte-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-async-byte-compile"; sha256 = "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj"; name = "auto-async-byte-compile"; }; @@ -2696,7 +2726,7 @@ sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-auto-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-auto-indent"; sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7"; name = "auto-auto-indent"; }; @@ -2714,7 +2744,7 @@ sha256 = "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-capitalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-capitalize"; sha256 = "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0"; name = "auto-capitalize"; }; @@ -2735,7 +2765,7 @@ sha256 = "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; @@ -2756,7 +2786,7 @@ sha256 = "07ib2pd3apm97v7kalavpc6fyk00cjky8kfwahn37zmw2j2fdhpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; @@ -2777,7 +2807,7 @@ sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-auctex"; sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh"; name = "auto-complete-auctex"; }; @@ -2798,7 +2828,7 @@ sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-c-headers"; sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7"; name = "auto-complete-c-headers"; }; @@ -2819,7 +2849,7 @@ sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-chunk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-chunk"; sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3"; name = "auto-complete-chunk"; }; @@ -2840,7 +2870,7 @@ sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-clang"; sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva"; name = "auto-complete-clang"; }; @@ -2861,7 +2891,7 @@ sha256 = "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; @@ -2882,7 +2912,7 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; @@ -2903,7 +2933,7 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; @@ -2924,7 +2954,7 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; @@ -2945,7 +2975,7 @@ sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-rst"; sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6"; name = "auto-complete-rst"; }; @@ -2966,7 +2996,7 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; @@ -2987,7 +3017,7 @@ sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; @@ -3008,7 +3038,7 @@ sha256 = "0lqfnv8wqnbb5ddwmh9svphc3bgmwdpwx40qw9sgqdzpj3xh7v8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-dim-other-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-dim-other-buffers"; sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh"; name = "auto-dim-other-buffers"; }; @@ -3029,7 +3059,7 @@ sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-highlight-symbol"; sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66"; name = "auto-highlight-symbol"; }; @@ -3050,7 +3080,7 @@ sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; @@ -3068,7 +3098,7 @@ sha256 = "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-install"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-install"; sha256 = "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk"; name = "auto-install"; }; @@ -3089,7 +3119,7 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; @@ -3110,7 +3140,7 @@ sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-save-buffers-enhanced"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-save-buffers-enhanced"; sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb"; name = "auto-save-buffers-enhanced"; }; @@ -3131,7 +3161,7 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; @@ -3141,6 +3171,27 @@ license = lib.licenses.free; }; }) {}; + auto-virtualenv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pyvenv, s }: + melpaBuild { + pname = "auto-virtualenv"; + version = "20160220.836"; + src = fetchFromGitHub { + owner = "marcwebbie"; + repo = "auto-virtualenv"; + rev = "e55bf927da4e29b0f4d9198f3358a87f9970c3b6"; + sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-virtualenv"; + sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk"; + name = "auto-virtualenv"; + }; + packageRequires = [ cl-lib pyvenv s ]; + meta = { + homepage = "http://melpa.org/#/auto-virtualenv"; + license = lib.licenses.free; + }; + }) {}; auto-yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "auto-yasnippet"; @@ -3152,7 +3203,7 @@ sha256 = "14qr8c4i4644vwqvlh5d3xhw1dzmqz3v74hqlp7g8991yaka72va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; @@ -3173,7 +3224,7 @@ sha256 = "01q3k8i8vrs7pcr507kh48np0bc6smanh0ald1hv9h4dylkq89k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autobookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autobookmarks"; sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp"; name = "autobookmarks"; }; @@ -3194,7 +3245,7 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; @@ -3215,7 +3266,7 @@ sha256 = "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; @@ -3234,7 +3285,7 @@ sha256 = "1af45z1w69dkdk4mzjphwn420m9rrkc3djv5kpp6lzbxxnmswbqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autofit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autofit-frame"; sha256 = "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw"; name = "autofit-frame"; }; @@ -3255,7 +3306,7 @@ sha256 = "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/automargin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/automargin"; sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8"; name = "automargin"; }; @@ -3276,7 +3327,7 @@ sha256 = "1z3hd2jkibwz2ijvyh066ki5g30pdqgh2vj2r35prpp12bqabw4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; @@ -3297,7 +3348,7 @@ sha256 = "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autotest"; sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy"; name = "autotest"; }; @@ -3318,7 +3369,7 @@ sha256 = "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autotetris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autotetris-mode"; sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb"; name = "autotetris-mode"; }; @@ -3339,7 +3390,7 @@ sha256 = "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autumn-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autumn-light-theme"; sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a"; name = "autumn-light-theme"; }; @@ -3360,7 +3411,7 @@ sha256 = "0awxmd2lf5rzkw9zdlsxm614asqrl324x2qv9lgakc1f663q72sl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; @@ -3381,7 +3432,7 @@ sha256 = "1a6h44a6id4ash8kp0a59f34658p7czcl2d3i1880k8hckhy445j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; @@ -3394,15 +3445,15 @@ avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "avy-migemo"; - version = "20160110.2233"; + version = "20160210.1114"; src = fetchFromGitHub { owner = "momomo5717"; repo = "avy-migemo"; - rev = "dc951e4c1cca64b97934bed1e7512859d8ff27ac"; - sha256 = "0d8s16f8y9kypl083hgz5rbv47fkb3hvimgw57czf6hlcaaldy75"; + rev = "d95d0485f2fc580a918c4769f669d273c7a6c334"; + sha256 = "0n1c5xvr782zgvby38w6wxrqac1lx35n0m7rl4ki325c6dchkgsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; @@ -3423,7 +3474,7 @@ sha256 = "0s7lhls6gs055kw0893nkb9myv7m2q2p251lq9wh2r3bmia9d6pg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; @@ -3441,7 +3492,7 @@ sha256 = "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/awk-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/awk-it"; sha256 = "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw"; name = "awk-it"; }; @@ -3461,7 +3512,7 @@ sha256 = "1qq0b92mf73fnx2viwzlsxr6672wkskf0vjimymyhv9aq3gw165w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/axiom-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/axiom-environment"; sha256 = "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66"; name = "axiom-environment"; }; @@ -3482,7 +3533,7 @@ sha256 = "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; @@ -3503,7 +3554,7 @@ sha256 = "1wfssdv6ag36ww6v7al2x04mbpaajlx92wfm8rbq8rp8887724s5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/babel-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/babel-repl"; sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x"; name = "babel-repl"; }; @@ -3524,7 +3575,7 @@ sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -3549,7 +3600,7 @@ sha256 = "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/backup-each-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/backup-each-save"; sha256 = "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337"; name = "backup-each-save"; }; @@ -3570,7 +3621,7 @@ sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/backup-walker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/backup-walker"; sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd"; name = "backup-walker"; }; @@ -3591,7 +3642,7 @@ sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/badger-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/badger-theme"; sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf"; name = "badger-theme"; }; @@ -3604,15 +3655,15 @@ badwolf-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "badwolf-theme"; - version = "20160120.1138"; + version = "20160218.1631"; src = fetchFromGitHub { owner = "bkruczyk"; repo = "badwolf-emacs"; - rev = "c75fad427851c65c2a7f11aeb95401acb951038e"; - sha256 = "1jknanz09li3shlkdc6afg9qajz79bkinp5va3mymrmilj82wp1v"; + rev = "1e3a9c50b884578d6add6149bf5fcab6f7d1e55c"; + sha256 = "0rymxwxp6gi9ir8crvnv1mz4pns72xdhd9pnpzdqxvawwc76h4cc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; @@ -3633,7 +3684,7 @@ sha256 = "00skx1aywzvnqqsm41n2mwry5i6ifib8kzq5klymbrc7qfnbb55f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/baidu-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/baidu-life"; sha256 = "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19"; name = "baidu-life"; }; @@ -3654,7 +3705,7 @@ sha256 = "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/base16-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/base16-theme"; sha256 = "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs"; name = "base16-theme"; }; @@ -3675,7 +3726,7 @@ sha256 = "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; @@ -3696,7 +3747,7 @@ sha256 = "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/basic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/basic-theme"; sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27"; name = "basic-theme"; }; @@ -3714,7 +3765,7 @@ sha256 = "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/batch-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/batch-mode"; sha256 = "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x"; name = "batch-mode"; }; @@ -3735,7 +3786,7 @@ sha256 = "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bats-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bats-mode"; sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w"; name = "bats-mode"; }; @@ -3756,7 +3807,7 @@ sha256 = "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; @@ -3775,7 +3826,7 @@ sha256 = "e20dfe8085782948c1411685d45bad0cb7ff088bc2d1d2c1654c276356382b26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb"; sha256 = "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j"; name = "bbdb"; }; @@ -3796,7 +3847,7 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; @@ -3817,7 +3868,7 @@ sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-android"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-android"; sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3"; name = "bbdb-android"; }; @@ -3838,7 +3889,7 @@ sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-china"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-china"; sha256 = "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b"; name = "bbdb-china"; }; @@ -3859,7 +3910,7 @@ sha256 = "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-csv-import"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-csv-import"; sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm"; name = "bbdb-csv-import"; }; @@ -3880,7 +3931,7 @@ sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-ext"; sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li"; name = "bbdb-ext"; }; @@ -3901,7 +3952,7 @@ sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-handy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-handy"; sha256 = "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z"; name = "bbdb-handy"; }; @@ -3922,7 +3973,7 @@ sha256 = "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; @@ -3943,7 +3994,7 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; @@ -3964,7 +4015,7 @@ sha256 = "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbyac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbyac"; sha256 = "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170"; name = "bbyac"; }; @@ -3985,7 +4036,7 @@ sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bdo"; sha256 = "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl"; name = "bdo"; }; @@ -3998,15 +4049,15 @@ beacon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "beacon"; - version = "20160125.547"; + version = "20160206.1117"; src = fetchFromGitHub { owner = "Malabarba"; repo = "beacon"; - rev = "7104ad532419689513d8f72dc61badd4e0272558"; - sha256 = "016c8lmcwlivxr1snh9dk57ssl0vj8v4nazddxchqxc2bibd3csl"; + rev = "9e55c293a80c6173db756200742e74cb06468ab0"; + sha256 = "04gnbil12ixkvgmmdw5fx90b9hbz2jf0hzic1v96fnzq9280ccjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/beacon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beacon"; sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq"; name = "beacon"; }; @@ -4019,15 +4070,15 @@ beeminder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "beeminder"; - version = "20150104.1634"; + version = "20160209.2103"; src = fetchFromGitHub { owner = "sodaware"; repo = "beeminder.el"; - rev = "92fa1a8d1df3e2fd0698192008f604b1794ee5f8"; - sha256 = "1ckbl8z59p81jsq8xsgcwqqrpzv1apzjr594w3dyp9bzqb7h2acm"; + rev = "a4e159250bac89bc25ced8523a5eac2a951cd5b6"; + sha256 = "0ki9q3ylssjabh15dr49k7dxv88snpj4564g0myp3c61qzyy82lk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/beeminder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beeminder"; sha256 = "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx"; name = "beeminder"; }; @@ -4048,7 +4099,7 @@ sha256 = "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; @@ -4069,7 +4120,7 @@ sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/benchmark-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/benchmark-init"; sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal"; name = "benchmark-init"; }; @@ -4090,7 +4141,7 @@ sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bert"; sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7"; name = "bert"; }; @@ -4111,7 +4162,7 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; @@ -4129,7 +4180,7 @@ sha256 = "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/better-registers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/better-registers"; sha256 = "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx"; name = "better-registers"; }; @@ -4150,7 +4201,7 @@ sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bf-mode"; sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9"; name = "bf-mode"; }; @@ -4171,7 +4222,7 @@ sha256 = "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bfbuilder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bfbuilder"; sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7"; name = "bfbuilder"; }; @@ -4192,7 +4243,7 @@ sha256 = "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bibretrieve"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bibretrieve"; sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii"; name = "bibretrieve"; }; @@ -4213,7 +4264,7 @@ sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bibslurp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bibslurp"; sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp"; name = "bibslurp"; }; @@ -4234,7 +4285,7 @@ sha256 = "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bibtex-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bibtex-utils"; sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l"; name = "bibtex-utils"; }; @@ -4255,7 +4306,7 @@ sha256 = "05lhxbrgwbyz0nkb19yln9a46jh91ic685943hd58cn91lxsw3al"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bind-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-chord"; sha256 = "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb"; name = "bind-chord"; }; @@ -4268,15 +4319,15 @@ bind-key = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-key"; - version = "20160112.958"; + version = "20160206.1456"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; - rev = "a29e0328c0076cc927e5fd3d8db1878c0f978ace"; - sha256 = "0s4qmqgym12gk8kiz90ck5yi7icz8dydyks0psfam1nza89cbfys"; + rev = "6b1956813f0f0e553a7eb6923ff846f9c3556146"; + sha256 = "13yzxlxkykv3qkaaifn3pf0y94dgqysxz5p7vh71jpqxi6d7jmgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; @@ -4289,15 +4340,15 @@ bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-map"; - version = "20160201.656"; + version = "20160211.1121"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-bind-map"; - rev = "00b7778826f683e56ccfa3044b6312a1fcfdeb13"; - sha256 = "1kk2hig6ag07iihkhr880n332789r5p2zz26a25dwqkr27jgs7x8"; + rev = "f4fad049d0bb6ebdc729bc6d356288f2dd96e2f3"; + sha256 = "023rck51m264qx38270ai5ib8wipa8q952bagi1dqi6xp5k6lsjs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bind-map"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-map"; sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; name = "bind-map"; }; @@ -4318,7 +4369,7 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; @@ -4339,7 +4390,7 @@ sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; @@ -4360,7 +4411,7 @@ sha256 = "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bison-mode"; sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66"; name = "bison-mode"; }; @@ -4381,7 +4432,7 @@ sha256 = "14dsjbw4ss3i6ydynm121v5j3idvy85sk1vqbr5r871d32179xan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bitbake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bitbake"; sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah"; name = "bitbake"; }; @@ -4402,7 +4453,7 @@ sha256 = "1cnx5kr0hah4h4b6arp7hb2i556vpx1dwmziny2csil39hkcjgbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bitlbee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bitlbee"; sha256 = "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f"; name = "bitlbee"; }; @@ -4423,7 +4474,7 @@ sha256 = "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bitly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bitly"; sha256 = "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247"; name = "bitly"; }; @@ -4441,7 +4492,7 @@ sha256 = "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/blank-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/blank-mode"; sha256 = "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87"; name = "blank-mode"; }; @@ -4462,7 +4513,7 @@ sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/blgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/blgrep"; sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm"; name = "blgrep"; }; @@ -4483,7 +4534,7 @@ sha256 = "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bliss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bliss-theme"; sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh"; name = "bliss-theme"; }; @@ -4504,7 +4555,7 @@ sha256 = "0zhcjg68nzqdrlnbm7akzgn4px3prrqjjym2qzfirmdbq6dxifgg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/blog-admin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/blog-admin"; sha256 = "0l2si3fyi7kz4px3m8m0i71xvlsrx0y81247j1kcl7iax53zkl8c"; name = "blog-admin"; }; @@ -4525,7 +4576,7 @@ sha256 = "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bm"; sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g"; name = "bm"; }; @@ -4546,7 +4597,7 @@ sha256 = "0fy2jwpgvqlff5bn0l971xxb76krm3idjqjl61qgim6a45kip057"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; @@ -4567,7 +4618,7 @@ sha256 = "0ghjfrwc2i04rxg3nqc5fg2kgfyjlhk8n2qcz53p9i7ncc3zgpha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; @@ -4588,7 +4639,7 @@ sha256 = "06cpbjbv8ysz81szwgglgy5r1aay8rrzw5k86wyqg9jdzwpmilpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bonjourmadame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bonjourmadame"; sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn"; name = "bonjourmadame"; }; @@ -4609,7 +4660,7 @@ sha256 = "11m0w8i2nq0nqrpg6m7vnn9sd3v1ln5b3rka7m9fnasadf77nmpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/boogie-friends"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boogie-friends"; sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7"; name = "boogie-friends"; }; @@ -4627,7 +4678,7 @@ sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bookmark+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bookmark+"; sha256 = "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni"; name = "bookmark-plus"; }; @@ -4640,15 +4691,15 @@ boon = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "boon"; - version = "20160202.1455"; + version = "20160208.1544"; src = fetchFromGitHub { owner = "jyp"; repo = "boon"; - rev = "f6edf01a9f300d6e160f0c2c17619d3f6d1fa785"; - sha256 = "149slx8cqh28hzb5cfa1ink99c18dh548jg2w54hvkzvqhhwhn7v"; + rev = "61ba05750964a765c4cff89ecd13092bcf420549"; + sha256 = "061alzr4w0xxyc71ri8ramafmzj5c4iwvd3zcq6i0p67qyic4nsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; @@ -4669,7 +4720,7 @@ sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/borland-blue-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/borland-blue-theme"; sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx"; name = "borland-blue-theme"; }; @@ -4690,7 +4741,7 @@ sha256 = "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/boron-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boron-theme"; sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81"; name = "boron-theme"; }; @@ -4711,7 +4762,7 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; @@ -4732,7 +4783,7 @@ sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bpe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bpe"; sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm"; name = "bpe"; }; @@ -4753,7 +4804,7 @@ sha256 = "05x9fmxlybas3gcv3qf1vcfh5k265hjwh73232fyg2v562if748z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bpr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bpr"; sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2"; name = "bpr"; }; @@ -4774,7 +4825,7 @@ sha256 = "00463z740xrkr4yz46g9zxz23zy878jgvba81pnwvg4l6hd3kc8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bracketed-paste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bracketed-paste"; sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j"; name = "bracketed-paste"; }; @@ -4795,7 +4846,7 @@ sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/brainfuck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/brainfuck-mode"; sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd"; name = "brainfuck-mode"; }; @@ -4816,7 +4867,7 @@ sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/broadcast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/broadcast"; sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib"; name = "broadcast"; }; @@ -4837,7 +4888,7 @@ sha256 = "0q71ah62q6acivhxzsw9j1ky54i9hhlnj97sjn8bxrxx7nw01gf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/browse-at-remote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-at-remote"; sha256 = "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w"; name = "browse-at-remote"; }; @@ -4858,7 +4909,7 @@ sha256 = "0sndzhza9k4vcf70fzxsyzrfryaz92lm1y7bbb0dx10m65qljpbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; @@ -4877,7 +4928,7 @@ sha256 = "1z6pix1ml3s97jh34fwjj008ihlrz4hkipdh5yzcvc6nhrimjw2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/browse-kill-ring+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-kill-ring+"; sha256 = "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w"; name = "browse-kill-ring-plus"; }; @@ -4898,7 +4949,7 @@ sha256 = "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; @@ -4916,7 +4967,7 @@ sha256 = "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bs-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bs-ext"; sha256 = "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6"; name = "bs-ext"; }; @@ -4937,7 +4988,7 @@ sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/btc-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/btc-ticker"; sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1"; name = "btc-ticker"; }; @@ -4958,7 +5009,7 @@ sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bts"; sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3"; name = "bts"; }; @@ -4979,7 +5030,7 @@ sha256 = "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bts-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bts-github"; sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln"; name = "bts-github"; }; @@ -5000,7 +5051,7 @@ sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bubbleberry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bubbleberry-theme"; sha256 = "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3"; name = "bubbleberry-theme"; }; @@ -5021,7 +5072,7 @@ sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-buttons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-buttons"; sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6"; name = "buffer-buttons"; }; @@ -5042,7 +5093,7 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; @@ -5063,7 +5114,7 @@ sha256 = "1yzga2zs9flbarsh704hh7k4l3w09g4li9a7r3fsvl4kll80x393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; @@ -5081,7 +5132,7 @@ sha256 = "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-stack"; sha256 = "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn"; name = "buffer-stack"; }; @@ -5102,7 +5153,7 @@ sha256 = "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; @@ -5123,7 +5174,7 @@ sha256 = "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; @@ -5144,7 +5195,7 @@ sha256 = "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; @@ -5165,7 +5216,7 @@ sha256 = "0gr4v6fmg0im17f6i3pw6h8l401n5l5lzxz0hgi8lrisvx73iqa5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; @@ -5186,7 +5237,7 @@ sha256 = "1bzilpjibyyj97z5j7zz89jx0kfqr842lrjlnq1qki8r5kj18p4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; @@ -5207,7 +5258,7 @@ sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buster-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buster-mode"; sha256 = "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7"; name = "buster-mode"; }; @@ -5228,7 +5279,7 @@ sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buster-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buster-snippets"; sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x"; name = "buster-snippets"; }; @@ -5249,7 +5300,7 @@ sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/busybee-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/busybee-theme"; sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10"; name = "busybee-theme"; }; @@ -5270,7 +5321,7 @@ sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; @@ -5283,15 +5334,15 @@ buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buttercup"; - version = "20160110.122"; + version = "20160217.1542"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "emacs-buttercup"; - rev = "e1f71acdef3de3033d24be1cb41933eefc75029f"; - sha256 = "0lpfx7q0qrclxii4ffrrjffb678bsx908za91nsy7mc2g0cxcapb"; + rev = "2aa840cb0e99251d299507859e98eb7341758fc9"; + sha256 = "0lskdb1bxgnpamxvg5c5kdqafp0k770zy3ic38945nb6bnd1bimv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; @@ -5312,7 +5363,7 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; @@ -5333,7 +5384,7 @@ sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/c-c-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/c-c-combo"; sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn"; name = "c-c-combo"; }; @@ -5354,7 +5405,7 @@ sha256 = "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/c-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/c-eldoc"; sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm"; name = "c-eldoc"; }; @@ -5375,7 +5426,7 @@ sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/c0-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/c0-mode"; sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4"; name = "c0-mode"; }; @@ -5385,6 +5436,27 @@ license = lib.licenses.free; }; }) {}; + cabledolphin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: + melpaBuild { + pname = "cabledolphin"; + version = "20160204.338"; + src = fetchFromGitHub { + owner = "legoscia"; + repo = "cabledolphin"; + rev = "fffc192cafa61558e924323d6da8166fe5f2a6f9"; + sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cabledolphin"; + sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03"; + name = "cabledolphin"; + }; + packageRequires = [ emacs seq ]; + meta = { + homepage = "http://melpa.org/#/cabledolphin"; + license = lib.licenses.free; + }; + }) {}; cache = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cache"; @@ -5396,7 +5468,7 @@ sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cache"; sha256 = "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3"; name = "cache"; }; @@ -5417,7 +5489,7 @@ sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; @@ -5438,7 +5510,7 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; @@ -5459,7 +5531,7 @@ sha256 = "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; @@ -5480,7 +5552,7 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; @@ -5501,7 +5573,7 @@ sha256 = "03hi0ggq81nm1kd0mcf8fwnya4axzd80vfdjdbhgpxbkvnxldzpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cal-china-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cal-china-x"; sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka"; name = "cal-china-x"; }; @@ -5522,7 +5594,7 @@ sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; @@ -5543,7 +5615,7 @@ sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/calfw-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calfw-gcal"; sha256 = "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8"; name = "calfw-gcal"; }; @@ -5564,7 +5636,7 @@ sha256 = "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/calmer-forest-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calmer-forest-theme"; sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p"; name = "calmer-forest-theme"; }; @@ -5585,7 +5657,7 @@ sha256 = "1fxmk9ykvxkd0ldmldqnwdn5grzzzigla7zsw1yqqmlfwd48ggf8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; @@ -5604,7 +5676,7 @@ sha256 = "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/caml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caml"; sha256 = "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698"; name = "caml"; }; @@ -5625,7 +5697,7 @@ sha256 = "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/capture"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/capture"; sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2"; name = "capture"; }; @@ -5646,7 +5718,7 @@ sha256 = "07szswvfzvyd9sx1r4x8hyyc3984k4qqj8m24ybnjgmiax57hgkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; @@ -5667,7 +5739,7 @@ sha256 = "14ijcb9qp1gv8ianqm7cdvwjkgpwdaw3lz34j29c3rmg5ir26bjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/caroline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caroline-theme"; sha256 = "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32"; name = "caroline-theme"; }; @@ -5688,7 +5760,7 @@ sha256 = "1nibzay3nb1n7z36w55m6kjqsj5yqj89way81f647jgbjggr6bih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; @@ -5709,7 +5781,7 @@ sha256 = "0zky8d9kdrcfh4vh8v6wbzs80nixr1xnnyjgg1zdingyklrxl79y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; @@ -5730,7 +5802,7 @@ sha256 = "1m40s9q00l06fz525m3zrvwd6s60lggdqls5k5njkn671aa3h71s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; @@ -5751,7 +5823,7 @@ sha256 = "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; @@ -5772,7 +5844,7 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; @@ -5789,11 +5861,11 @@ src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; - rev = "64ad0ea6d03c0d46030cc5aaa3715b5cf3a82d3c"; - sha256 = "02bsiq0kxm9cbbr6hr20ac4888mcyk0i8p9hrrdvaijq4fhkk76b"; + rev = "4cb5da1418f447423cb81ca99539f77a6067ad77"; + sha256 = "145n50vspxaslvhf3ahlp435h5slz24csa2h62zly18xprw1ai1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ccc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ccc"; sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq"; name = "ccc"; }; @@ -5814,7 +5886,7 @@ sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cd-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cd-compile"; sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv"; name = "cd-compile"; }; @@ -5831,11 +5903,11 @@ src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; - rev = "64ad0ea6d03c0d46030cc5aaa3715b5cf3a82d3c"; - sha256 = "02bsiq0kxm9cbbr6hr20ac4888mcyk0i8p9hrrdvaijq4fhkk76b"; + rev = "4cb5da1418f447423cb81ca99539f77a6067ad77"; + sha256 = "145n50vspxaslvhf3ahlp435h5slz24csa2h62zly18xprw1ai1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdb"; sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf"; name = "cdb"; }; @@ -5856,7 +5928,7 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; @@ -5877,7 +5949,7 @@ sha256 = "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cdnjs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdnjs"; sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7"; name = "cdnjs"; }; @@ -5898,7 +5970,7 @@ sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cedit"; sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m"; name = "cedit"; }; @@ -5919,7 +5991,7 @@ sha256 = "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; @@ -5938,7 +6010,7 @@ sha256 = "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/centered-cursor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/centered-cursor-mode"; sha256 = "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl"; name = "centered-cursor-mode"; }; @@ -5948,22 +6020,22 @@ license = lib.licenses.free; }; }) {}; - centered-window-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + centered-window-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "centered-window-mode"; - version = "20160121.526"; + version = "20160210.447"; src = fetchFromGitHub { owner = "ikame"; repo = "centered-window-mode"; - rev = "cfb1bdb851de13a588dc90cac864d38d10792763"; - sha256 = "0dcfhx9rlcqglcyg78jkgdxm625q2czw849z0c03wb75nblkcsdp"; + rev = "ff2350f5258249bbc9e07ac60c76028f4ae07190"; + sha256 = "1i5ipll7jlrxqb0kcwq0rlrpfaxsyp663bwjdnhj84c50wlv052f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/centered-window-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/centered-window-mode"; sha256 = "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si"; name = "centered-window-mode"; }; - packageRequires = []; + packageRequires = [ s ]; meta = { homepage = "http://melpa.org/#/centered-window-mode"; license = lib.licenses.free; @@ -5980,7 +6052,7 @@ sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/centimacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/centimacro"; sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6"; name = "centimacro"; }; @@ -6001,7 +6073,7 @@ sha256 = "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; @@ -6018,11 +6090,11 @@ src = fetchFromGitHub { owner = "cfengine"; repo = "core"; - rev = "5bfd7f68f17f94452716659a04f534653aa42795"; - sha256 = "1ycps7amnxgxr9y8hnhlrfj6phs9ky2nx7yszl2260q64g0jyhvm"; + rev = "5f96d077e8eec87b0e718ee200d29ea50f404936"; + sha256 = "1yl5j5zshgwidvvpdqqjnzndvpw11b30q340db57ywh6vlgkgl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; @@ -6043,7 +6115,7 @@ sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cff"; sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc"; name = "cff"; }; @@ -6058,11 +6130,11 @@ version = "20150819.604"; src = fetchsvn { url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; - rev = "11323"; + rev = "11350"; sha256 = "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cg"; sha256 = "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh"; name = "cg"; }; @@ -6083,7 +6155,7 @@ sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/change-inner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/change-inner"; sha256 = "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj"; name = "change-inner"; }; @@ -6104,7 +6176,7 @@ sha256 = "0d2zac02zqf3al4x412cnz3hr57j3xpc34i30z1q6g429v4krkam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chapel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chapel-mode"; sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; name = "chapel-mode"; }; @@ -6125,7 +6197,7 @@ sha256 = "0jq5xicf0y7z1v68cgsg9vniw6pa793izz350a4wgdq8f5fcm24f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; @@ -6144,7 +6216,7 @@ sha256 = "00b0jv58wkvhahfnqwbfawz1z3nbm6d8s8cq0nn631w4m509kgq0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/character-fold+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/character-fold+"; sha256 = "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3"; name = "character-fold-plus"; }; @@ -6165,7 +6237,7 @@ sha256 = "0zf9i7ajjm639hw34iqwjvni6gn0smzi79582d5l36jvr0z4gnkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; @@ -6186,7 +6258,7 @@ sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chatwork"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chatwork"; sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p"; name = "chatwork"; }; @@ -6207,7 +6279,7 @@ sha256 = "15kam5hf2f4nwp29nvxqm5bs8nyhqf5m44fdb21qljgbmjdlh38y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cheatsheet"; sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq"; name = "cheatsheet"; }; @@ -6228,7 +6300,7 @@ sha256 = "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; @@ -6238,6 +6310,27 @@ license = lib.licenses.free; }; }) {}; + cheerilee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xelb }: + melpaBuild { + pname = "cheerilee"; + version = "20160219.1743"; + src = fetchFromGitHub { + owner = "Vannil"; + repo = "cheerilee.el"; + rev = "6c1a31a03a29871df1cef43ca3a3529b8db5142e"; + sha256 = "08jna2rpads54fp8mi47np046ap3yzgzqp0v632n8r8mcrdg02rn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cheerilee"; + sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv"; + name = "cheerilee"; + }; + packageRequires = [ xelb ]; + meta = { + homepage = "http://melpa.org/#/cheerilee"; + license = lib.licenses.free; + }; + }) {}; chef-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chef-mode"; @@ -6249,7 +6342,7 @@ sha256 = "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chef-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chef-mode"; sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr"; name = "chef-mode"; }; @@ -6270,7 +6363,7 @@ sha256 = "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cherry-blossom-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cherry-blossom-theme"; sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w"; name = "cherry-blossom-theme"; }; @@ -6291,7 +6384,7 @@ sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chicken-scheme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chicken-scheme"; sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr"; name = "chicken-scheme"; }; @@ -6301,6 +6394,27 @@ license = lib.licenses.free; }; }) {}; + chinese-conv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "chinese-conv"; + version = "20160218.1515"; + src = fetchFromGitHub { + owner = "gucong"; + repo = "emacs-chinese-conv"; + rev = "07417e2e01e77d6f0eac69d54f7dcb41729e39c8"; + sha256 = "1b1zarbjiz5w1aw49a153d8s2hk0jgissl39s9smknmay0hynwyk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-conv"; + sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr"; + name = "chinese-conv"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "http://melpa.org/#/chinese-conv"; + license = lib.licenses.free; + }; + }) {}; chinese-fonts-setup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-fonts-setup"; @@ -6312,7 +6426,7 @@ sha256 = "08ln66kx73019klzw0rsvlz3cs4ch8wxjfljmkyswjjd179h882c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-fonts-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-fonts-setup"; sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5"; name = "chinese-fonts-setup"; }; @@ -6325,15 +6439,15 @@ chinese-pyim = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: melpaBuild { pname = "chinese-pyim"; - version = "20160204.440"; + version = "20160214.2358"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-pyim"; - rev = "9e4479b602d20c31df41108e657ad1d7277eab5a"; - sha256 = "0v3iq865hrcqzg6rm3jmrxb41zq9faj5jnjcmwi6kpxmj06brn1g"; + rev = "213222ce67d1a30ef53d22b632c0a35cf44b5d49"; + sha256 = "0k7na7wlpq5fagr10f8ryn2vwf0d1ymakhyfal4gbrhrbwz595zk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-pyim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-pyim"; sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l"; name = "chinese-pyim"; }; @@ -6354,7 +6468,7 @@ sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-remote-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-remote-input"; sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag"; name = "chinese-remote-input"; }; @@ -6375,7 +6489,7 @@ sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-wbim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-wbim"; sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb"; name = "chinese-wbim"; }; @@ -6396,7 +6510,7 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; @@ -6417,7 +6531,7 @@ sha256 = "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-yasdcv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-yasdcv"; sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm"; name = "chinese-yasdcv"; }; @@ -6435,7 +6549,7 @@ sha256 = "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chm-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chm-view"; sha256 = "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz"; name = "chm-view"; }; @@ -6456,7 +6570,7 @@ sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chronos"; sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d"; name = "chronos"; }; @@ -6477,7 +6591,7 @@ sha256 = "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chruby"; sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk"; name = "chruby"; }; @@ -6490,15 +6604,15 @@ cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: melpaBuild { pname = "cider"; - version = "20160204.1208"; + version = "20160218.447"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider"; - rev = "17b88cce0cdf856e1150973d271223b83b2cf165"; - sha256 = "12rdrd8qfy2bgvhrx0m6yv6cd0k9s68rr7fxk96ac6lzyq5rh8aj"; + rev = "212023a86fbb76f37202a8b62acacc98edddceaf"; + sha256 = "137h2s1nl10h60j8papm6rairs1yxln3ihbfvwyh9xf27mnndmzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; @@ -6519,7 +6633,7 @@ sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider-decompile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-decompile"; sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4"; name = "cider-decompile"; }; @@ -6540,7 +6654,7 @@ sha256 = "1gpklkrw6iishfb3yilnqysh6zij67l1sl3ixq1bi3f6r237v1pg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; @@ -6561,7 +6675,7 @@ sha256 = "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider-profile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-profile"; sha256 = "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs"; name = "cider-profile"; }; @@ -6574,15 +6688,15 @@ cider-spy = callPackage ({ cider, cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cider-spy"; - version = "20151123.946"; + version = "20160219.401"; src = fetchFromGitHub { owner = "jonpither"; repo = "cider-spy"; - rev = "6913a52c4ee781c5325074af05fcdfab864d6c41"; - sha256 = "1hvvfp58x269yapnayxwyclgqy52azf76rb703mlfqivj1gzd7p3"; + rev = "db4372880e65b1ab1cfe61f0e1b960a8c954c8d0"; + sha256 = "1jk180l1n3w2k32v9mw7iwr9q7xs3cc65420g1jlks5m7yzb5z55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-spy"; sha256 = "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh"; name = "cider-spy"; }; @@ -6603,7 +6717,7 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; @@ -6624,7 +6738,7 @@ sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cinspect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cinspect"; sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj"; name = "cinspect"; }; @@ -6637,15 +6751,15 @@ circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "circe"; - version = "20160201.641"; + version = "20160207.435"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "35618a1e890dfff7bc3c879e4f0e23868d00bf85"; - sha256 = "1qw8ax3a1v1053qh9i41ci93hc4034ghlcwq8hldr3amsz344fhj"; + rev = "ca3e957f41e47afa05f73962c1ad72f401666384"; + sha256 = "0gwkm8c9g501g80rvqlzmn24q4ylkb94bklsf173yiinqmz1jhkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; @@ -6666,7 +6780,7 @@ sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; @@ -6682,11 +6796,11 @@ version = "20151116.638"; src = fetchsvn { url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; - rev = "259829"; + rev = "261504"; sha256 = "180s33f8ngcc432x7639vxwchgvd5nwy4irby8ldzckdf5a4gd4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clang-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clang-format"; sha256 = "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah"; name = "clang-format"; }; @@ -6707,7 +6821,7 @@ sha256 = "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clean-aindent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clean-aindent-mode"; sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4"; name = "clean-aindent-mode"; }; @@ -6728,7 +6842,7 @@ sha256 = "03dbxg51zs4wbfwjv1qxlm5w06j89mvniisnyyahjkvpiqrp96yd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clean-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clean-buffers"; sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj"; name = "clean-buffers"; }; @@ -6749,7 +6863,7 @@ sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clevercss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clevercss"; sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0"; name = "clevercss"; }; @@ -6759,18 +6873,39 @@ license = lib.licenses.free; }; }) {}; + click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "click-mode"; + version = "20160219.2013"; + src = fetchFromGitHub { + owner = "bmalehorn"; + repo = "click-mode"; + rev = "4e39ef28e65124671f53fb5eaef8c7b87c4deab8"; + sha256 = "1n8114h0azjyavq4bzny2nasl4wsz8k7li002gqjvi0snw16yypn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/click-mode"; + sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; + name = "click-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/click-mode"; + license = lib.licenses.free; + }; + }) {}; cliphist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "cliphist"; - version = "20151012.729"; + version = "20160210.317"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cliphist"; - rev = "c0db2da95fa3d3a58160f465c636989bb4b251d5"; - sha256 = "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q"; + rev = "413af96bbd0dfc8b264f5b8e3920c319af065c50"; + sha256 = "07q8naxhag2q0m5cb9c2n5js6j5qdrjyyiqbcpxmq598b8mw8kzd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; @@ -6791,7 +6926,7 @@ sha256 = "07a55q97j2vsqpha0akri2kq90v1l97mc1mgr97pq39gc1bbc5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clipmon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clipmon"; sha256 = "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i"; name = "clipmon"; }; @@ -6812,7 +6947,7 @@ sha256 = "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clippy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clippy"; sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg"; name = "clippy"; }; @@ -6833,7 +6968,7 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; @@ -6846,15 +6981,15 @@ clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: melpaBuild { pname = "clj-refactor"; - version = "20160128.1121"; + version = "20160221.914"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clj-refactor.el"; - rev = "85d29af959b8d2b581f68f06f6d220bd26e58690"; - sha256 = "0h8x2ikggry16nd11l489523ldxg1cxbk10scpbxn9jhb11wgzd9"; + rev = "39e4cea6de61be0a062875c4de67245212c5ff66"; + sha256 = "1ra00h3zksgifyfy7h5pijzfcqx1y7fsdq6dz3jylfh6ikria9gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -6886,7 +7021,7 @@ sha256 = "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; @@ -6907,7 +7042,7 @@ sha256 = "1cdim8fancrsrm9avzv4m2v384i7n4632nibyfnxkhq03bj00j1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cljsbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cljsbuild-mode"; sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214"; name = "cljsbuild-mode"; }; @@ -6928,7 +7063,7 @@ sha256 = "0za8j7pwcmvjm2ls62z9f8sjryzzsmms4slikzixc0rxyiqnqyd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clmemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clmemo"; sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs"; name = "clmemo"; }; @@ -6949,7 +7084,7 @@ sha256 = "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cloc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cloc"; sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a"; name = "cloc"; }; @@ -6970,7 +7105,7 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; @@ -6991,7 +7126,7 @@ sha256 = "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojars"; sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1"; name = "clojars"; }; @@ -7012,7 +7147,7 @@ sha256 = "1ljb0g4yvrqgjqgmz8qz0c0swbx1m6gldmcdqnmxd72bs3w9p0k8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; @@ -7025,15 +7160,15 @@ clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode"; - version = "20160204.1143"; + version = "20160213.1637"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "3a701b1f495d0eaa22387b45e6309c2d987c62fa"; - sha256 = "1ka2km49ar08wp0m7czfap5dvh2ql1d3cv7lyfbxicylqw1354hn"; + rev = "affd573660b2112e5b4629e6634fd8a5abcbdaa4"; + sha256 = "0pn1a1w6x5678ssy0p5f5bc4d5qsgnr2d1qyrd7pxz47w78c3hlz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; @@ -7050,11 +7185,11 @@ src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "3a701b1f495d0eaa22387b45e6309c2d987c62fa"; - sha256 = "1ka2km49ar08wp0m7czfap5dvh2ql1d3cv7lyfbxicylqw1354hn"; + rev = "affd573660b2112e5b4629e6634fd8a5abcbdaa4"; + sha256 = "0pn1a1w6x5678ssy0p5f5bc4d5qsgnr2d1qyrd7pxz47w78c3hlz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; @@ -7075,7 +7210,7 @@ sha256 = "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; @@ -7088,15 +7223,15 @@ clojure-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "clojure-snippets"; - version = "20150504.344"; + version = "20160217.242"; src = fetchFromGitHub { owner = "mpenet"; repo = "clojure-snippets"; - rev = "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827"; - sha256 = "1w8izhrj23b8kqcsqalgrzxqnq18nvdxl48305p8cnwll646xjl2"; + rev = "21b17dd388db62e8713289478623c72a2c7180d0"; + sha256 = "0wlzhj2mfxxkffsx14n1c0r89l3pszn71brx4l3dfyzmb806xrig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; @@ -7117,7 +7252,7 @@ sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/closure-lint-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/closure-lint-mode"; sha256 = "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy"; name = "closure-lint-mode"; }; @@ -7138,7 +7273,7 @@ sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cloud-to-butt-erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cloud-to-butt-erc"; sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f"; name = "cloud-to-butt-erc"; }; @@ -7159,7 +7294,7 @@ sha256 = "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clues-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clues-theme"; sha256 = "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy"; name = "clues-theme"; }; @@ -7180,7 +7315,7 @@ sha256 = "0m94692gkq299sf56m4c637j5xp78dvgv0ad1hv4ys1hzp1qw1l5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; @@ -7201,7 +7336,7 @@ sha256 = "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-font-lock"; sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0"; name = "cmake-font-lock"; }; @@ -7214,15 +7349,15 @@ cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }: melpaBuild { pname = "cmake-ide"; - version = "20160127.1859"; + version = "20160211.750"; src = fetchFromGitHub { owner = "atilaneves"; repo = "cmake-ide"; - rev = "9107eecfc726f89b65f33dd103f06c07d3d5788c"; - sha256 = "0kc85ripwjhjvjhwvx5cc2ks99xhaqmlb0inpd4d59f3x68pk69m"; + rev = "816ac6c19d664f584e21c3449d5fe12e50332e09"; + sha256 = "1hagmcg7303ckbfdbz30s84vavg3a89m7mq71gf044jdx6nyci97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; @@ -7239,11 +7374,11 @@ src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "7b1fbcc4b035c591491c5033cbfbfc0aabd80fde"; - sha256 = "0rb6wn635ylm58cpr7jq7821g0iw1mzb4b1h9mwrl57m6gcb5v98"; + rev = "7e32bd945a9f32144ac63fdcd085197658229f9c"; + sha256 = "012pzl5258f14xdpjmmfgz6mn76902s153ps4yrvhhj5mmcs2knm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; @@ -7264,7 +7399,7 @@ sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; @@ -7282,7 +7417,7 @@ sha256 = "13r8pjxknsfd6ywzlgcy4bm7fvr768ba34k6b7y365y3c1asz6y3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmds-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmds-menu"; sha256 = "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks"; name = "cmds-menu"; }; @@ -7303,7 +7438,7 @@ sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmm-mode"; sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h"; name = "cmm-mode"; }; @@ -7324,7 +7459,7 @@ sha256 = "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cn-outline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cn-outline"; sha256 = "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz"; name = "cn-outline"; }; @@ -7345,7 +7480,7 @@ sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cobra-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cobra-mode"; sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89"; name = "cobra-mode"; }; @@ -7366,7 +7501,7 @@ sha256 = "0mcf0xyh4p6pk2hf1f554vy4amd0qcimspgnncff2a0qc2bsg5sy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/code-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/code-library"; sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj"; name = "code-library"; }; @@ -7387,7 +7522,7 @@ sha256 = "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/codebug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codebug"; sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj"; name = "codebug"; }; @@ -7408,7 +7543,7 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codesearch"; sha256 = "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx"; name = "codesearch"; }; @@ -7429,7 +7564,7 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; @@ -7450,7 +7585,7 @@ sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/coffee-fof"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coffee-fof"; sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc"; name = "coffee-fof"; }; @@ -7463,15 +7598,15 @@ coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-mode"; - version = "20160111.532"; + version = "20160208.2102"; src = fetchFromGitHub { owner = "defunkt"; repo = "coffee-mode"; - rev = "c741811a96b20a939612f3affa678a576f0ad9f1"; - sha256 = "0r0615q30awj77dwhvgz2cjmnfmvff9clg3krzr9zpskdkhdib8h"; + rev = "cb1e997c0195a8a51bfa77d6bdec919e68a88904"; + sha256 = "0f7v6zjmsgsip17jazbhn6667gn5ialfv4nl58bhjhkrb21j9zbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; @@ -7490,7 +7625,7 @@ sha256 = "1fpkymmgv58b734d2rr7cfj2j2if1qkwgrpk3yp2ibw2n2567y0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/col-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/col-highlight"; sha256 = "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i"; name = "col-highlight"; }; @@ -7511,7 +7646,7 @@ sha256 = "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/colemak-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colemak-evil"; sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z"; name = "colemak-evil"; }; @@ -7532,7 +7667,7 @@ sha256 = "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/colonoscopy-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colonoscopy-theme"; sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q"; name = "colonoscopy-theme"; }; @@ -7553,7 +7688,7 @@ sha256 = "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-identifiers-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-identifiers-mode"; sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; name = "color-identifiers-mode"; }; @@ -7574,7 +7709,7 @@ sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-moccur"; sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq"; name = "color-moccur"; }; @@ -7594,7 +7729,7 @@ sha256 = "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme"; sha256 = "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79"; name = "color-theme"; }; @@ -7615,7 +7750,7 @@ sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-approximate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-approximate"; sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1"; name = "color-theme-approximate"; }; @@ -7636,7 +7771,7 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-buffer-local"; sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0"; name = "color-theme-buffer-local"; }; @@ -7657,7 +7792,7 @@ sha256 = "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; @@ -7678,7 +7813,7 @@ sha256 = "07703v8xyia1vx9s636aaql99i29a4r5v9z0lvaypixgsidshx10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; @@ -7691,15 +7826,15 @@ color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-tomorrow"; - version = "20160202.135"; + version = "20160205.2000"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-tomorrow"; - rev = "22e40391f4a4be9455e4fa591c31a954a24dbeeb"; - sha256 = "161xzd0jlwyafq2sck47z4igsrvrk2b1ibl206866hc56q9x1pmn"; + rev = "9a8f304477500baa2a782f9c9cafd76c6030ccdf"; + sha256 = "0la3xwk0s5qx9n2s4lv4n8ilkj82spxk46mjih7zch8xpydfl15w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; @@ -7712,15 +7847,15 @@ color-theme-solarized = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-solarized"; - version = "20160108.1741"; + version = "20160219.1124"; src = fetchFromGitHub { owner = "sellout"; repo = "emacs-color-theme-solarized"; - rev = "d7f9165adf02c01ea67a2ecc31df56c7495199e6"; - sha256 = "1ddscmxn6k00ip3mb4bjy4zxfklxv3jjnlbgwwr793qzwsi64vi7"; + rev = "890e5a3dd19b8c0d44de7e3a089bc6f1322fbb1e"; + sha256 = "1yn0wacicf218212d9qgn67pf16i7x6bih67zdfcplq4i9lqbpg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-solarized"; sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf"; name = "color-theme-solarized"; }; @@ -7741,7 +7876,7 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; @@ -7762,7 +7897,7 @@ sha256 = "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/column-enforce-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/column-enforce-mode"; sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg"; name = "column-enforce-mode"; }; @@ -7780,7 +7915,7 @@ sha256 = "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/column-marker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/column-marker"; sha256 = "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq"; name = "column-marker"; }; @@ -7801,7 +7936,7 @@ sha256 = "0fnyksbynlmmvl39f4is0xjp6b13yshfazigbksv012hxp0whslm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/command-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/command-log-mode"; sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj"; name = "command-log-mode"; }; @@ -7822,7 +7957,7 @@ sha256 = "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; @@ -7843,7 +7978,7 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; @@ -7856,15 +7991,15 @@ commenter = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "commenter"; - version = "20160131.39"; + version = "20160219.1027"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "commenter"; - rev = "eec3bf91a57ff3aa3b93c36611e136572f031571"; - sha256 = "1jvjwk776p9qrbr3j0368nqv8ydp8k0s6c66nfpcqf33rz4w1h1g"; + rev = "6d1885419434ba779270c6fda0e30d390bb074bd"; + sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; @@ -7885,7 +8020,7 @@ sha256 = "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/commify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commify"; sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m"; name = "commify"; }; @@ -7906,7 +8041,7 @@ sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; @@ -7919,15 +8054,15 @@ company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company"; - version = "20160201.1600"; + version = "20160211.720"; src = fetchFromGitHub { owner = "company-mode"; repo = "company-mode"; - rev = "a619a93069dab79b12d695fd4e8b043aa82d96ca"; - sha256 = "0hy59hf2lq3w6wn5vsz839nrkijc87lyb8xyw2sj9jifd5ikpqi8"; + rev = "e251568e99de9e684b21cc74306fa1c3678444b5"; + sha256 = "15zkaq3vc74f8vbdjrxd1ha4mh7p0hn7x5nyg4dh0i3qchinlkjn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; @@ -7940,15 +8075,15 @@ company-anaconda = callPackage ({ anaconda-mode, cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-anaconda"; - version = "20151230.1303"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-anaconda"; - rev = "991621d2c3d4d57eb9a6caa2e27588376d55defb"; - sha256 = "0r8ip22gr2ihicznyl2vbwgy3gsp5b5gy0m2i60001kyhssgmg6v"; + rev = "23a21e17e24f1f673d86bc8a0ace80df516636ce"; + sha256 = "0hfhkpy8qpai6qspqcf1pnxygnnyn7ncmhp5bmg2p4b6qm328yxi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; @@ -7969,7 +8104,7 @@ sha256 = "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; @@ -7990,7 +8125,7 @@ sha256 = "067xb4mwfnmbqjyfv4717417fg7ysvz9flnx1nrk6iv96gnf4vfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-arduino"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-arduino"; sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws"; name = "company-arduino"; }; @@ -8019,7 +8154,7 @@ sha256 = "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-auctex"; sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4"; name = "company-auctex"; }; @@ -8040,7 +8175,7 @@ sha256 = "16cva7ccc0hrc6yf659kpsznlk1bkgv525lqr4nj8a12q0avjdxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-c-headers"; sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a"; name = "company-c-headers"; }; @@ -8061,7 +8196,7 @@ sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; @@ -8074,15 +8209,15 @@ company-coq = callPackage ({ cl-lib ? null, company, company-math, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "company-coq"; - version = "20160204.942"; + version = "20160212.808"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "company-coq"; - rev = "484c5f058c8a6c30ac4b4dfdb23b362ddda80fed"; - sha256 = "0wf7m6i6qrmcj469j9dnjl805b9x1a9hk5465av8dyv3zs5csj5k"; + rev = "f99c17b693c29d0d385c28c3c0409e083aeba440"; + sha256 = "003fbj21a8sb8fv33svbwyhdjywqrmh2y08d1hwmmp0vhd38333i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-coq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-coq"; sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; name = "company-coq"; }; @@ -8103,7 +8238,7 @@ sha256 = "0qbis9jqcrgj71cf8i9yfxsm7yj6d546gxw6linqd7slqn97l8rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-dcd"; sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd"; name = "company-dcd"; }; @@ -8123,15 +8258,15 @@ company-edbi = callPackage ({ cl-lib ? null, company, edbi, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-edbi"; - version = "20151230.1251"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-edbi"; - rev = "7debb5a700ab36fa86e78c3decd8ad16fc028c8a"; - sha256 = "1fx9hch42kax95nd8zadsbnadq9cylrna0qf0q4bx5yj1afz91p1"; + rev = "08dc69ccfbcf10ca83f7075e9b735c6885cd7e11"; + sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-edbi"; sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm"; name = "company-edbi"; }; @@ -8152,7 +8287,7 @@ sha256 = "1lm26av6z18p70gxz23h87l25airawljr5lm7hw6krg706cp3aq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; @@ -8173,7 +8308,7 @@ sha256 = "1rg6jynzp37qnaq4lj48sfrhmv7mgcd2rzkixbpb3hgsy10dj9j0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-flx"; sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn"; name = "company-flx"; }; @@ -8190,11 +8325,11 @@ src = fetchFromGitHub { owner = "iquiw"; repo = "company-ghc"; - rev = "d78fcee6c8fa4f786a1e15a3bb78d2dd2c56b6af"; - sha256 = "06ljm0ysz8czdr32gfq1y3nm3jcywihdszgnc2alx1hcgqiq0ds6"; + rev = "96c78650da0030a55daee11668b04e313468294e"; + sha256 = "0iydcp02x8mqbvxzihzzd1mnq065s19dpi0pq33a2v4nnlddlj1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; @@ -8215,7 +8350,7 @@ sha256 = "0jsnf60nz37s4csk8pnyr45fjdsac1ls64fvsh5gzi6hipxz5y6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ghci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ghci"; sha256 = "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq"; name = "company-ghci"; }; @@ -8232,11 +8367,11 @@ src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; - rev = "db85a48a7870f46784edc202c780b19e2f65053a"; - sha256 = "15jjmhw3pd4hx1khbvrypd8s2kh3ymkf8p4qh1c9rbw9csypj3al"; + rev = "659c0a429af764118d27692d02b77c544a32cfe3"; + sha256 = "1gfad94acp7qxm6yg0prjfkx370caq309zc8dy20ssi4x19j4n0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; @@ -8257,7 +8392,7 @@ sha256 = "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-inf-ruby"; sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm"; name = "company-inf-ruby"; }; @@ -8278,7 +8413,7 @@ sha256 = "0y1a9wxk9w2jk4177hkqzgqzknswikxc1dc60hzj4samyp2jhvfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; @@ -8299,7 +8434,7 @@ sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-irony-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-irony-c-headers"; sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8"; name = "company-irony-c-headers"; }; @@ -8320,7 +8455,7 @@ sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; @@ -8341,7 +8476,7 @@ sha256 = "114z2p5ivdsfhkir9yzrm4zw34c8jlilwqyyd4y5ing8awc9jhv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; @@ -8362,7 +8497,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-nand2tetris"; sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886"; name = "company-nand2tetris"; }; @@ -8375,15 +8510,15 @@ company-nixos-options = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, nixos-options }: melpaBuild { pname = "company-nixos-options"; - version = "20151013.1809"; + version = "20160215.257"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "6b1418611b49a6cf77380a76f7e6236bbb5df83a"; - sha256 = "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3"; + rev = "63061d379460c53abbe88ec695a61e22feae438f"; + sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; @@ -8396,15 +8531,15 @@ company-qml = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, qml-mode }: melpaBuild { pname = "company-qml"; - version = "20151027.1035"; + version = "20160212.1712"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "company-qml"; - rev = "ae4a5f1ac30eb31e74e2eebf98c895c2cb5a51df"; - sha256 = "07vcxwqynji7ggy9sb8lgpinkfjdiav0aybn5pnb0v8ck9v1w6k3"; + rev = "92ee2d46197698a428af049a95eb66cc00eebf3f"; + sha256 = "0sl59b9wwnpz6p2kxsc87b3q28vvfxg7pwk67c51q8qyrl0c1klv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-qml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-qml"; sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx"; name = "company-qml"; }; @@ -8417,15 +8552,15 @@ company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: melpaBuild { pname = "company-quickhelp"; - version = "20160204.647"; + version = "20160211.918"; src = fetchFromGitHub { owner = "expez"; repo = "company-quickhelp"; - rev = "24f89640729210f6c7056b66e30d72282a211b3a"; - sha256 = "0qsz03ps9654wn965s31r85va3fwj3zvwn5naijj85nm8zwb9lb6"; + rev = "39e206f7797962992aa1e555c293b6d872d6718b"; + sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; @@ -8446,7 +8581,7 @@ sha256 = "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-racer"; sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4"; name = "company-racer"; }; @@ -8467,7 +8602,7 @@ sha256 = "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -8483,6 +8618,27 @@ license = lib.licenses.free; }; }) {}; + company-shell = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "company-shell"; + version = "20160212.1339"; + src = fetchFromGitHub { + owner = "Alexander-Miller"; + repo = "company-shell"; + rev = "d725646cb19a71a14b76add40e0b8ebb3031ad1b"; + sha256 = "097v261fp0j7sjg6fkxwywpqf1vg1i2gq3i7m34vxzvs9l7ahagl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-shell"; + sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz"; + name = "company-shell"; + }; + packageRequires = [ cl-lib company dash ]; + meta = { + homepage = "http://melpa.org/#/company-shell"; + license = lib.licenses.free; + }; + }) {}; company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }: melpaBuild { pname = "company-sourcekit"; @@ -8494,7 +8650,7 @@ sha256 = "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; @@ -8507,15 +8663,15 @@ company-tern = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tern }: melpaBuild { pname = "company-tern"; - version = "20151230.1300"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-tern"; - rev = "0c5fa13381915d21b62a70818d25901efb0f4a05"; - sha256 = "1b7p6g478para62bnpz5aqijaim8j72c9b27c2qahjmy2zj2f460"; + rev = "87752b771447dd01c940ee03d96d21e4acaff777"; + sha256 = "0zjgw8v93z4dyj9g1dny6digqkh9v8m9x44zkx5magq8dbv69qsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; @@ -8536,7 +8692,7 @@ sha256 = "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-try-hard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-try-hard"; sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj"; name = "company-try-hard"; }; @@ -8557,7 +8713,7 @@ sha256 = "1a9qx041w7i1ahg6rmi82hv161k57z4aljzm8wpa9wrfj8a6df2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; @@ -8578,7 +8734,7 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ycm"; sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina"; name = "company-ycm"; }; @@ -8591,15 +8747,15 @@ company-ycmd = callPackage ({ company, dash, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s, ycmd }: melpaBuild { pname = "company-ycmd"; - version = "20160203.1121"; + version = "20160215.629"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "c64684df763411249985159ee33b10d948b9fc91"; - sha256 = "12jwqhzqskdp2l6h60rich19rddzjcl94zaf72ljnq8h0mqc3xy0"; + rev = "61601543ca9b70f6a92a87fb9057af6143ba5ed1"; + sha256 = "10j8zv5m36400wwkwbncqnsm616v59ww0bbkhrxcf6mn56iq8162"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; @@ -8620,7 +8776,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; @@ -8641,7 +8797,7 @@ sha256 = "0zz1k4h16pjdwiqavfbfbrbvi83ww93kgf838ap4f3n034hqfx20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/config-parser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/config-parser"; sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah"; name = "config-parser"; }; @@ -8661,7 +8817,7 @@ sha256 = "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/confluence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/confluence"; sha256 = "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf"; name = "confluence"; }; @@ -8682,7 +8838,7 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; @@ -8703,7 +8859,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; @@ -8720,11 +8876,11 @@ src = fetchFromGitHub { owner = "lshift-de"; repo = "contextual"; - rev = "8134a2d8034c624f4fdbbb0b3893de12f4257909"; - sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av"; + rev = "9e009614fb72ef14964d7107abd44de5aed21659"; + sha256 = "0ykc3lzdypf543dgm7jpi70z08kz9hwhn2gvp06ylb22id8b3fai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; @@ -8745,7 +8901,7 @@ sha256 = "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/control-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/control-mode"; sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6"; name = "control-mode"; }; @@ -8766,7 +8922,7 @@ sha256 = "1x87rra9pxvcs8jxnzhg2jr9wq0l3kp3qqqsw77bc4jsizdndss1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; @@ -8779,15 +8935,15 @@ counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "counsel"; - version = "20160201.1343"; + version = "20160221.1109"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "00f08f74f1568b6f835abadecff32cd7c9a7a556"; - sha256 = "0hnqw1mhaa7ybldd6mvz9lyv32yspn3x2bgx3fsrh8rhsmns06qh"; + rev = "4af5c2e4e83f51da91675b0de7301b09c4b24b2c"; + sha256 = "0ra5sa0dfrh1bv1q3r81r92i6xzazvw3lzz5n5qfbxcpnf8lygzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; @@ -8797,6 +8953,27 @@ license = lib.licenses.free; }; }) {}; + coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }: + melpaBuild { + pname = "coverage"; + version = "20160219.1753"; + src = fetchFromGitHub { + owner = "trezona-lecomte"; + repo = "coverage"; + rev = "57476dc0523a702e9772ebf2d500b1e1b56920b2"; + sha256 = "0ss00jqwvgb9xk2fjx7z023lqfsfz6axw7ylfp5ji60lp5wbi0qs"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coverage"; + sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; + name = "coverage"; + }; + packageRequires = [ cl-lib ov ]; + meta = { + homepage = "http://melpa.org/#/coverage"; + license = lib.licenses.free; + }; + }) {}; cp5022x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cp5022x"; @@ -8808,7 +8985,7 @@ sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cp5022x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cp5022x"; sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl"; name = "cp5022x"; }; @@ -8821,15 +8998,15 @@ cpputils-cmake = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cpputils-cmake"; - version = "20151030.603"; + version = "20160216.2240"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cpputils-cmake"; - rev = "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4"; - sha256 = "0kjkqylg0fncizrgcr8xx2qgjr8id41904n2pip0gicbry1n8bqg"; + rev = "f18c96750b1b2f4e1537fac7df2818524ccda665"; + sha256 = "0ky59gz5pvi4m5b9rh13ywfmclrmiwalynpqw652rmc6yfzv0fnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; @@ -8850,7 +9027,7 @@ sha256 = "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crab"; sha256 = "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj"; name = "crab"; }; @@ -8871,7 +9048,7 @@ sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crappy-jsp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crappy-jsp-mode"; sha256 = "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii"; name = "crappy-jsp-mode"; }; @@ -8892,7 +9069,7 @@ sha256 = "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; @@ -8913,7 +9090,7 @@ sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/creole"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creole"; sha256 = "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5"; name = "creole"; }; @@ -8934,7 +9111,7 @@ sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/creole-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creole-mode"; sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s"; name = "creole-mode"; }; @@ -8955,7 +9132,7 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; @@ -8976,7 +9153,7 @@ sha256 = "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crontab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crontab-mode"; sha256 = "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci"; name = "crontab-mode"; }; @@ -8995,7 +9172,7 @@ sha256 = "120hxk82i0r4qan4hfk9ldmw5a8bzv7p683lrnlcx9gyxgkia3am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crosshairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crosshairs"; sha256 = "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp"; name = "crosshairs"; }; @@ -9008,15 +9185,15 @@ crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crux"; - version = "20160130.1452"; + version = "20160214.437"; src = fetchFromGitHub { owner = "bbatsov"; repo = "crux"; - rev = "382834edb99de9b347d61beca8834838da199911"; - sha256 = "0hrbh1vdr80l816zzzgd22vx77nl8ckc8b91z1gm675z6sqmipzf"; + rev = "ca62859c495732b720faebf9a08e40fd5db0d947"; + sha256 = "0skwj8cp8x2v8443jp03safrfx9adabdgsp01x95jhlc5hf2hfdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; @@ -9037,7 +9214,7 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; @@ -9058,7 +9235,7 @@ sha256 = "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cryptsy-public-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cryptsy-public-api"; sha256 = "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n"; name = "cryptsy-public-api"; }; @@ -9071,15 +9248,15 @@ csharp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "csharp-mode"; - version = "20160117.1521"; + version = "20160217.1411"; src = fetchFromGitHub { owner = "josteink"; repo = "csharp-mode"; - rev = "bc3bd2a2e2e14f81f3e297841fbb6a761c35b417"; - sha256 = "09b5n36z99asa81k7h7xr7906g1vpr3sg3kdcq2fdbznbpjydnvl"; + rev = "57b23533673b39da9cd6d76f69a52ac4a2a607cb"; + sha256 = "1q5kpzxgv14dj1q2dmlpxw2yj01gv3mjl2shhr1n89z8zpf6figl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; @@ -9100,7 +9277,7 @@ sha256 = "0ljhar80kk7k54jz1xiq4r0w6s1wkacl7qz9wkvvbzhjb0z049hq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/css-comb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/css-comb"; sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf"; name = "css-comb"; }; @@ -9121,7 +9298,7 @@ sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/css-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/css-eldoc"; sha256 = "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf"; name = "css-eldoc"; }; @@ -9142,7 +9319,7 @@ sha256 = "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cssfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cssfmt"; sha256 = "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8"; name = "cssfmt"; }; @@ -9163,7 +9340,7 @@ sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cssh"; sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk"; name = "cssh"; }; @@ -9181,7 +9358,7 @@ sha256 = "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/csv-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/csv-nav"; sha256 = "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj"; name = "csv-nav"; }; @@ -9202,7 +9379,7 @@ sha256 = "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; @@ -9221,7 +9398,7 @@ sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; @@ -9242,7 +9419,7 @@ sha256 = "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; @@ -9263,7 +9440,7 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctl-mode"; sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj"; name = "ctl-mode"; }; @@ -9284,7 +9461,7 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; @@ -9305,7 +9482,7 @@ sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cucumber-goto-step"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cucumber-goto-step"; sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8"; name = "cucumber-goto-step"; }; @@ -9326,7 +9503,7 @@ sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; @@ -9344,7 +9521,7 @@ sha256 = "1w0msh4mfhwglkwgb8ksqfdzbd1bvspllydnjzhc0yl3s7qrifbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cursor-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cursor-chg"; sha256 = "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk"; name = "cursor-chg"; }; @@ -9365,7 +9542,7 @@ sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cursor-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cursor-test"; sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1"; name = "cursor-test"; }; @@ -9383,7 +9560,7 @@ sha256 = "1p0kacbw5zfrd7zplhlh7j1890spvn8p0bryvqqmyf8w5873pcmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cus-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cus-edit+"; sha256 = "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz"; name = "cus-edit-plus"; }; @@ -9404,7 +9581,7 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; @@ -9425,7 +9602,7 @@ sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cycbuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cycbuf"; sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw"; name = "cycbuf"; }; @@ -9446,7 +9623,7 @@ sha256 = "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cycle-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cycle-resize"; sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi"; name = "cycle-resize"; }; @@ -9467,7 +9644,7 @@ sha256 = "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cycle-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cycle-themes"; sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc"; name = "cycle-themes"; }; @@ -9485,7 +9662,7 @@ sha256 = "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cygwin-mount"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cygwin-mount"; sha256 = "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb"; name = "cygwin-mount"; }; @@ -9506,7 +9683,7 @@ sha256 = "1xcd8j5chh5j3fibi8bg2il6r09vza5xlb5fqm9j8sg3vkab26z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; @@ -9527,7 +9704,7 @@ sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cypher-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cypher-mode"; sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0"; name = "cypher-mode"; }; @@ -9544,11 +9721,11 @@ src = fetchFromGitHub { owner = "cython"; repo = "cython"; - rev = "fa946e8435a4dcc3497fc7b0f4e87256d40844ba"; - sha256 = "1w09wwp6gaa0c65mwa9jfcjksppxqv1xb7mlgsk1wxbyprcllaq5"; + rev = "eca0803d7ce59597cdaf35fd54ce7cda193f262b"; + sha256 = "1r9mky9qm8y49pwr3qqbgydvvjnxkd1c0wfj6h0izrmpwjz35r0r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; @@ -9569,7 +9746,7 @@ sha256 = "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/czech-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/czech-holidays"; sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84"; name = "czech-holidays"; }; @@ -9590,7 +9767,7 @@ sha256 = "0fqirypxhbvnhz86rznwdx553ppg0z0hxh1h04qg7y58g01vpsdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; @@ -9611,7 +9788,7 @@ sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dactyl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dactyl-mode"; sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm"; name = "dactyl-mode"; }; @@ -9632,7 +9809,7 @@ sha256 = "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dakrone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dakrone-theme"; sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814"; name = "dakrone-theme"; }; @@ -9653,7 +9830,7 @@ sha256 = "1abwx7fqbr395z3l3dshh242lxqpwr1mszmj1pxj420qi1qria6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/darcula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darcula-theme"; sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; name = "darcula-theme"; }; @@ -9674,7 +9851,7 @@ sha256 = "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dark-krystal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dark-krystal-theme"; sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j"; name = "dark-krystal-theme"; }; @@ -9684,6 +9861,27 @@ license = lib.licenses.free; }; }) {}; + dark-mint-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "dark-mint-theme"; + version = "20160217.1502"; + src = fetchFromGitHub { + owner = "shaunvxc"; + repo = "dark-mint-theme"; + rev = "1a6d7e49982832c0a282128e011512161c8f2b21"; + sha256 = "0xsbmhpyis0c0hfk6qzx298pw042ns44qmm80qf8hwhhqp38mfyx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dark-mint-theme"; + sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m"; + name = "dark-mint-theme"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/dark-mint-theme"; + license = lib.licenses.free; + }; + }) {}; dark-souls = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-souls"; @@ -9695,7 +9893,7 @@ sha256 = "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dark-souls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dark-souls"; sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc"; name = "dark-souls"; }; @@ -9716,7 +9914,7 @@ sha256 = "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/darkburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darkburn-theme"; sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w"; name = "darkburn-theme"; }; @@ -9737,7 +9935,7 @@ sha256 = "0ajxlrnz1228w8ldgraw6a4s605isbr67p8s382jvia2zf821fmp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/darkmine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darkmine-theme"; sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5"; name = "darkmine-theme"; }; @@ -9758,7 +9956,7 @@ sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; @@ -9771,15 +9969,15 @@ dart-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "dart-mode"; - version = "20150721.1854"; + version = "20160212.1321"; src = fetchFromGitHub { owner = "nex3"; repo = "dart-mode"; - rev = "1b7562262c83de94a5118ffc55b495dae8aa7367"; - sha256 = "1pd7a76znzypwi0khssdlas5kcma8r865d68jmr3n6xvwdmy8dlc"; + rev = "05fbd30fb4dd1ce931fb15a3e88b13eeec5526ef"; + sha256 = "0ylzgaf4g0fh16rc061iaw3jrl2sjiwpr4x1ndk2bp0j14n7hqid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; @@ -9800,7 +9998,7 @@ sha256 = "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; @@ -9821,7 +10019,7 @@ sha256 = "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dash-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash-at-point"; sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m"; name = "dash-at-point"; }; @@ -9842,7 +10040,7 @@ sha256 = "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; @@ -9863,7 +10061,7 @@ sha256 = "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; @@ -9884,7 +10082,7 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; @@ -9905,7 +10103,7 @@ sha256 = "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/datomic-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/datomic-snippets"; sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r"; name = "datomic-snippets"; }; @@ -9926,7 +10124,7 @@ sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dayone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dayone"; sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l"; name = "dayone"; }; @@ -9947,7 +10145,7 @@ sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/db"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/db"; sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n"; name = "db"; }; @@ -9968,7 +10166,7 @@ sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/db-pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/db-pg"; sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg"; name = "db-pg"; }; @@ -9985,11 +10183,11 @@ src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; - rev = "64ad0ea6d03c0d46030cc5aaa3715b5cf3a82d3c"; - sha256 = "02bsiq0kxm9cbbr6hr20ac4888mcyk0i8p9hrrdvaijq4fhkk76b"; + rev = "4cb5da1418f447423cb81ca99539f77a6067ad77"; + sha256 = "145n50vspxaslvhf3ahlp435h5slz24csa2h62zly18xprw1ai1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ddskk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ddskk"; sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9"; name = "ddskk"; }; @@ -10010,7 +10208,7 @@ sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/debpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/debpaste"; sha256 = "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw"; name = "debpaste"; }; @@ -10031,7 +10229,7 @@ sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/debug-print"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/debug-print"; sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm"; name = "debug-print"; }; @@ -10052,7 +10250,7 @@ sha256 = "01bafkc99g9vi45y95mi3sqin2lsfw885z63f7llpqvnfav86n4y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/decl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/decl"; sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k"; name = "decl"; }; @@ -10073,7 +10271,7 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; @@ -10094,7 +10292,7 @@ sha256 = "1haixiy94r50rfza64dypb7fi256231pf06g6p2il9kyscqg0zz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dedukti-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dedukti-mode"; sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9"; name = "dedukti-mode"; }; @@ -10115,7 +10313,7 @@ sha256 = "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; @@ -10136,7 +10334,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; @@ -10157,7 +10355,7 @@ sha256 = "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; @@ -10178,7 +10376,7 @@ sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/defproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/defproject"; sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm"; name = "defproject"; }; @@ -10197,7 +10395,7 @@ sha256 = "15c3ec6fcfae63201652394205fee951f3c1db8d3c6fc5f48c306b9b775c8e63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; @@ -10215,7 +10413,7 @@ sha256 = "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/delight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/delight"; sha256 = "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj"; name = "delight"; }; @@ -10236,7 +10434,7 @@ sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/delim-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/delim-kill"; sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig"; name = "delim-kill"; }; @@ -10257,7 +10455,7 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; @@ -10278,7 +10476,7 @@ sha256 = "1hdnjwsmwbwn0ziyw805jjpaj3zpm374g9y4yn5ip4l9x4vq73xv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/demo-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/demo-it"; sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7"; name = "demo-it"; }; @@ -10299,7 +10497,7 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; @@ -10320,7 +10518,7 @@ sha256 = "18k5898r4n96h93xsvjrpm90hz3rd0ir6x3axjzqwwrgs2ik7pj2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; @@ -10340,7 +10538,7 @@ sha256 = "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/desktop-registry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop-registry"; sha256 = "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr"; name = "desktop-registry"; }; @@ -10360,7 +10558,7 @@ sha256 = "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dic-lookup-w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dic-lookup-w3m"; sha256 = "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv"; name = "dic-lookup-w3m"; }; @@ -10381,7 +10579,7 @@ sha256 = "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dictcc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dictcc"; sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm"; name = "dictcc"; }; @@ -10402,7 +10600,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; @@ -10423,7 +10621,7 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; @@ -10444,7 +10642,7 @@ sha256 = "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diffscuss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diffscuss-mode"; sha256 = "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh"; name = "diffscuss-mode"; }; @@ -10465,7 +10663,7 @@ sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; @@ -10478,15 +10676,15 @@ digistar-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "digistar-mode"; - version = "20150402.1922"; + version = "20160218.1355"; src = fetchFromGitHub { owner = "retroj"; repo = "digistar-mode"; - rev = "fcc0447b9ad97ac76f86de7485e0947440966d3f"; - sha256 = "0rjqfpya6wkf8nv00q2d40fcnssnsr3p07j9blbpcrqalkdm27ds"; + rev = "15288b1e1a04b79b5ab7097fdd26d48b2ff41076"; + sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; @@ -10507,7 +10705,7 @@ sha256 = "17jfmgyras32w9xr8fldqj924bijgng4bjg9fy6ckwb3mgihyil8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; @@ -10528,7 +10726,7 @@ sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; @@ -10549,7 +10747,7 @@ sha256 = "04vfc5zgcjp0pax5zk1x98ivx5g349c5g3748lb9pgsijqaprgg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; @@ -10570,7 +10768,7 @@ sha256 = "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; @@ -10591,7 +10789,7 @@ sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dircmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dircmp"; sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c"; name = "dircmp"; }; @@ -10604,15 +10802,15 @@ dired-atool = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-atool"; - version = "20160203.458"; + version = "20160208.633"; src = fetchFromGitHub { owner = "HKey"; repo = "dired-atool"; - rev = "8a1fb134875e83bf0ffeb693d02066c96c1c312f"; - sha256 = "1i4q65y6r1npcxsp7fjk695my668jys46cq62syv2b8c4vbgapn3"; + rev = "f188ccf6092330dbbefc0e75aa4fad3e7258749d"; + sha256 = "06m2p5sf47ykhkl958x4k0j0rxzrq0wfwf86mvnarlgc1215dbaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; @@ -10629,11 +10827,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-avfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-avfs"; sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm"; name = "dired-avfs"; }; @@ -10651,7 +10849,7 @@ sha256 = "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-details"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-details"; sha256 = "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck"; name = "dired-details"; }; @@ -10670,7 +10868,7 @@ sha256 = "07z4h5l8763ks6b6m8dcmq78jiyq4xvan1mb0z8fbasmi1bsrya4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-details+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-details+"; sha256 = "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx"; name = "dired-details-plus"; }; @@ -10691,7 +10889,7 @@ sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-dups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-dups"; sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71"; name = "dired-dups"; }; @@ -10712,7 +10910,7 @@ sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; @@ -10733,7 +10931,7 @@ sha256 = "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; @@ -10746,15 +10944,15 @@ dired-filetype-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-filetype-face"; - version = "20151216.2057"; + version = "20160217.247"; src = fetchFromGitHub { owner = "jixiuf"; repo = "dired-filetype-face"; - rev = "c51bb2d5fba8964b86e63242c247c4688441b9db"; - sha256 = "0v6n4ymlnphzmqaqlfbxvf24dh1pa0xy37xhz9xfjkk02l02wsgf"; + rev = "ca37251cee6b4e07004326169d701745a80f595f"; + sha256 = "06hxcxgivxds42qilraqa6q1mlrhkn21w2adb1dg70p8qyrjqfk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-filetype-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-filetype-face"; sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6"; name = "dired-filetype-face"; }; @@ -10771,11 +10969,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-filter"; sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p"; name = "dired-filter"; }; @@ -10792,11 +10990,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-hacks-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-hacks-utils"; sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi"; name = "dired-hacks-utils"; }; @@ -10817,7 +11015,7 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; @@ -10838,7 +11036,7 @@ sha256 = "13xpbbdd190lklz8jmj8nw8qm414kpkij9wrd7a9ws9j1jzj8x6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; @@ -10855,11 +11053,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-narrow"; sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d"; name = "dired-narrow"; }; @@ -10872,15 +11070,15 @@ dired-open = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-open"; - version = "20150819.1148"; + version = "20160205.1413"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-open"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-open"; sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx"; name = "dired-open"; }; @@ -10898,7 +11096,7 @@ sha256 = "0fhag6jhb97jg50rb32s93mml0adncsd58z9grs7l95zva439pc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired+"; sha256 = "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5"; name = "dired-plus"; }; @@ -10915,11 +11113,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-rainbow"; sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882"; name = "dired-rainbow"; }; @@ -10936,11 +11134,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-ranger"; sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h"; name = "dired-ranger"; }; @@ -10961,7 +11159,7 @@ sha256 = "01xvaqckyr31ywsn1fp9sz9wq4h4dd1hgghfqypc9s4akrxmgnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; @@ -10979,7 +11177,7 @@ sha256 = "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-sort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-sort"; sha256 = "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x"; name = "dired-sort"; }; @@ -10997,7 +11195,7 @@ sha256 = "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-sort-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-sort-menu"; sha256 = "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb"; name = "dired-sort-menu"; }; @@ -11016,7 +11214,7 @@ sha256 = "1hjci4zfzig04ji1jravxg9n67rdr4wyhmxmahbrzq9kjnql510i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-sort-menu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-sort-menu+"; sha256 = "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq"; name = "dired-sort-menu-plus"; }; @@ -11033,11 +11231,11 @@ src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "bc5b52efbad15a95a898dfcf3e828bf852555135"; - sha256 = "1r5pn8j1c6bs41pm7ix6bjn1qv29nk7qw6xhskzakg0y1z5zlyvd"; + rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; + sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-subtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-subtree"; sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk"; name = "dired-subtree"; }; @@ -11058,7 +11256,7 @@ sha256 = "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-toggle"; sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5"; name = "dired-toggle"; }; @@ -11079,7 +11277,7 @@ sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-toggle-sudo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-toggle-sudo"; sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va"; name = "dired-toggle-sudo"; }; @@ -11100,7 +11298,7 @@ sha256 = "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diredful"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diredful"; sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; name = "diredful"; }; @@ -11121,7 +11319,7 @@ sha256 = "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; @@ -11142,7 +11340,7 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; @@ -11161,7 +11359,7 @@ sha256 = "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dirtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dirtree"; sha256 = "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29"; name = "dirtree"; }; @@ -11182,7 +11380,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dirtree-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dirtree-prosjekt"; sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk"; name = "dirtree-prosjekt"; }; @@ -11203,7 +11401,7 @@ sha256 = "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/disaster"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/disaster"; sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn"; name = "disaster"; }; @@ -11224,7 +11422,7 @@ sha256 = "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; @@ -11245,7 +11443,7 @@ sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/discover-clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-clj-refactor"; sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r"; name = "discover-clj-refactor"; }; @@ -11266,7 +11464,7 @@ sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/discover-js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-js2-refactor"; sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki"; name = "discover-js2-refactor"; }; @@ -11287,7 +11485,7 @@ sha256 = "0b73nc4jkf9bggnlp0l34jfcgx91vxbpavz6bpnf5rjvm0v1bil9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; @@ -11305,7 +11503,7 @@ sha256 = "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/disk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/disk"; sha256 = "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n"; name = "disk"; }; @@ -11326,7 +11524,7 @@ sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; @@ -11347,7 +11545,7 @@ sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/display-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/display-theme"; sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa"; name = "display-theme"; }; @@ -11368,7 +11566,7 @@ sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/distinguished-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/distinguished-theme"; sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4"; name = "distinguished-theme"; }; @@ -11389,7 +11587,7 @@ sha256 = "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dizzee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dizzee"; sha256 = "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs"; name = "dizzee"; }; @@ -11410,7 +11608,7 @@ sha256 = "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/django-manage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-manage"; sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh"; name = "django-manage"; }; @@ -11431,7 +11629,7 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/django-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-mode"; sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara"; name = "django-mode"; }; @@ -11452,7 +11650,7 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/django-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-snippets"; sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw"; name = "django-snippets"; }; @@ -11473,7 +11671,7 @@ sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/django-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-theme"; sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf"; name = "django-theme"; }; @@ -11494,7 +11692,7 @@ sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dkdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dkdo"; sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300"; name = "dkdo"; }; @@ -11515,7 +11713,7 @@ sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dklrt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dklrt"; sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561"; name = "dklrt"; }; @@ -11536,7 +11734,7 @@ sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dkmisc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dkmisc"; sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z"; name = "dkmisc"; }; @@ -11557,7 +11755,7 @@ sha256 = "0spj80vq6m2kqbdy6y1vh9fzwqyqkij30457d2n39kjn2gzbyar8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dmenu"; sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0"; name = "dmenu"; }; @@ -11578,7 +11776,7 @@ sha256 = "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dna-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dna-mode"; sha256 = "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9"; name = "dna-mode"; }; @@ -11599,7 +11797,7 @@ sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/docbook-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docbook-snippets"; sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq"; name = "docbook-snippets"; }; @@ -11620,7 +11818,7 @@ sha256 = "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/docean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docean"; sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9"; name = "docean"; }; @@ -11641,7 +11839,7 @@ sha256 = "12n63z4kkgfzkc2xji1z0k924af0v633qhvrr0rm83db9hz9j318"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; @@ -11662,7 +11860,7 @@ sha256 = "0bvnvs17cbisymiqp96q4y2w2jqy5hd0zyk6rv7mihr9p97ak9kv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/docker-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docker-tramp"; sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w"; name = "docker-tramp"; }; @@ -11683,7 +11881,7 @@ sha256 = "0vx7lv54v4bznn4mik4i6idb9dl7fpp3gw7nyhymbkr6hx884haw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; @@ -11704,7 +11902,7 @@ sha256 = "1qfmq8l4jqyrhfplsr1zd8bg9qqqwbh3mhipqzja0px0knjpqj85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dokuwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dokuwiki-mode"; sha256 = "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9"; name = "dokuwiki-mode"; }; @@ -11725,7 +11923,7 @@ sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dollaro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dollaro"; sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h"; name = "dollaro"; }; @@ -11735,27 +11933,6 @@ license = lib.licenses.free; }; }) {}; - dom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "dom"; - version = "20150414.1810"; - src = fetchFromGitHub { - owner = "toroidal-code"; - repo = "dom.el"; - rev = "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6"; - sha256 = "165d22qkkdxd8zsbln0991r5n7aklz92f2snf6d8578flkqvdmm2"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/dom"; - sha256 = "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2"; - name = "dom"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "http://melpa.org/#/dom"; - license = lib.licenses.free; - }; - }) {}; doom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "doom"; @@ -11767,7 +11944,7 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; @@ -11785,7 +11962,7 @@ sha256 = "0201clwq9nbl8336lddcbwah8d6xipr7q8135yq79szfxq2bdg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/doremi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi"; sha256 = "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb"; name = "doremi"; }; @@ -11804,7 +11981,7 @@ sha256 = "1m7jn80apya6s9d8phd859rq1m13xf2wz9664pqpr1p65yz2pyvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/doremi-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi-cmd"; sha256 = "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05"; name = "doremi-cmd"; }; @@ -11823,7 +12000,7 @@ sha256 = "0v7ycmddh1ds64m1y5yai5nh34bd32q3wcm5y2pdzhj6jk7nj5wz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/doremi-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi-frm"; sha256 = "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz"; name = "doremi-frm"; }; @@ -11841,7 +12018,7 @@ sha256 = "157kvlb4dqiyk1h7b4p0dhrr6crdakwnrxydyl6yh51w2hdnnigw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/doremi-mac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi-mac"; sha256 = "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls"; name = "doremi-mac"; }; @@ -11859,7 +12036,7 @@ sha256 = "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dos"; sha256 = "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc"; name = "dos"; }; @@ -11877,7 +12054,7 @@ sha256 = "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dot-mode"; sha256 = "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh"; name = "dot-mode"; }; @@ -11898,7 +12075,7 @@ sha256 = "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/download-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/download-region"; sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl"; name = "download-region"; }; @@ -11919,7 +12096,7 @@ sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; @@ -11940,7 +12117,7 @@ sha256 = "11s4vxr6waswyx4lz3q70s8xdz0v7354sn0pfwj42mmww4pzkizs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dpaste"; sha256 = "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz"; name = "dpaste"; }; @@ -11961,7 +12138,7 @@ sha256 = "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dpaste_de"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dpaste_de"; sha256 = "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp"; name = "dpaste_de"; }; @@ -11978,11 +12155,11 @@ src = fetchFromGitHub { owner = "zenorocha"; repo = "dracula-theme"; - rev = "c158eb289d48a1b4eef3be62157df798675b172c"; - sha256 = "1gxamb8hdrpm52541z37r6yr36n3sbj35mcasfipnwa5qryc3gxa"; + rev = "a97d71234a9cb07b03caab684601b7b40d67c063"; + sha256 = "1ly5d5dbhbmgflcl3gvwkd1i4bikffmdc4c42rmxxf1xw6gp7s2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dracula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dracula-theme"; sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r"; name = "dracula-theme"; }; @@ -12003,7 +12180,7 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; @@ -12024,7 +12201,7 @@ sha256 = "08kkiqhfy1i6j9156gbl85jvyj592vd08qy24ng2dj0prjvap8w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drag-stuff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drag-stuff"; sha256 = "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc"; name = "drag-stuff"; }; @@ -12045,7 +12222,7 @@ sha256 = "1yvg3w9gm5vs26qhw3xb72v9fgdhqq9w5pksiz2gj5m19l81irar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drawille"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drawille"; sha256 = "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil"; name = "drawille"; }; @@ -12066,7 +12243,7 @@ sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drill-instructor-AZIK-force"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drill-instructor-AZIK-force"; sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f"; name = "drill-instructor-AZIK-force"; }; @@ -12087,7 +12264,7 @@ sha256 = "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dropbox"; sha256 = "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f"; name = "dropbox"; }; @@ -12105,7 +12282,7 @@ sha256 = "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dropdown-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dropdown-list"; sha256 = "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z"; name = "dropdown-list"; }; @@ -12126,7 +12303,7 @@ sha256 = "0am3n25qcfjkqfp4wjj1d2zigrmi8hg7p5sy2h91zg3blypqmpsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; @@ -12147,7 +12324,7 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; @@ -12162,11 +12339,11 @@ version = "20130120.1457"; src = fetchsvn { url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; - rev = "1728559"; + rev = "1731575"; sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dsvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dsvn"; sha256 = "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6"; name = "dsvn"; }; @@ -12187,7 +12364,7 @@ sha256 = "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dtrace-script-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dtrace-script-mode"; sha256 = "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4"; name = "dtrace-script-mode"; }; @@ -12208,7 +12385,7 @@ sha256 = "0x8c3h3jvyn2462r0sagz63vv9pr5ivfzkshr69603ibyfgqxxkp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dtrt-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dtrt-indent"; sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5"; name = "dtrt-indent"; }; @@ -12229,7 +12406,7 @@ sha256 = "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dts-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dts-mode"; sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234"; name = "dts-mode"; }; @@ -12250,7 +12427,7 @@ sha256 = "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; @@ -12260,6 +12437,27 @@ license = lib.licenses.free; }; }) {}; + dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + melpaBuild { + pname = "dumb-jump"; + version = "20160220.2341"; + src = fetchFromGitHub { + owner = "jacktasia"; + repo = "dumb-jump"; + rev = "27c0826a6b078e7483e002aa8b3a9f03d2ec6da1"; + sha256 = "1saz5ysy99i2l97kzy5acxxzy7iy3v4zxszmpw2b9ppbbxrwanfk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dumb-jump"; + sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; + name = "dumb-jump"; + }; + packageRequires = [ dash f s ]; + meta = { + homepage = "http://melpa.org/#/dumb-jump"; + license = lib.licenses.free; + }; + }) {}; dummy-h-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dummy-h-mode"; version = "20140816.733"; @@ -12268,7 +12466,7 @@ sha256 = "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dummy-h-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dummy-h-mode"; sha256 = "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4"; name = "dummy-h-mode"; }; @@ -12289,7 +12487,7 @@ sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dummyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dummyparens"; sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk"; name = "dummyparens"; }; @@ -12310,7 +12508,7 @@ sha256 = "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/duplicate-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/duplicate-thing"; sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4"; name = "duplicate-thing"; }; @@ -12330,7 +12528,7 @@ sha256 = "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; @@ -12351,7 +12549,7 @@ sha256 = "011423kvbfcd7jifg9425j89hlzmnw4j751s4mdz9wyr979k19ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dylan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dylan-mode"; sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy"; name = "dylan-mode"; }; @@ -12372,7 +12570,7 @@ sha256 = "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; @@ -12393,7 +12591,7 @@ sha256 = "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; @@ -12414,7 +12612,7 @@ sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2ansi"; sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94"; name = "e2ansi"; }; @@ -12435,7 +12633,7 @@ sha256 = "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; @@ -12456,7 +12654,7 @@ sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; @@ -12477,7 +12675,7 @@ sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-bookmark"; sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5"; name = "e2wm-bookmark"; }; @@ -12498,7 +12696,7 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; @@ -12519,7 +12717,7 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; @@ -12540,7 +12738,7 @@ sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-svg-clock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-svg-clock"; sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms"; name = "e2wm-svg-clock"; }; @@ -12561,7 +12759,7 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; @@ -12582,7 +12780,7 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; @@ -12603,7 +12801,7 @@ sha256 = "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-after-load"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-after-load"; sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys"; name = "easy-after-load"; }; @@ -12624,7 +12822,7 @@ sha256 = "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-escape"; sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk"; name = "easy-escape"; }; @@ -12645,7 +12843,7 @@ sha256 = "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; @@ -12666,7 +12864,7 @@ sha256 = "18fn9qnm0cwdy47nv6wafiy6cf7rnv4av4w8zmjwjj0n8ql4jl08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; @@ -12687,7 +12885,7 @@ sha256 = "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-lentic"; sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg"; name = "easy-lentic"; }; @@ -12708,7 +12906,7 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; @@ -12729,7 +12927,7 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; @@ -12739,18 +12937,39 @@ license = lib.licenses.free; }; }) {}; + ebf = callPackage ({ cl-lib ? null, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ebf"; + version = "20160211.1158"; + src = fetchFromGitHub { + owner = "rexim"; + repo = "ebf"; + rev = "b52dd2fa8c6a4a7acf4d93c16f54fbd9fbe087df"; + sha256 = "1yyx6z251bgvcfi3jzdq4cnmyd8vmz3gffbzii5bdga4ms288j5d"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebf"; + sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; + name = "ebf"; + }; + packageRequires = [ cl-lib dash dash-functional ]; + meta = { + homepage = "http://melpa.org/#/ebf"; + license = lib.licenses.free; + }; + }) {}; ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: melpaBuild { pname = "ebib"; - version = "20160125.1621"; + version = "20160219.408"; src = fetchFromGitHub { owner = "joostkremers"; repo = "ebib"; - rev = "edb289c39e1ccc9f7277b852527bc665e4912cd5"; - sha256 = "0grm2kskwms97w8jyp3ybfhrs2ynss0825knkw2x2wbdl8sg87lv"; + rev = "09211cde0a56ac38781269fb1db24424c76d0ad9"; + sha256 = "1pzx6izs9zg9fivplzagjf3a8477f4cka1py7mq8na6cv5wijyam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; @@ -12771,7 +12990,7 @@ sha256 = "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; @@ -12789,7 +13008,7 @@ sha256 = "0jk7pb2sr4qbxwcn4ipcjc9phl9zjmgg8sf91qj113112xx7vvxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/echo-bell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/echo-bell"; sha256 = "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws"; name = "echo-bell"; }; @@ -12810,7 +13029,7 @@ sha256 = "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eclipse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eclipse-theme"; sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx"; name = "eclipse-theme"; }; @@ -12831,7 +13050,7 @@ sha256 = "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; @@ -12852,7 +13071,7 @@ sha256 = "1x5y1d5crc48iddlsf6irkr017p32a9xjcmlm9wf3zggmr95fr3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; @@ -12865,15 +13084,15 @@ edbi-database-url = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-database-url"; - version = "20150126.603"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-database-url"; - rev = "08b833584460ddfd4d0d76e5b159625dde684bcf"; - sha256 = "1l5lkdgcy1z6fkjh3zrhf0f4f26bzhpqy33ak1xacvm9fyf54s2x"; + rev = "a6e4be7547ee8e0bb43a11ff173d6271b21b5012"; + sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edbi-database-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-database-url"; sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn"; name = "edbi-database-url"; }; @@ -12886,15 +13105,15 @@ edbi-django = callPackage ({ edbi, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-django"; - version = "20150115.1301"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-django"; - rev = "e6c786aac7b3db9552d9e0d8f46413ffae8c34af"; - sha256 = "0m08ijhlmsvxcf21jb7qmqq0bsgzv2jkm6b0x8s2mzmrzavfmggj"; + rev = "bdafb3f0a7b20aad4c1898d19d03f56e0554c850"; + sha256 = "16qpficprg1xw1paz0m2988bw436ykx1lr6bwffp1d7hjvccp9d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edbi-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-django"; sha256 = "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1"; name = "edbi-django"; }; @@ -12907,15 +13126,15 @@ edbi-minor-mode = callPackage ({ edbi, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-minor-mode"; - version = "20150421.703"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-minor-mode"; - rev = "afcbaf9e8264278e8526ca7509e6fc6bfd0d7937"; - sha256 = "1lndz0qlmjvi9r2f1yzw217b971ym5jzfrddcd6rind1asrzl32a"; + rev = "cce1cd0953866b2989ecbfd4321de71f308d6e9d"; + sha256 = "176954d4agk4by5w8a5ky65iwjky1dqxxvz8vdf8fxj82r5k9fhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edbi-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-minor-mode"; sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi"; name = "edbi-minor-mode"; }; @@ -12928,15 +13147,15 @@ edbi-sqlite = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-sqlite"; - version = "20150115.1301"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-sqlite"; - rev = "929009365529b56daec172b87d7632240b15be1f"; - sha256 = "0xnaj2f9zvnc6abjkaa23j6ga4anmq676aplws0n01y7qz6w0xk8"; + rev = "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"; + sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edbi-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-sqlite"; sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y"; name = "edbi-sqlite"; }; @@ -12957,7 +13176,7 @@ sha256 = "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ede-compdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ede-compdb"; sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7"; name = "ede-compdb"; }; @@ -12978,7 +13197,7 @@ sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edebug-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edebug-x"; sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql"; name = "edebug-x"; }; @@ -12999,7 +13218,7 @@ sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-at-point"; sha256 = "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im"; name = "edit-at-point"; }; @@ -13020,7 +13239,7 @@ sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-color-stamp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-color-stamp"; sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8"; name = "edit-color-stamp"; }; @@ -13041,7 +13260,7 @@ sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; @@ -13062,7 +13281,7 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; @@ -13083,7 +13302,7 @@ sha256 = "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; @@ -13104,7 +13323,7 @@ sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-server-htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-server-htmlize"; sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj"; name = "edit-server-htmlize"; }; @@ -13117,15 +13336,15 @@ editorconfig = callPackage ({ editorconfig-core, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "20160204.12"; + version = "20160217.2152"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "6fcae90cbe88f98ccc6b152f04cc6d2ffaaab288"; - sha256 = "17qvr9gqd4mkn0lzpxvijhwg1cbrqkqg4l9wnidbxa1wfzsr9mrd"; + rev = "c8ab99b94929ab86a18128464b9c464f21e0d0b7"; + sha256 = "1qsmx1wamjfdbhzj45kmkiprakfvfivm9fgy51byqk0sh84r2pkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/editorconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig"; sha256 = "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35"; name = "editorconfig"; }; @@ -13138,15 +13357,15 @@ editorconfig-core = callPackage ({ cl-lib ? null, editorconfig-fnmatch, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig-core"; - version = "20160127.35"; + version = "20160212.306"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "6fcae90cbe88f98ccc6b152f04cc6d2ffaaab288"; - sha256 = "17qvr9gqd4mkn0lzpxvijhwg1cbrqkqg4l9wnidbxa1wfzsr9mrd"; + rev = "c8ab99b94929ab86a18128464b9c464f21e0d0b7"; + sha256 = "1qsmx1wamjfdbhzj45kmkiprakfvfivm9fgy51byqk0sh84r2pkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/editorconfig-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-core"; sha256 = "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r"; name = "editorconfig-core"; }; @@ -13159,15 +13378,15 @@ editorconfig-fnmatch = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig-fnmatch"; - version = "20160127.35"; + version = "20160212.306"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "6fcae90cbe88f98ccc6b152f04cc6d2ffaaab288"; - sha256 = "17qvr9gqd4mkn0lzpxvijhwg1cbrqkqg4l9wnidbxa1wfzsr9mrd"; + rev = "c8ab99b94929ab86a18128464b9c464f21e0d0b7"; + sha256 = "1qsmx1wamjfdbhzj45kmkiprakfvfivm9fgy51byqk0sh84r2pkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/editorconfig-fnmatch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-fnmatch"; sha256 = "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv"; name = "editorconfig-fnmatch"; }; @@ -13177,22 +13396,22 @@ license = lib.licenses.free; }; }) {}; - edn = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, peg, s }: + edn = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, peg }: melpaBuild { pname = "edn"; - version = "20150929.346"; + version = "20160215.619"; src = fetchFromGitHub { owner = "expez"; repo = "edn.el"; - rev = "501a69696bec2fc09bf5d61e38a3ea344ed77a47"; - sha256 = "107ljwqibnd247h4iyav37y75zcgl0j2yav09s38kl3nbxmaad2y"; + rev = "be9e32d1b49e35247b263b0243df7cfdc8d413ab"; + sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; - packageRequires = [ cl-lib dash emacs peg s ]; + packageRequires = [ cl-lib emacs peg ]; meta = { homepage = "http://melpa.org/#/edn"; license = lib.licenses.free; @@ -13209,7 +13428,7 @@ sha256 = "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -13239,7 +13458,7 @@ sha256 = "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/efire"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/efire"; sha256 = "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w"; name = "efire"; }; @@ -13260,7 +13479,7 @@ sha256 = "1l9p8nairqr3ym5ydy0rwczcmkx2jq9b2g9r0r96n0vnjpybk6q2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; @@ -13273,15 +13492,15 @@ egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egison-mode"; - version = "20150827.2329"; + version = "20160217.1805"; src = fetchFromGitHub { owner = "egisatoshi"; repo = "egison3"; - rev = "bea1bf82ae9c3c22e1303a34496ce8132f722b3e"; - sha256 = "1s9anqlby0ikaal0i9vg8dkn4n0fhnqy1war4lx35qkmg3dg1m33"; + rev = "04b6a26e4e9abc9791bc5c4f230282628623d25a"; + sha256 = "0ykjddp8jc2a2b2dkbnp96sda4qb9c70f8vqzndykzvccfhl7kan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; @@ -13293,14 +13512,14 @@ }) {}; eide = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eide"; - version = "20151212.1406"; + version = "20160210.1438"; src = fetchgit { url = "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git"; - rev = "524494fd2b23217c6807b30b43bb95b5724f809e"; - sha256 = "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271"; + rev = "9d7fb8c50568ece04bb0382caca42d3ab68fbb01"; + sha256 = "200307116b3617feeb5b52fb7234ad1a13a2afd89830afbdc291c265fa762ae2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; @@ -13318,7 +13537,7 @@ sha256 = "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eimp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eimp"; sha256 = "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0"; name = "eimp"; }; @@ -13339,7 +13558,7 @@ sha256 = "05nvfjslfwzr54m1h2xjq3icd29khxpy0mka5r05gmlj3xzhkldv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; @@ -13360,7 +13579,7 @@ sha256 = "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ein-mumamo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ein-mumamo"; sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w"; name = "ein-mumamo"; }; @@ -13370,6 +13589,27 @@ license = lib.licenses.free; }; }) {}; + eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "eink-theme"; + version = "20160221.702"; + src = fetchFromGitHub { + owner = "maio"; + repo = "eink-emacs"; + rev = "61f5ecbb165b2e18fc131c8056a2522e8bf8802a"; + sha256 = "0bbaxg8g7gs75ih6shc3hxy9mwq7ci3q9iyly2snssaa613hijyv"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eink-theme"; + sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; + name = "eink-theme"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/eink-theme"; + license = lib.licenses.free; + }; + }) {}; el-autoyas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-autoyas"; @@ -13381,7 +13621,7 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; @@ -13394,15 +13634,15 @@ el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-get"; - version = "20151117.1015"; + version = "20160206.140"; src = fetchFromGitHub { owner = "dimitri"; repo = "el-get"; - rev = "415817cafc576c917b2459c2d29b6acf21d6ad53"; - sha256 = "1fl3846f70v3niklz5qsi6w1fgp0ga9vq2b712k8gikdkk1rf1i9"; + rev = "9126044d31ab5e266472d9921fcb61c62c47beb3"; + sha256 = "1c64ln6b6ddhac5wq66y51h693iiwwawgxhsjkw5kmimv2rkygrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; @@ -13419,11 +13659,11 @@ src = fetchFromGitHub { owner = "HKey"; repo = "el-init"; - rev = "a23cc95dd67fe63e131da211caa48eae804b11c5"; - sha256 = "140afbksvm1kvam7pyaibay8rqhfhmb22rrh39mvdnqskqfnlqgr"; + rev = "6b45551b8ed473c8a0c897b743b0378a3501556c"; + sha256 = "0qk5jk0n7ga2cxqnm69rsy5cjjn5b4l4yqgaafvmmrrp70p8drmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; @@ -13440,11 +13680,11 @@ src = fetchFromGitHub { owner = "HKey"; repo = "el-init-viewer"; - rev = "6e1aaab3e49d87253763e5b437d4f43f445b7774"; - sha256 = "13cc7nnslij28fa1469s9pfmnz8j0m6bayhrqxckd0xplvwwipnx"; + rev = "dbcb4418fe342dfd7da805f2d7caf1def68db7f9"; + sha256 = "0flf0pa3xwrdhfkshyr6nqrm957sgx9jkganbasqavbq1dvlw6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; @@ -13465,7 +13705,7 @@ sha256 = "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; @@ -13486,7 +13726,7 @@ sha256 = "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-pocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-pocket"; sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw"; name = "el-pocket"; }; @@ -13507,7 +13747,7 @@ sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-spec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spec"; sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh"; name = "el-spec"; }; @@ -13528,7 +13768,7 @@ sha256 = "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; @@ -13549,7 +13789,7 @@ sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-sprunge"; sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a"; name = "el-sprunge"; }; @@ -13570,7 +13810,7 @@ sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spy"; sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n"; name = "el-spy"; }; @@ -13588,7 +13828,7 @@ sha256 = "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-swank-fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-swank-fuzzy"; sha256 = "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1"; name = "el-swank-fuzzy"; }; @@ -13609,7 +13849,7 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; @@ -13630,7 +13870,7 @@ sha256 = "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el2markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el2markdown"; sha256 = "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g"; name = "el2markdown"; }; @@ -13651,7 +13891,7 @@ sha256 = "1wikmzl9gi72h6fxawj0h20828n4vypw9rrv35kqnl4gfrdmxzkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; @@ -13672,7 +13912,7 @@ sha256 = "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; @@ -13690,7 +13930,7 @@ sha256 = "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eldoc-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eldoc-extension"; sha256 = "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24"; name = "eldoc-extension"; }; @@ -13711,7 +13951,7 @@ sha256 = "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/electric-case"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-case"; sha256 = "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd"; name = "electric-case"; }; @@ -13724,15 +13964,15 @@ electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "electric-operator"; - version = "20160122.213"; + version = "20160207.643"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "electric-operator"; - rev = "4c2f271f89e59a8cc28b447daaf80f1b73db5bb9"; - sha256 = "0qbljvc1y39h6571xqjg4xyah0xwkv0qxx619x9frxlvlh83y4xc"; + rev = "cc5da970863c0b8d241cc716cc5cfbcb34bf6c3d"; + sha256 = "1ihy7cmflp8wghm0708y6fsw7cxrjkdimk6ixm2in7q56qijx4d4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; @@ -13753,7 +13993,7 @@ sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/electric-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-spacing"; sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg"; name = "electric-spacing"; }; @@ -13774,7 +14014,7 @@ sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elein"; sha256 = "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg"; name = "elein"; }; @@ -13795,7 +14035,7 @@ sha256 = "1c3xwjzln5grxp7cci2mmly73mzl02f8wjm4hbd9napx72wjcxiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; @@ -13816,7 +14056,7 @@ sha256 = "1r2liqjww0yscxjpg13dsfhhv3yjahlbas0dabqlh4f9q0jdrgj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elfeed-goodies"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-goodies"; sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi"; name = "elfeed-goodies"; }; @@ -13844,7 +14084,7 @@ sha256 = "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elfeed-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-org"; sha256 = "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik"; name = "elfeed-org"; }; @@ -13865,7 +14105,7 @@ sha256 = "1c3xwjzln5grxp7cci2mmly73mzl02f8wjm4hbd9napx72wjcxiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; @@ -13886,7 +14126,7 @@ sha256 = "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elhome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elhome"; sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh"; name = "elhome"; }; @@ -13904,7 +14144,7 @@ sha256 = "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elisp-depend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-depend"; sha256 = "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy"; name = "elisp-depend"; }; @@ -13925,7 +14165,7 @@ sha256 = "1ci6nyk1vvb3wgxzarbf6448i9rjb74zzrhcmls634gfxbryxdyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elisp-lint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-lint"; sha256 = "102hrxdw72bm11a29i15g09lv7jlnd7vkv7292fm3mcxf5f4hkw9"; name = "elisp-lint"; }; @@ -13946,7 +14186,7 @@ sha256 = "168ljhscqyvp24lw70ylv4a3c0y51sx4f66lfahbs7zpjvwf25x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elisp-sandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-sandbox"; sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp"; name = "elisp-sandbox"; }; @@ -13967,7 +14207,7 @@ sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; @@ -13988,7 +14228,7 @@ sha256 = "18dhijvgnx2hr9vnprcc1fl0k49bb3lpnghrqbkf7fj599kcjl7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; @@ -14009,7 +14249,7 @@ sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elixir-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-yasnippets"; sha256 = "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a"; name = "elixir-yasnippets"; }; @@ -14022,15 +14262,15 @@ elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "20160204.128"; + version = "20160211.226"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "61671af42d2162b06ee06b4857bc4a63bf82a57b"; - sha256 = "0cjxvmsfjki8zal31zbf4ynf7i0gy5vykpq6858qpa68vkd1p0iz"; + rev = "47ea2e8d06e9f39be4e1d5a79b6cc634f9d46e58"; + sha256 = "0qiwzcpwiwlkjy89pxvss3gvjvbp4d6qpaxnbm50va1gbn21n72v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; @@ -14051,7 +14291,7 @@ sha256 = "181hcyg5v62nxrgmb7pl9672rm9fy8crc4lqhdwvdvd7ngki1fiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; @@ -14072,7 +14312,7 @@ sha256 = "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; @@ -14093,7 +14333,7 @@ sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elnode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elnode"; sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6"; name = "elnode"; }; @@ -14114,7 +14354,7 @@ sha256 = "19yvhyg34w1idsh712cahmcy1pzbxcipw9j6xk567lvkqkinqg7s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elog"; sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd"; name = "elog"; }; @@ -14135,7 +14375,7 @@ sha256 = "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elogcat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elogcat"; sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia"; name = "elogcat"; }; @@ -14156,7 +14396,7 @@ sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; @@ -14177,7 +14417,7 @@ sha256 = "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; @@ -14198,7 +14438,7 @@ sha256 = "1xjm9b32a9nfzvphj6vm0dqcr4i072zcx29kcgiyyni8zbgbwmwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpy"; sha256 = "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709"; name = "elpy"; }; @@ -14225,7 +14465,7 @@ sha256 = "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen"; sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s"; name = "elscreen"; }; @@ -14246,7 +14486,7 @@ sha256 = "0bbashrqpyhs282w5i15rzravvj0fjnydbh9vfnfnfnk8a9sssxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-buffer-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-buffer-group"; sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v"; name = "elscreen-buffer-group"; }; @@ -14267,7 +14507,7 @@ sha256 = "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; @@ -14288,7 +14528,7 @@ sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-multi-term"; sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n"; name = "elscreen-multi-term"; }; @@ -14309,7 +14549,7 @@ sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; @@ -14330,7 +14570,7 @@ sha256 = "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-separate-buffer-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-separate-buffer-list"; sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk"; name = "elscreen-separate-buffer-list"; }; @@ -14351,7 +14591,7 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; @@ -14364,15 +14604,15 @@ elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elx"; - version = "20151215.639"; + version = "20160220.1114"; src = fetchFromGitHub { owner = "tarsius"; repo = "elx"; - rev = "a8dff14f0626f729e745092dd88a1801c6239710"; - sha256 = "1mchc4d61li5gfsf05dwhgb694fjj9hljnbvwvc12c1iik0zavq0"; + rev = "24bb321b275d441ca532c4ca7417143a79a88dcf"; + sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; @@ -14393,7 +14633,7 @@ sha256 = "171xgznpgvwl03kzqa9nbpvj3mfznnf050pl2wih390nk5djpg12"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; @@ -14414,7 +14654,7 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; @@ -14435,7 +14675,7 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; @@ -14456,7 +14696,7 @@ sha256 = "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; @@ -14466,6 +14706,27 @@ license = lib.licenses.free; }; }) {}; + emacsist-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "emacsist-view"; + version = "20160217.2240"; + src = fetchFromGitHub { + owner = "lujun9972"; + repo = "emacsist-view"; + rev = "4bfda87db63825bd40a2a3aad5c5a7760e2d4f38"; + sha256 = "0wrv2pkp8hf56lk5snxvypizydwyjpki7f4q6la4vbbf43zr1z2s"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsist-view"; + sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99"; + name = "emacsist-view"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/emacsist-view"; + license = lib.licenses.free; + }; + }) {}; emacsql = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, finalize, lib, melpaBuild }: melpaBuild { pname = "emacsql"; @@ -14477,7 +14738,7 @@ sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; @@ -14498,7 +14759,7 @@ sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; @@ -14519,7 +14780,7 @@ sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; @@ -14540,7 +14801,7 @@ sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; @@ -14561,7 +14822,7 @@ sha256 = "0jn4xj206idh5kgbklgcrngx6wvz9gwfm61wygar6pbfzqyx1y9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsshot"; sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; name = "emacsshot"; }; @@ -14582,7 +14843,7 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emagician-fix-spell-memory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emagician-fix-spell-memory"; sha256 = "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j"; name = "emagician-fix-spell-memory"; }; @@ -14603,7 +14864,7 @@ sha256 = "0j9vpiybpklf7kgmwpkdyywk29vpigzbn39d0m54z1kvy23xvx6x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; @@ -14624,7 +14885,7 @@ sha256 = "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emamux-ruby-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emamux-ruby-test"; sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm"; name = "emamux-ruby-test"; }; @@ -14645,7 +14906,7 @@ sha256 = "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ember-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ember-mode"; sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx"; name = "ember-mode"; }; @@ -14666,7 +14927,7 @@ sha256 = "1sj033acw1q80accdfkrxw4kzfl8p1ld16y188ikbizvq75lfkpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ember-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ember-yasnippets"; sha256 = "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i"; name = "ember-yasnippets"; }; @@ -14687,7 +14948,7 @@ sha256 = "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emmet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emmet-mode"; sha256 = "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819"; name = "emmet-mode"; }; @@ -14699,14 +14960,14 @@ }) {}; emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms"; - version = "20151211.1353"; + version = "20160207.620"; src = fetchgit { url = "git://git.sv.gnu.org/emms.git"; - rev = "489df29303fc89d4f80bffae91ad53f937ccd59a"; - sha256 = "6e653c3b44442e21ec6e4410d8b9c0e51b2f03ed1ae62c1bb1a2ffa6c8c144da"; + rev = "141ab95c2a0a2554b205f6eec991fa36d7d0531f"; + sha256 = "7a3dcd8e93e7c2261f1af64d5dc2381b4c94db927326a577895a68c4325ae4d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms"; sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m"; name = "emms"; }; @@ -14727,7 +14988,7 @@ sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-info-mediainfo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-info-mediainfo"; sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w"; name = "emms-info-mediainfo"; }; @@ -14748,7 +15009,7 @@ sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-mark-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-mark-ext"; sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081"; name = "emms-mark-ext"; }; @@ -14761,15 +15022,15 @@ emms-mode-line-cycle = callPackage ({ emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mode-line-cycle"; - version = "20151009.946"; + version = "20160221.520"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-mode-line-cycle"; - rev = "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295"; - sha256 = "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938"; + rev = "2c2f395e484a1d345050ddd61ff5fab71a92a6bc"; + sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; @@ -14790,7 +15051,7 @@ sha256 = "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; @@ -14811,7 +15072,7 @@ sha256 = "05n7jcd3nsnchv0swakf068klhlvckfcb3xjmxf5nnjibffjz77r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-player-mpv-jp-radios"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-mpv-jp-radios"; sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv"; name = "emms-player-mpv-jp-radios"; }; @@ -14832,7 +15093,7 @@ sha256 = "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; @@ -14853,7 +15114,7 @@ sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-soundcloud"; sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi"; name = "emms-soundcloud"; }; @@ -14874,7 +15135,7 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; @@ -14895,7 +15156,7 @@ sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emoji-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-display"; sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9"; name = "emoji-display"; }; @@ -14916,7 +15177,7 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; @@ -14937,7 +15198,7 @@ sha256 = "1fqhydv9anhw0z8zjbz17kbl01bdzif9ncd25vdaa5dzddd16rb1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emojify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emojify"; sha256 = "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17"; name = "emojify"; }; @@ -14958,7 +15219,7 @@ sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/empos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/empos"; sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4"; name = "empos"; }; @@ -14968,25 +15229,27 @@ license = lib.licenses.free; }; }) {}; - emr = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, paredit, popup, projectile, redshank, s }: + emr = callPackage ({ cl-lib ? null, clang-format, dash, emacs, fetchFromGitHub, fetchurl, iedit, lib, list-utils, melpaBuild, paredit, popup, projectile, redshank, s }: melpaBuild { pname = "emr"; - version = "20160202.1703"; + version = "20160218.1947"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "emacs-refactor"; - rev = "d545d9084a76f2043a7f3c9d21ef5692e6843e30"; - sha256 = "0l0jw5rakb2bsj2n1dxlj02hxvvyrgc2dfh6kn29i145lxpa03bf"; + rev = "138157999d62372e60e966f67c8b85be53dabde1"; + sha256 = "1frcn6694q74is8qbvrjkcsw0q1wz56z4gl35n4v3wakr9wvdvd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; packageRequires = [ cl-lib + clang-format dash emacs + iedit list-utils paredit popup @@ -15010,7 +15273,7 @@ sha256 = "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/enclose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enclose"; sha256 = "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759"; name = "enclose"; }; @@ -15031,7 +15294,7 @@ sha256 = "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/encourage-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/encourage-mode"; sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63"; name = "encourage-mode"; }; @@ -15048,11 +15311,11 @@ src = fetchFromGitHub { owner = "hrs"; repo = "engine-mode"; - rev = "98020c5c8fcc3c675999fc6215af6a6259c5c017"; - sha256 = "1k17z1dy9m9lx2fy78ack8fyf5vqb79fwjn078f93bcjl5mc7d4k"; + rev = "a1b3e4fb71155c01963a3451c3e45d3a08215ede"; + sha256 = "1hxvla26j6zm287cbn5mpwhrkbn4grgglh2rk9hrrzhm7xcb21mx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; @@ -15073,7 +15336,7 @@ sha256 = "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/enh-ruby-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enh-ruby-mode"; sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns"; name = "enh-ruby-mode"; }; @@ -15094,7 +15357,7 @@ sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; @@ -15115,7 +15378,7 @@ sha256 = "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eno"; sha256 = "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk"; name = "eno"; }; @@ -15136,7 +15399,7 @@ sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; @@ -15149,15 +15412,15 @@ ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode2, yasnippet }: melpaBuild { pname = "ensime"; - version = "20160201.837"; + version = "20160219.1431"; src = fetchFromGitHub { owner = "ensime"; repo = "ensime-emacs"; - rev = "52db33ae0304952d2deac6f4467fbeeee75bc62b"; - sha256 = "1h7hgfzzhl7crwxkaskjhi9axb8aywb0z33a9d5z3c9safmq2r03"; + rev = "6ce0d22ba4f4cc9a8420ae5a8902a1c8a4218c7e"; + sha256 = "1s3fpigsm988jp9jpcyk1zr7khby12m5cy71k1ag0cbgrv66l4za"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ensime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ensime"; sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby"; name = "ensime"; }; @@ -15178,15 +15441,15 @@ envdir = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "envdir"; - version = "20150519.955"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "envdir-mode"; - rev = "efbfc45de320d33cd5c52edfa73a399a8b4dc34b"; - sha256 = "0jb8hf4v02b0zd02749533arrypjr3b3k88129grfks2kf29ybhb"; + rev = "f29346c55ccf11d8c75628edc6d430ed63c36917"; + sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/envdir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/envdir"; sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8"; name = "envdir"; }; @@ -15199,15 +15462,15 @@ eopengrok = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, s }: melpaBuild { pname = "eopengrok"; - version = "20160102.429"; + version = "20160214.147"; src = fetchFromGitHub { owner = "youngker"; repo = "eopengrok.el"; - rev = "30154a083b2fd8cbb9336d0d2134f790efd4163b"; - sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba"; + rev = "0bf07c636f8d29a98e9776243ec9496875ddff51"; + sha256 = "0pmawjfyihqygqz7y0nvyrs6jcvckqzkq9k6z6yanpvkd2x5g13x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; @@ -15228,7 +15491,7 @@ sha256 = "11z08y61xd00rlw5mcyrix8nx41mqs127wighhjsxsyzbfqydxdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; @@ -15249,7 +15512,7 @@ sha256 = "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/epic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epic"; sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf"; name = "epic"; }; @@ -15270,7 +15533,7 @@ sha256 = "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; @@ -15291,7 +15554,7 @@ sha256 = "1a8gzf7abda0zgcllyl351m47avnf995i9lvwjf05nyx2jb31dnw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/epresent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epresent"; sha256 = "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la"; name = "epresent"; }; @@ -15312,7 +15575,7 @@ sha256 = "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eprime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eprime-mode"; sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g"; name = "eprime-mode"; }; @@ -15333,7 +15596,7 @@ sha256 = "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eproject"; sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4"; name = "eproject"; }; @@ -15354,7 +15617,7 @@ sha256 = "18r66yl52xm1gjbn0dm8z80gv4p3794pi91qa8i2sri4grbsyi5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-colorize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-colorize"; sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a"; name = "erc-colorize"; }; @@ -15375,7 +15638,7 @@ sha256 = "0v2ly3q1r169lxwp6ml70plm6i0s96d0a1wy91ngvqgqpnpk4746"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; @@ -15385,6 +15648,26 @@ license = lib.licenses.free; }; }) {}; + erc-hipchatify = callPackage ({ alert, emacs, fetchhg, fetchurl, lib, melpaBuild, request, s }: + melpaBuild { + pname = "erc-hipchatify"; + version = "20160216.1814"; + src = fetchhg { + url = "https://bitbucket.com/seanfarley/erc-hipchatify"; + rev = "a1a163004d98"; + sha256 = "0bk4vr26abhbiwkmpns4hdlg23pxa25lca78fhz1900jkv4imk0f"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hipchatify"; + sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; + name = "erc-hipchatify"; + }; + packageRequires = [ alert emacs request s ]; + meta = { + homepage = "http://melpa.org/#/erc-hipchatify"; + license = lib.licenses.free; + }; + }) {}; erc-hl-nicks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-hl-nicks"; @@ -15396,7 +15679,7 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; @@ -15417,7 +15700,7 @@ sha256 = "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-image"; sha256 = "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf"; name = "erc-image"; }; @@ -15438,7 +15721,7 @@ sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-social-graph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-social-graph"; sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h"; name = "erc-social-graph"; }; @@ -15459,7 +15742,7 @@ sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-terminal-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-terminal-notifier"; sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c"; name = "erc-terminal-notifier"; }; @@ -15480,7 +15763,7 @@ sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-track-score"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-track-score"; sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx"; name = "erc-track-score"; }; @@ -15501,7 +15784,7 @@ sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-tweet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-tweet"; sha256 = "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b"; name = "erc-tweet"; }; @@ -15522,7 +15805,7 @@ sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-view-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-view-log"; sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf"; name = "erc-view-log"; }; @@ -15543,7 +15826,7 @@ sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; @@ -15564,7 +15847,7 @@ sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-yt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-yt"; sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc"; name = "erc-yt"; }; @@ -15585,7 +15868,7 @@ sha256 = "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; @@ -15604,7 +15887,7 @@ sha256 = "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eredis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eredis"; sha256 = "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95"; name = "eredis"; }; @@ -15625,7 +15908,7 @@ sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; @@ -15638,15 +15921,15 @@ ergoemacs-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, undo-tree }: melpaBuild { pname = "ergoemacs-mode"; - version = "20160204.1341"; + version = "20160221.103"; src = fetchFromGitHub { owner = "ergoemacs"; repo = "ergoemacs-mode"; - rev = "fd672d7377e49df17816c5aba6e0fcd35b61efd3"; - sha256 = "12s4rsnp59n8swwisi7jrf721dbz9dr7a9n5r6vnq38avsfa5zw4"; + rev = "80780ef8603577cb0ab8c64630d1301f7afef2ec"; + sha256 = "1dfl8qwzjygnhfivf9w2dkv0vqyg0grnfganl7vh2l0lszps735d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; @@ -15663,11 +15946,11 @@ src = fetchFromGitHub { owner = "erlang"; repo = "otp"; - rev = "a03b7add86b92d0d7d2d744e5555314bedbc2197"; - sha256 = "06hx5cscqylha7lghlf05mgihiw7mwzg7jjzqx4ffwdkpg5zsnb9"; + rev = "d0002b70b1f948dcef3e08781b9db589907776c5"; + sha256 = "19cm7zq3n78a3qb1299rhc6n7diy5a5ix94k9ljkww5qydx9qi77"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; @@ -15688,7 +15971,7 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; @@ -15706,7 +15989,7 @@ sha256 = "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-expectations"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-expectations"; sha256 = "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w"; name = "ert-expectations"; }; @@ -15726,7 +16009,7 @@ sha256 = "eedfdd6753c32d16baa341e6d20abee8713921d8eb850d16782cde55bdbeec46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; @@ -15747,7 +16030,7 @@ sha256 = "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-modeline"; sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b"; name = "ert-modeline"; }; @@ -15768,7 +16051,7 @@ sha256 = "0ivnfc42pw9pc9glx2m4klzx4csy4m60hj1x12js7492bd0ri933"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; @@ -15789,7 +16072,7 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; @@ -15802,15 +16085,15 @@ es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-mode"; - version = "20160128.1119"; + version = "20160220.2252"; src = fetchFromGitHub { owner = "dakrone"; repo = "es-mode"; - rev = "a0c142951e6fc932c691e344262aecd422538d17"; - sha256 = "0hrhj08xnd4xavvx8hyaysnz52c1wd1fgfwgark4lcjlh6aiagdf"; + rev = "4424f5e3731852a16468d4aaa4ef7f5fab78d4d5"; + sha256 = "0km7nvagipjqqppv1njm40cm4l7iyajqnqjy9a3j0r7civ4cz5y6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; @@ -15831,7 +16114,7 @@ sha256 = "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; @@ -15852,7 +16135,7 @@ sha256 = "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/escreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/escreen"; sha256 = "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54"; name = "escreen"; }; @@ -15873,7 +16156,7 @@ sha256 = "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esh-buf-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esh-buf-stack"; sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg"; name = "esh-buf-stack"; }; @@ -15894,7 +16177,7 @@ sha256 = "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esh-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esh-help"; sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w"; name = "esh-help"; }; @@ -15915,7 +16198,7 @@ sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; @@ -15936,7 +16219,7 @@ sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-did-you-mean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-did-you-mean"; sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz"; name = "eshell-did-you-mean"; }; @@ -15957,7 +16240,7 @@ sha256 = "1b94pamb92a26lvlbwyr7kgaiwax4hkgmmalh8l5ldcwxkscq09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-git-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-git-prompt"; sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s"; name = "eshell-git-prompt"; }; @@ -15970,15 +16253,15 @@ eshell-prompt-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-prompt-extras"; - version = "20150726.159"; + version = "20160213.1950"; src = fetchFromGitHub { owner = "kaihaosw"; repo = "eshell-prompt-extras"; - rev = "0b7670972b6b424b4a15a88b1733b99324dcf387"; - sha256 = "0r2fbz5z935vny9cbi857ryddhbg9v8i93jrzn2xvqs3h5wj9jn9"; + rev = "61973d732c1e6b24d3fd0374162669dec83f5ed6"; + sha256 = "1k8falfyd5rfgn56pdin36k4afx0zp0z00jldg1jn22c6p3ndsfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-prompt-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-prompt-extras"; sha256 = "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj"; name = "eshell-prompt-extras"; }; @@ -15999,7 +16282,7 @@ sha256 = "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; @@ -16020,7 +16303,7 @@ sha256 = "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/espresso-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/espresso-theme"; sha256 = "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5"; name = "espresso-theme"; }; @@ -16041,7 +16324,7 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; @@ -16062,7 +16345,7 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esqlite"; sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh"; name = "esqlite"; }; @@ -16083,7 +16366,7 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esqlite-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esqlite-helm"; sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq"; name = "esqlite-helm"; }; @@ -16096,15 +16379,15 @@ ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: melpaBuild { pname = "ess"; - version = "20160127.1710"; + version = "20160208.653"; src = fetchFromGitHub { owner = "emacs-ess"; repo = "ESS"; - rev = "27d5150f9a9262b3fd861321561b18446d0fb479"; - sha256 = "091ac8l6d1dvj4jvmpqx6cibydpc7safaamp7845qasm2j97zm4n"; + rev = "9ef548725d8fd8bd301ff2b4c8f292c309871110"; + sha256 = "0376yic7aldqxrzc91f7g3licc8svvqdqn4jdbnhw4cdk94w46fm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; @@ -16125,7 +16408,7 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; @@ -16146,7 +16429,7 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; @@ -16167,7 +16450,7 @@ sha256 = "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-smart-equals"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-smart-equals"; sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp"; name = "ess-smart-equals"; }; @@ -16188,7 +16471,7 @@ sha256 = "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; @@ -16198,6 +16481,27 @@ license = lib.licenses.free; }; }) {}; + ess-view = callPackage ({ ess, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + melpaBuild { + pname = "ess-view"; + version = "20160218.344"; + src = fetchFromGitHub { + owner = "GioBo"; + repo = "ess-view"; + rev = "d2eecbf43a1e68bd9716b52853aca46d6667ef18"; + sha256 = "0wz6n41aqph1b460m8vnxvz6mnmh6n7kxbx4wriknjlacxamksyy"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-view"; + sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4"; + name = "ess-view"; + }; + packageRequires = [ ess f s ]; + meta = { + homepage = "http://melpa.org/#/ess-view"; + license = lib.licenses.free; + }; + }) {}; esup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esup"; @@ -16209,7 +16513,7 @@ sha256 = "034rs6mmc5f6y8ply2a90b5s4pi4qx9m49wsxc9v0zwa9i5skmx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; @@ -16230,7 +16534,7 @@ sha256 = "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; @@ -16251,7 +16555,7 @@ sha256 = "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/etable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/etable"; sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32"; name = "etable"; }; @@ -16269,7 +16573,7 @@ sha256 = "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/etags-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/etags-select"; sha256 = "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h"; name = "etags-select"; }; @@ -16287,7 +16591,7 @@ sha256 = "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/etags-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/etags-table"; sha256 = "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84"; name = "etags-table"; }; @@ -16308,7 +16612,7 @@ sha256 = "098mfyw63b23h7jajaik1rfj307sxs82nnwf6b81j550kl2n05y6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ethan-wspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ethan-wspace"; sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; name = "ethan-wspace"; }; @@ -16329,7 +16633,7 @@ sha256 = "0vd2crs261na9a682d74ycz1il661kavsz1bvs0bkak09lplc1qz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; @@ -16350,7 +16654,7 @@ sha256 = "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; @@ -16363,15 +16667,15 @@ evalator = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "evalator"; - version = "20160130.1359"; + version = "20160212.1928"; src = fetchFromGitHub { owner = "seanirby"; repo = "evalator"; - rev = "edf3840f5aa025cf38d0c2677b2f88f59079409e"; - sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679"; + rev = "f30da4da48c0b3f3cfa1fc1c7cfdb53ffe79df36"; + sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; @@ -16381,17 +16685,38 @@ license = lib.licenses.free; }; }) {}; + evalator-clojure = callPackage ({ cider, evalator, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "evalator-clojure"; + version = "20160208.1548"; + src = fetchFromGitHub { + owner = "seanirby"; + repo = "evalator-clojure"; + rev = "caa4e0a137bdfada86593128a654e16aa617ad50"; + sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evalator-clojure"; + sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3"; + name = "evalator-clojure"; + }; + packageRequires = [ cider evalator ]; + meta = { + homepage = "http://melpa.org/#/evalator-clojure"; + license = lib.licenses.free; + }; + }) {}; evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }: melpaBuild { pname = "evil"; - version = "20160203.721"; + version = "20160215.1148"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "5c0114702ea3"; - sha256 = "1sysqcvzdnzg5qvawv3c0rwfyacjb80mvfdhdmc07vr4pyma6vcj"; + rev = "70005dd4c11e"; + sha256 = "0hdysszfc3796d19nyw1f4cqzisspih1if0hh9hp2xjgxh3vj0mw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; @@ -16412,7 +16737,7 @@ sha256 = "05fba10yvxl82g2xl48mxwz7cwjp4pylb7n8a4b08i8f9xasny7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-annoying-arrows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-annoying-arrows"; sha256 = "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry"; name = "evil-annoying-arrows"; }; @@ -16433,7 +16758,7 @@ sha256 = "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; @@ -16454,7 +16779,7 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; @@ -16475,7 +16800,7 @@ sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-avy"; sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd"; name = "evil-avy"; }; @@ -16496,7 +16821,7 @@ sha256 = "08cpgbwsrk8n88qiq2z90s6wx0ayvrrb38m8dks595x2qzzpa1gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-cleverparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-cleverparens"; sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799"; name = "evil-cleverparens"; }; @@ -16509,15 +16834,15 @@ evil-commentary = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-commentary"; - version = "20151210.527"; + version = "20160221.1430"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-commentary"; - rev = "122880a6721fcf16479f406c78c6e490a25efab0"; - sha256 = "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a"; + rev = "6d9079894da0bdda8a317c03c90481b8754635c7"; + sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; @@ -16538,7 +16863,7 @@ sha256 = "0fdlj2m8bzdwqh43qb34il3fmang0zpdgxfkrsmxy9kpc0bsx940"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-dvorak"; sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn"; name = "evil-dvorak"; }; @@ -16551,15 +16876,15 @@ evil-easymotion = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-easymotion"; - version = "20160105.1418"; + version = "20160217.2043"; src = fetchFromGitHub { owner = "PythonNut"; repo = "evil-easymotion"; - rev = "b39fc6250a3893acbf98cafbf028a0f4abb1a8a2"; - sha256 = "17dng6iik4jzri6f435icrfb5g9zs2zqc6jgwkpphsgjcc12izrr"; + rev = "5b77d65b0a8d93b8b9602d4757a40c548a3bc997"; + sha256 = "01nk89wkqbi6jpggdj6yl74k8jzlh329i4p77wljyr18akbrdz9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-easymotion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-easymotion"; sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv"; name = "evil-easymotion"; }; @@ -16580,7 +16905,7 @@ sha256 = "16pz48gdpl68azaqwyixh10y1x9xzi1lnhq2v0nrd0y6bfcqcvc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-ediff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-ediff"; sha256 = "1xwl2511byb00ybfnm6q6mbkgzarrq8bfv5rbip67zqbw2qgmb6i"; name = "evil-ediff"; }; @@ -16601,7 +16926,7 @@ sha256 = "1dl201jx7kfmkhd7ism6wlmlnbgfg1qn17faryz7kc5v2mms69b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; @@ -16622,7 +16947,7 @@ sha256 = "0gbpd1wmlcvddiym0r410rch8bjg4gxslynwmfqywwgbva8zm46c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-exchange"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-exchange"; sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r"; name = "evil-exchange"; }; @@ -16643,7 +16968,7 @@ sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-god-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-god-state"; sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf"; name = "evil-god-state"; }; @@ -16664,7 +16989,7 @@ sha256 = "1kdigwpl9pp88l11bkpxkw91pvs8z3gachxccibivzgjxd2pnvfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; @@ -16685,7 +17010,7 @@ sha256 = "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-indent-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-indent-plus"; sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12"; name = "evil-indent-plus"; }; @@ -16706,7 +17031,7 @@ sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-indent-textobject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-indent-textobject"; sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09"; name = "evil-indent-textobject"; }; @@ -16719,15 +17044,15 @@ evil-jumper = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-jumper"; - version = "20160119.1809"; + version = "20160214.1515"; src = fetchFromGitHub { owner = "bling"; repo = "evil-jumper"; - rev = "f18fbae5c971211bec6bd56cccf7196ede798bf7"; - sha256 = "1p9r7dqhp2bnsgj18fpmf7wamndgmgkw1c5lrnx3hngwnfkw2fgh"; + rev = "3fdbf356b8d86bfcdbd32a476420bec9da370596"; + sha256 = "1bcravq8z2bj9dvfhmmv82vxx2lfhc1pqb4kq5b1nfvajjy1g8pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-jumper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-jumper"; sha256 = "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x"; name = "evil-jumper"; }; @@ -16748,7 +17073,7 @@ sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; @@ -16769,7 +17094,7 @@ sha256 = "0lvjqs40caxj3781cs41qavk10vlz2mjw0r6fmxa2z3c087cxnxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; @@ -16782,15 +17107,15 @@ evil-magit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "evil-magit"; - version = "20160203.1803"; + version = "20160211.709"; src = fetchFromGitHub { owner = "justbur"; repo = "evil-magit"; - rev = "6bccbe90390436fd814d55e9ba4408e0454c99cd"; - sha256 = "0mih5s2kk6pas1w1i62ghsi3jdx5qm0b7yqbc924rz2zp6za3p0m"; + rev = "593a0e5b3118aca28de672870fa7b8611f6760ef"; + sha256 = "0dqhxl9df9d6s9rx5dvgzf0i88y0y2jq3vzr2v2q8vh3ffvj2s2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-magit"; sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; name = "evil-magit"; }; @@ -16811,7 +17136,7 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; @@ -16832,7 +17157,7 @@ sha256 = "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; @@ -16845,15 +17170,15 @@ evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mc"; - version = "20160202.1527"; + version = "20160205.1942"; src = fetchFromGitHub { owner = "gabesoft"; repo = "evil-mc"; - rev = "d06bb3f47411e5f210ac986abc04a60d15808f68"; - sha256 = "12af93aba20m9h8dgz6bxhm63khrlx0iclnwflkdy4s5w229938q"; + rev = "97c81605a627fec0eaa32466615b8c2f4b3feb17"; + sha256 = "1i9m827ffwqphkw2b5nmj11y7c5jn5dc8ds6k0dpdiq5whjklplh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mc"; sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs"; name = "evil-mc"; }; @@ -16863,18 +17188,39 @@ license = lib.licenses.free; }; }) {}; + evil-mu4e = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "evil-mu4e"; + version = "20160214.522"; + src = fetchFromGitHub { + owner = "JorisE"; + repo = "evil-mu4e"; + rev = "e52ffae4c19385575f4dbd2b7af3d0a0221b4efa"; + sha256 = "0zqmmv3if9zzq9fgjg8wj62pk1qn65nax9hsk9m7lx2ncdv8cph1"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mu4e"; + sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq"; + name = "evil-mu4e"; + }; + packageRequires = [ dash emacs evil ]; + meta = { + homepage = "http://melpa.org/#/evil-mu4e"; + license = lib.licenses.free; + }; + }) {}; evil-nerd-commenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-nerd-commenter"; - version = "20160111.444"; + version = "20160209.249"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-nerd-commenter"; - rev = "981c80bb53384f93987d03c1b307767f2a68791a"; - sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5"; + rev = "d61c6629b44b8eb15378b2b75addcd5011b752d9"; + sha256 = "0msk65smj05wgs8dr42wy0w265pgcffrpgbvclahxhyj9ypscwsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; @@ -16895,7 +17241,7 @@ sha256 = "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; @@ -16916,7 +17262,7 @@ sha256 = "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; @@ -16937,7 +17283,7 @@ sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-paredit"; sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy"; name = "evil-paredit"; }; @@ -16958,7 +17304,7 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; @@ -16979,7 +17325,7 @@ sha256 = "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-rails"; sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj"; name = "evil-rails"; }; @@ -16992,15 +17338,15 @@ evil-rsi = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-rsi"; - version = "20151027.1719"; + version = "20160221.1504"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-rsi"; - rev = "efba0e191a71198bff118d29c0766ee2b351377a"; - sha256 = "176rdp7mp9p0w5s7539jgldfn3r79q653g8yzcp99y59b8dycbh5"; + rev = "236bf6ed1e2285698db808463e5f2f69f5f5e7c0"; + sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; @@ -17021,7 +17367,7 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; @@ -17042,7 +17388,7 @@ sha256 = "0xwrg03w40pncdy5ppn7f77ravcbimj1ylc1r4clpqiha1d4xkhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; @@ -17063,7 +17409,7 @@ sha256 = "0iyk8pn7pc3js3ppn46myzfr2i0b47wwrzv72939aydpw64rx76q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; @@ -17084,7 +17430,7 @@ sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; @@ -17105,7 +17451,7 @@ sha256 = "01p02h17ls0pmisnfbyna7xf6fz2c7fyyvdb1yq38dwv2j4zi1b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-surround"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-surround"; sha256 = "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag"; name = "evil-surround"; }; @@ -17118,15 +17464,15 @@ evil-tabs = callPackage ({ elscreen, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-tabs"; - version = "20150127.1546"; + version = "20160217.920"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "evil-tabs"; - rev = "93eba393e86ea4574aebaf4edbd27dce4fd7b2e6"; - sha256 = "1rjpgcl9m23fzlw9gfp0yyf5k5dcgn88pjm8glmmdpx1b08ymk79"; + rev = "53d3314a810017b6056ab6796aef671f5ea1c063"; + sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-tabs"; sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62"; name = "evil-tabs"; }; @@ -17147,7 +17493,7 @@ sha256 = "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-terminal-cursor-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-terminal-cursor-changer"; sha256 = "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian"; name = "evil-terminal-cursor-changer"; }; @@ -17168,7 +17514,7 @@ sha256 = "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; @@ -17189,7 +17535,7 @@ sha256 = "0nff90v6d97n2xizvfz126ksrf7ngd5rp0j7k7lhbv0v5zcqgxiv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-textobj-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-textobj-column"; sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h"; name = "evil-textobj-column"; }; @@ -17210,7 +17556,7 @@ sha256 = "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; @@ -17231,7 +17577,7 @@ sha256 = "0m4ipz3x5k3gbyjgsnhl6rr4jvhqn61cyc1gmv0mkc2pbqqs1ijq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-vimish-fold"; sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6"; name = "evil-vimish-fold"; }; @@ -17252,7 +17598,7 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; @@ -17273,7 +17619,7 @@ sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; @@ -17294,7 +17640,7 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; @@ -17315,7 +17661,7 @@ sha256 = "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ewmctrl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ewmctrl"; sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl"; name = "ewmctrl"; }; @@ -17336,7 +17682,7 @@ sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; @@ -17357,7 +17703,7 @@ sha256 = "0xxk0cr28g7vw8cwsnwrdrc8xqr50g6m9h0v43mx2iws9pn9dd47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; @@ -17378,7 +17724,7 @@ sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/expand-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/expand-line"; sha256 = "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9"; name = "expand-line"; }; @@ -17399,7 +17745,7 @@ sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; @@ -17420,7 +17766,7 @@ sha256 = "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; @@ -17433,15 +17779,15 @@ extempore-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "extempore-mode"; - version = "20151225.51"; + version = "20160218.2301"; src = fetchFromGitHub { owner = "extemporelang"; repo = "extempore-emacs-mode"; - rev = "a08be9f0cec32c2818f93a6f7633c14fc2013e61"; - sha256 = "0nry653cd3qzsj6asrf9hh4zkzhz8nnwjrg1wp17f5ggzpjyybjw"; + rev = "7ef138c18abbe78fafdc7da71f73e323be88ac5a"; + sha256 = "0vpxrwaghzffj3rhsvmia4ykj8z059gjxws5vkgjjffh35d72ask"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/extempore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/extempore-mode"; sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php"; name = "extempore-mode"; }; @@ -17462,7 +17808,7 @@ sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; @@ -17483,7 +17829,7 @@ sha256 = "0w2g7rpw26j65j4r23w6j8nw3arw73l601kyy6qv9p9bkk1yc072"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; @@ -17502,7 +17848,7 @@ sha256 = "1fg3j0jlww2rqc6k2nq95hcg6i26nqdp043h7kyjcwrgqbjfsigl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eyedropper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyedropper"; sha256 = "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk"; name = "eyedropper"; }; @@ -17523,7 +17869,7 @@ sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eyuml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyuml"; sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx"; name = "eyuml"; }; @@ -17544,7 +17890,7 @@ sha256 = "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ez-query-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ez-query-replace"; sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx"; name = "ez-query-replace"; }; @@ -17565,7 +17911,7 @@ sha256 = "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; @@ -17586,7 +17932,7 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; @@ -17604,7 +17950,7 @@ sha256 = "0yr3fqpn9pj6y8bsb6g7hkg75sl703pzngn8gp0sgs3v90c180l5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/face-remap+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/face-remap+"; sha256 = "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y"; name = "face-remap-plus"; }; @@ -17622,7 +17968,7 @@ sha256 = "1kayc4hsalvqnn577y3f97w9kz94c53vcxwx01s0k34ffav919c2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/facemenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/facemenu+"; sha256 = "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv"; name = "facemenu-plus"; }; @@ -17640,7 +17986,7 @@ sha256 = "0sqrymmr583cgqmv4bs6rjms5ij5cm8vvxjrfc9alacwyz5f7w8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/faces+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faces+"; sha256 = "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92"; name = "faces-plus"; }; @@ -17661,7 +18007,7 @@ sha256 = "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/faceup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faceup"; sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx"; name = "faceup"; }; @@ -17682,7 +18028,7 @@ sha256 = "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; @@ -17703,7 +18049,7 @@ sha256 = "1sc5f867h7i0n2gd9qcydqn1b2pk227l92ad4bf9nnpl3jmdr26v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/faff-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faff-theme"; sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g"; name = "faff-theme"; }; @@ -17724,7 +18070,7 @@ sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fakespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fakespace"; sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27"; name = "fakespace"; }; @@ -17745,7 +18091,7 @@ sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fakir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fakir"; sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25"; name = "fakir"; }; @@ -17766,7 +18112,7 @@ sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; @@ -17787,7 +18133,7 @@ sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; @@ -17808,7 +18154,7 @@ sha256 = "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/farmhouse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/farmhouse-theme"; sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229"; name = "farmhouse-theme"; }; @@ -17829,7 +18175,7 @@ sha256 = "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fasd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fasd"; sha256 = "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c"; name = "fasd"; }; @@ -17850,7 +18196,7 @@ sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; @@ -17871,7 +18217,7 @@ sha256 = "0m9nzl0z3gc6fjpfqklwrsxlcgbbyydls004a39wfppyz0wr94fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/faust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faust-mode"; sha256 = "1lfn4q1wcc3vzazv2yzcnpvnmq6bqcczq8lpkz7w8yj8i5kpjvsc"; name = "faust-mode"; }; @@ -17884,15 +18230,15 @@ fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fcitx"; - version = "20160202.1609"; + version = "20160209.2240"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "fcitx.el"; - rev = "7a7a07c6cebb0f765a28d27de042c8088969a789"; - sha256 = "0ybxm656j4p3j47cgh3xm4wln6rai16s8ag55dbsznxdn158c3ss"; + rev = "f0a6d309de52893331c002fdc69b937abe9a4831"; + sha256 = "0xknl32hglmkj85h69cpwqpar589ylfzr3mxx730fy2gkaqzd2nf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; @@ -17913,7 +18259,7 @@ sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fcopy"; sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1"; name = "fcopy"; }; @@ -17934,7 +18280,7 @@ sha256 = "0ylm4zcf82f5rl4lps5p6p8dc3i5p2v7w93caadgzv5qbl400h5d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; @@ -17955,7 +18301,7 @@ sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fetch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fetch"; sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby"; name = "fetch"; }; @@ -17973,7 +18319,7 @@ sha256 = "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fic-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fic-mode"; sha256 = "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x"; name = "fic-mode"; }; @@ -17985,14 +18331,14 @@ }) {}; figlet = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "figlet"; - version = "20141104.1037"; + version = "20160218.1637"; src = fetchhg { url = "https://bitbucket.com/jpkotta/figlet"; - rev = "255e7570a3e2"; - sha256 = "0xnr709vmwbryyfxngxs80gjfxv009ik6wcs4jd74ph5lm6gqh4f"; + rev = "70ca269d706e"; + sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/figlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/figlet"; sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj"; name = "figlet"; }; @@ -18010,7 +18356,7 @@ sha256 = "0s79b5jj3jfl3aih6r3fa0zix40arysk6mz4fijapd8ybaflz25n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/files+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/files+"; sha256 = "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8"; name = "files-plus"; }; @@ -18028,7 +18374,7 @@ sha256 = "020rpjrjp2gh4w6mrphrvk27kdizfqbjsw2sxraf8jz0dibg9gfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/filesets+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/filesets+"; sha256 = "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn"; name = "filesets-plus"; }; @@ -18049,7 +18395,7 @@ sha256 = "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; @@ -18070,7 +18416,7 @@ sha256 = "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fillcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fillcode"; sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2"; name = "fillcode"; }; @@ -18091,7 +18437,7 @@ sha256 = "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; @@ -18112,7 +18458,7 @@ sha256 = "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; @@ -18130,7 +18476,7 @@ sha256 = "1pch1kjbgnbf8zmlxh6wg4ch9bpfg7hmwkw1mrr1hiym05xvza0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-dired+"; sha256 = "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli"; name = "find-dired-plus"; }; @@ -18151,7 +18497,7 @@ sha256 = "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; @@ -18172,7 +18518,7 @@ sha256 = "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; @@ -18193,7 +18539,7 @@ sha256 = "1d6zn3qsg4lpk13cvn5r1w88dnhfydnhwf59x6cb4sy5q1ihk0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-temp-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-temp-file"; sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p"; name = "find-temp-file"; }; @@ -18214,7 +18560,7 @@ sha256 = "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-things-fast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-things-fast"; sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m"; name = "find-things-fast"; }; @@ -18232,7 +18578,7 @@ sha256 = "0x3f9qygp26c4yw32cgyy35bb4f1fq0fg7q8s9vs777skyl3rvp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/finder+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/finder+"; sha256 = "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh"; name = "finder-plus"; }; @@ -18250,7 +18596,7 @@ sha256 = "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/findr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/findr"; sha256 = "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq"; name = "findr"; }; @@ -18271,7 +18617,7 @@ sha256 = "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fingers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fingers"; sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg"; name = "fingers"; }; @@ -18292,7 +18638,7 @@ sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fiplr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fiplr"; sha256 = "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i"; name = "fiplr"; }; @@ -18313,7 +18659,7 @@ sha256 = "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/firebelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firebelly-theme"; sha256 = "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr"; name = "firebelly-theme"; }; @@ -18334,7 +18680,7 @@ sha256 = "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/firecode-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firecode-theme"; sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739"; name = "firecode-theme"; }; @@ -18355,7 +18701,7 @@ sha256 = "1hr4mfvaz8rc60fn5xi7sp1xn72rk2fg346di3mmcfnb9na9cbzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; @@ -18376,7 +18722,7 @@ sha256 = "1smg4mqc5qdwzk5mp2hfm6l4s7k408x46xfl7fl45csb18islmrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; @@ -18397,7 +18743,7 @@ sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; @@ -18418,7 +18764,7 @@ sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; @@ -18436,7 +18782,7 @@ sha256 = "082c6yyb1269va6k602hxpdf7ylfxz8gq8swqzwf07qaas0b5qxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fit-frame"; sha256 = "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb"; name = "fit-frame"; }; @@ -18457,7 +18803,7 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; @@ -18478,7 +18824,7 @@ sha256 = "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; @@ -18499,7 +18845,7 @@ sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -18527,7 +18873,7 @@ sha256 = "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flappymacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flappymacs"; sha256 = "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d"; name = "flappymacs"; }; @@ -18548,7 +18894,7 @@ sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flash-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flash-region"; sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c"; name = "flash-region"; }; @@ -18569,7 +18915,7 @@ sha256 = "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flatland-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flatland-black-theme"; sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da"; name = "flatland-black-theme"; }; @@ -18590,7 +18936,7 @@ sha256 = "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flatland-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flatland-theme"; sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3"; name = "flatland-theme"; }; @@ -18611,7 +18957,7 @@ sha256 = "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flatui-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flatui-theme"; sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz"; name = "flatui-theme"; }; @@ -18632,7 +18978,7 @@ sha256 = "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flex-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flex-autopair"; sha256 = "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007"; name = "flex-autopair"; }; @@ -18652,7 +18998,7 @@ sha256 = "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flex-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flex-isearch"; sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3"; name = "flex-isearch"; }; @@ -18673,7 +19019,7 @@ sha256 = "1w913kw4b3dipawn567847jxl89j0prnf6656yqi2rp96axx3lhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flim"; sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc"; name = "flim"; }; @@ -18691,7 +19037,7 @@ sha256 = "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fliptext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fliptext"; sha256 = "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji"; name = "fliptext"; }; @@ -18712,7 +19058,7 @@ sha256 = "12b1b7avjdbfm184mcg3bh3s6k0ygfz1sraz8q7qnrsyw4170893"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; @@ -18733,7 +19079,7 @@ sha256 = "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; @@ -18754,7 +19100,7 @@ sha256 = "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; @@ -18775,7 +19121,7 @@ sha256 = "1cmjw1zrb1nq9nx0d634ajli1di8x48k6s88zi2s2q0mbi28lzz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flx-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx-isearch"; sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd"; name = "flx-isearch"; }; @@ -18788,15 +19134,15 @@ flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: melpaBuild { pname = "flycheck"; - version = "20160129.511"; + version = "20160220.935"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck"; - rev = "89d57c2771967b64351a1bc489a053912f06b48d"; - sha256 = "1h172zkvlz1bx1s82vknm6wz2hhwk8253fdhd6bqaa2f5biivw71"; + rev = "12099e93422c75fb1a0d5b731543d469e19b5455"; + sha256 = "1lhp53r7n7j4lv7gl9lnqpa6b9ip7xyy9rdm5gygqkp27pdjx39y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; @@ -18817,7 +19163,7 @@ sha256 = "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ats2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ats2"; sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr"; name = "flycheck-ats2"; }; @@ -18838,7 +19184,7 @@ sha256 = "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; @@ -18859,7 +19205,7 @@ sha256 = "18nhfj0vx8rg2236nb9475s27rhyb34m81i7l6zkhifqba6rb0bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; @@ -18880,7 +19226,7 @@ sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-clangcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-clangcheck"; sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m"; name = "flycheck-clangcheck"; }; @@ -18897,11 +19243,11 @@ src = fetchFromGitHub { owner = "clojure-emacs"; repo = "squiggly-clojure"; - rev = "98c6362a131c777e81624aaeb7eda9da5c7f6b5d"; - sha256 = "0ndhhcfgpd5yg95jg64785mc9g6cgm1k7dwakzb3qlqnynbrjrcp"; + rev = "d677cde2720fa1b9f66b551af28f006e09474ca7"; + sha256 = "0flpma49m99i6pr0gx43ifhhgb222zsbqgcwyvfrpi90s9wny7mr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; @@ -18922,7 +19268,7 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; @@ -18943,7 +19289,7 @@ sha256 = "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-css-colorguard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-css-colorguard"; sha256 = "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc"; name = "flycheck-css-colorguard"; }; @@ -18956,15 +19302,15 @@ flycheck-cstyle = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cstyle"; - version = "20160126.2116"; + version = "20160209.22"; src = fetchFromGitHub { owner = "alexmurray"; repo = "flycheck-cstyle"; - rev = "50a8899c61083f6f5466a0b1b954fe3efdc2ecf2"; - sha256 = "072868zy2624m8la0i291f8xmqlv4s1r683qw8l0s24vhi1d22fk"; + rev = "7c4cc5ab4909a80ade184a0bd6a36fa9deff678c"; + sha256 = "019h17p24cvsn1ny1fxlhwpjs3fz5gfar7dj0m2znjmx6qm72577"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-cstyle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-cstyle"; sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909"; name = "flycheck-cstyle"; }; @@ -18985,7 +19331,7 @@ sha256 = "0b4yq39c8m03pv5cgvvqcippc3yfphpgjw3bh2bnxch1pwfik3xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-d-unittest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-d-unittest"; sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2"; name = "flycheck-d-unittest"; }; @@ -19006,7 +19352,7 @@ sha256 = "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-dedukti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dedukti"; sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8"; name = "flycheck-dedukti"; }; @@ -19027,7 +19373,7 @@ sha256 = "15dc76r047pnxll229z0pmpn76zw3cc6qs81b7wg7yc5czsk8axh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-dialyzer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dialyzer"; sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2"; name = "flycheck-dialyzer"; }; @@ -19048,7 +19394,7 @@ sha256 = "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; @@ -19069,7 +19415,7 @@ sha256 = "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-elm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-elm"; sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4"; name = "flycheck-elm"; }; @@ -19090,7 +19436,7 @@ sha256 = "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-flow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-flow"; sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3"; name = "flycheck-flow"; }; @@ -19111,7 +19457,7 @@ sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ghcmod"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ghcmod"; sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp"; name = "flycheck-ghcmod"; }; @@ -19132,7 +19478,7 @@ sha256 = "0j2mvf3zjznwkm8dykcgs1v5sz0i882mrivghxqr3h6n3ni4wag4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; @@ -19153,7 +19499,7 @@ sha256 = "0fykawnq9ch1vj76rsimwbmn2xxdamsnvbj4ahqaqhq7adb2wyrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-google-cpplint"; sha256 = "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b"; name = "flycheck-google-cpplint"; }; @@ -19174,7 +19520,7 @@ sha256 = "01y3nv4h5zz4w2bydw7f2w98rbyhbyq80w5w5y5nal5w4vd76qb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; @@ -19195,7 +19541,7 @@ sha256 = "1x61q0fqr1jbqs9kk59f565a02qjxh1gnp1aigys0yz6qnshvzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; @@ -19216,7 +19562,7 @@ sha256 = "1ax55yhf9q8i8z1f97zp3r08dqv8npd2llllbwa67d1bj49bsf2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-irony"; sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; name = "flycheck-irony"; }; @@ -19237,7 +19583,7 @@ sha256 = "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; @@ -19258,7 +19604,7 @@ sha256 = "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-mercury"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-mercury"; sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h"; name = "flycheck-mercury"; }; @@ -19271,15 +19617,15 @@ flycheck-mypy = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-mypy"; - version = "20150915.333"; + version = "20160220.1632"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-mypy"; - rev = "263339e6e44c3d0d4c10ff3528e5575db97a353f"; - sha256 = "1vdnw6hnhg8aqcsdqcd2rqz4fsfgxn2xr3xixkvwmpplb4x40c8k"; + rev = "2675dc0e31f8c08eb69f77b8d99e3f7d985c62ee"; + sha256 = "01r2ycbayhsxh3dq4d3qky5s0gcv3fjlp8j08y8dgyl406pkzhdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-mypy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-mypy"; sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f"; name = "flycheck-mypy"; }; @@ -19300,7 +19646,7 @@ sha256 = "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-nim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-nim"; sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az"; name = "flycheck-nim"; }; @@ -19321,7 +19667,7 @@ sha256 = "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; @@ -19342,7 +19688,7 @@ sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; @@ -19363,7 +19709,7 @@ sha256 = "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-perl6"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-perl6"; sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4"; name = "flycheck-perl6"; }; @@ -19384,7 +19730,7 @@ sha256 = "11brmradnsz3qqj11rviwdh6hqhbicgycr2zs5wrfbq8rifx4cv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; @@ -19397,15 +19743,15 @@ flycheck-protobuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, protobuf-mode }: melpaBuild { pname = "flycheck-protobuf"; - version = "20150731.512"; + version = "20160211.900"; src = fetchFromGitHub { owner = "edvorg"; repo = "flycheck-protobuf"; - rev = "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da"; - sha256 = "0dq4ikqskkpcl3z4s5vl6h4f4bx4dsgyn2knlr3x4wjcgzyrv0qn"; + rev = "3d4c71b535bb456045e4d0e88d63791dbe2093b5"; + sha256 = "1adcijysw4v8rrxzswi8zhd6w99iaqq7asps0jp21gr9nqci8vdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-protobuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-protobuf"; sha256 = "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc"; name = "flycheck-protobuf"; }; @@ -19426,7 +19772,7 @@ sha256 = "1r8k38ldw7mldhl2hsqc8gvb99svc1vlhlqfnj8hqd3vvqxd5r1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-purescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-purescript"; sha256 = "05j1iscyg9khw0zq63676zrisragklxp48hmbc7vrbmbiy964lwd"; name = "flycheck-purescript"; }; @@ -19447,7 +19793,7 @@ sha256 = "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-pyflakes"; sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1"; name = "flycheck-pyflakes"; }; @@ -19468,7 +19814,7 @@ sha256 = "08ar85p5llk0lxlm2rd7rfc8s449vrknsrzzxqg8kvakgpd0nx7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-rust"; sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w"; name = "flycheck-rust"; }; @@ -19481,15 +19827,15 @@ flycheck-status-emoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-status-emoji"; - version = "20150924.1314"; + version = "20160207.1651"; src = fetchFromGitHub { owner = "liblit"; repo = "flycheck-status-emoji"; - rev = "a6ae7b108110acc4dba32e616c8b02555455ea67"; - sha256 = "17mhsxnixw37x9jpy59nn3npw93r1rza2zcw6jmqzandmj0jyvm4"; + rev = "695bc8fdc8309a062b69f8a91434d99d0470cc99"; + sha256 = "0v7d0yijqn3mhgjwqiv1rsdhw2ay6ffbn8i45x0dlp960v7k2k8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; @@ -19510,7 +19856,7 @@ sha256 = "0hn3qjff1lcpd2ghjixkkq2bpmrmqab3860vy38yw201yy4xmn5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; @@ -19523,15 +19869,15 @@ flycheck-typescript-tslint = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-typescript-tslint"; - version = "20151209.1647"; + version = "20160213.1249"; src = fetchFromGitHub { owner = "Simplify"; repo = "flycheck-typescript-tslint"; - rev = "79d33ba8fbc23df604c239cfc32c21e07339faa1"; - sha256 = "0m9fjfpand20qy9d196z5khiznn25n95zbmgs8q2s2wcn4f7022p"; + rev = "05505563dc980be078aab3642d499ced8f625da3"; + sha256 = "1a9rmp0m5w68qvypxgwvixz32z13xcianyl6hjd6xmaax7f6r0bh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-typescript-tslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-typescript-tslint"; sha256 = "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq"; name = "flycheck-typescript-tslint"; }; @@ -19544,15 +19890,15 @@ flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, ycmd }: melpaBuild { pname = "flycheck-ycmd"; - version = "20160114.429"; + version = "20160206.150"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "c64684df763411249985159ee33b10d948b9fc91"; - sha256 = "12jwqhzqskdp2l6h60rich19rddzjcl94zaf72ljnq8h0mqc3xy0"; + rev = "61601543ca9b70f6a92a87fb9057af6143ba5ed1"; + sha256 = "10j8zv5m36400wwkwbncqnsm616v59ww0bbkhrxcf6mn56iq8162"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; @@ -19573,7 +19919,7 @@ sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; @@ -19594,7 +19940,7 @@ sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-cppcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-cppcheck"; sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d"; name = "flymake-cppcheck"; }; @@ -19615,7 +19961,7 @@ sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; @@ -19633,7 +19979,7 @@ sha256 = "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-cursor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-cursor"; sha256 = "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr"; name = "flymake-cursor"; }; @@ -19654,7 +20000,7 @@ sha256 = "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; @@ -19675,7 +20021,7 @@ sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-elixir"; sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792"; name = "flymake-elixir"; }; @@ -19696,7 +20042,7 @@ sha256 = "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; @@ -19717,7 +20063,7 @@ sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-go"; sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1"; name = "flymake-go"; }; @@ -19738,7 +20084,7 @@ sha256 = "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-google-cpplint"; sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3"; name = "flymake-google-cpplint"; }; @@ -19759,7 +20105,7 @@ sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; @@ -19780,7 +20126,7 @@ sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; @@ -19801,7 +20147,7 @@ sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; @@ -19822,7 +20168,7 @@ sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-jshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-jshint"; sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j"; name = "flymake-jshint"; }; @@ -19843,7 +20189,7 @@ sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; @@ -19864,7 +20210,7 @@ sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; @@ -19885,7 +20231,7 @@ sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; @@ -19906,7 +20252,7 @@ sha256 = "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-lua"; sha256 = "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6"; name = "flymake-lua"; }; @@ -19927,7 +20273,7 @@ sha256 = "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; @@ -19948,7 +20294,7 @@ sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; @@ -19969,7 +20315,7 @@ sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-phpcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-phpcs"; sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9"; name = "flymake-phpcs"; }; @@ -19990,7 +20336,7 @@ sha256 = "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-puppet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-puppet"; sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv"; name = "flymake-puppet"; }; @@ -20011,7 +20357,7 @@ sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; @@ -20032,7 +20378,7 @@ sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; @@ -20053,7 +20399,7 @@ sha256 = "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-rust"; sha256 = "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1"; name = "flymake-rust"; }; @@ -20074,7 +20420,7 @@ sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; @@ -20095,7 +20441,7 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; @@ -20116,7 +20462,7 @@ sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-vala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-vala"; sha256 = "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx"; name = "flymake-vala"; }; @@ -20137,7 +20483,7 @@ sha256 = "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-yaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-yaml"; sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7"; name = "flymake-yaml"; }; @@ -20158,7 +20504,7 @@ sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyparens"; sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a"; name = "flyparens"; }; @@ -20179,7 +20525,7 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; @@ -20200,7 +20546,7 @@ sha256 = "1rdpggnw9mz3qr4kp5gh9nvwncivj446vdhpc04d4jgrl568bhqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; @@ -20221,7 +20567,7 @@ sha256 = "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; @@ -20242,7 +20588,7 @@ sha256 = "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fm-bookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fm-bookmarks"; sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj"; name = "fm-bookmarks"; }; @@ -20263,7 +20609,7 @@ sha256 = "0vqjyc00ba9wy2rn454hhy9rnnghljc1i8f3zrpkdmkqn5cg3336"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; @@ -20284,7 +20630,7 @@ sha256 = "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/focus-autosave-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/focus-autosave-mode"; sha256 = "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc"; name = "focus-autosave-mode"; }; @@ -20294,6 +20640,27 @@ license = lib.licenses.free; }; }) {}; + foggy-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "foggy-night-theme"; + version = "20160209.908"; + src = fetchFromGitHub { + owner = "mswift42"; + repo = "foggy-night-theme"; + rev = "60a12abdac29c2d913e1cf24485d0cc083e26093"; + sha256 = "1mnak9k0hz99jq2p7gydxajzvx2vcql8yzwcm0v80a6xji2whl70"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foggy-night-theme"; + sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4"; + name = "foggy-night-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/foggy-night-theme"; + license = lib.licenses.free; + }; + }) {}; fold-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fold-dwim"; @@ -20305,7 +20672,7 @@ sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; @@ -20326,7 +20693,7 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; @@ -20347,7 +20714,7 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; @@ -20368,7 +20735,7 @@ sha256 = "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/folding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/folding"; sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y"; name = "folding"; }; @@ -20386,7 +20753,7 @@ sha256 = "04j9xybn9an3bm2p2aqmqnswxxg3gwq2mc96brkgxkr88h316d4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/font-lock+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-lock+"; sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g"; name = "font-lock-plus"; }; @@ -20407,7 +20774,7 @@ sha256 = "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/font-lock-studio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-lock-studio"; sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq"; name = "font-lock-studio"; }; @@ -20428,7 +20795,7 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; @@ -20449,7 +20816,7 @@ sha256 = "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; @@ -20462,15 +20829,15 @@ forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "forecast"; - version = "20151105.1635"; + version = "20160208.1748"; src = fetchFromGitHub { owner = "cadadr"; repo = "forecast.el"; - rev = "51526906140700f076bd329753abe7ae31b6da90"; - sha256 = "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21"; + rev = "7531c979a8756a9c78e4e3d221534a4143f5804d"; + sha256 = "091v9iazqiyarabpdh0v71ddsw018mhy5nnis7jfkafp60psn0nj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; @@ -20491,7 +20858,7 @@ sha256 = "1fczg710a0rjs932yv6vv9rwr9g5ii6cwva82nqfzyhlkf0b1sn5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/foreign-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foreign-regexp"; sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7"; name = "foreign-regexp"; }; @@ -20512,7 +20879,7 @@ sha256 = "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; @@ -20533,7 +20900,7 @@ sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; @@ -20554,7 +20921,7 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; @@ -20575,7 +20942,7 @@ sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fortpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fortpy"; sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj"; name = "fortpy"; }; @@ -20596,7 +20963,7 @@ sha256 = "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fortune-cookie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fortune-cookie"; sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78"; name = "fortune-cookie"; }; @@ -20609,15 +20976,15 @@ fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fountain-mode"; - version = "20160118.2004"; + version = "20160221.707"; src = fetchFromGitHub { owner = "rnkn"; repo = "fountain-mode"; - rev = "cca2529a2d97ab404f51edd82a73bfabf7656a2d"; - sha256 = "0jrqkrjjqg471x9ymzf5faxnv9zc8lyy2lh2m4dys2l4wc704lhr"; + rev = "4627868e70408b9608a47980d6cfda10024221d5"; + sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; @@ -20636,7 +21003,7 @@ sha256 = "1867zmm3pyqz8p9ig44jf598z9jkyvbp04mfg6j6ys3hyqfkw942"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/frame-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-cmds"; sha256 = "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0"; name = "frame-cmds"; }; @@ -20654,7 +21021,7 @@ sha256 = "0lvlyxb62sgrm37hc21dn7qzlrq2yagiwpspa926q6dpzcsbam15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/frame-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-fns"; sha256 = "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p"; name = "frame-fns"; }; @@ -20675,7 +21042,7 @@ sha256 = "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; @@ -20696,7 +21063,7 @@ sha256 = "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/frame-tag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-tag"; sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q"; name = "frame-tag"; }; @@ -20714,7 +21081,7 @@ sha256 = "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/framemove"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/framemove"; sha256 = "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar"; name = "framemove"; }; @@ -20735,7 +21102,7 @@ sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/framesize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/framesize"; sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf"; name = "framesize"; }; @@ -20756,7 +21123,7 @@ sha256 = "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/free-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/free-keys"; sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj"; name = "free-keys"; }; @@ -20777,7 +21144,7 @@ sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fringe-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fringe-current-line"; sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8"; name = "fringe-current-line"; }; @@ -20798,7 +21165,7 @@ sha256 = "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; @@ -20808,43 +21175,43 @@ license = lib.licenses.free; }; }) {}; - fsharp-mode = callPackage ({ auto-complete, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }: + fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, s }: melpaBuild { pname = "fsharp-mode"; - version = "20160126.945"; + version = "20160205.900"; src = fetchFromGitHub { owner = "rneatherway"; repo = "emacs-fsharp-mode-bin"; - rev = "b2a70da8ba3c573e02c6a9951ef5f0089cec6c78"; - sha256 = "115xl18nsg2j9sbp3qqzrjfpnzczk1zmrwrfrpqjq3jmv21ilsv3"; + rev = "3dd9cb858266608570ca264ec308f9776c370045"; + sha256 = "0q802gykb3rmn4ssqhs92d23r38jgshl8pjy2y6shmizmixzykml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; - packageRequires = [ auto-complete dash popup pos-tip s ]; + packageRequires = [ company company-quickhelp dash pos-tip s ]; meta = { homepage = "http://melpa.org/#/fsharp-mode"; license = lib.licenses.free; }; }) {}; - fstar-mode = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + fstar-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fstar-mode"; - version = "20160118.2138"; + version = "20160215.907"; src = fetchFromGitHub { owner = "FStarLang"; repo = "fstar-mode.el"; - rev = "2d9874827702c919590a19540d6641a4ffa245fd"; - sha256 = "19f3fzz0p99mc747m2qqii0idslac3q0fc1q39macd8kx715jkhl"; + rev = "247c9fc0a5f59a6df137d7cd82644b13ab4050ee"; + sha256 = "1257wsxvxp412s5vvaqf541kj1fr5whhlyalkfb0b2k1madal2al"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fstar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fstar-mode"; sha256 = "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy"; name = "fstar-mode"; }; - packageRequires = [ cl-lib dash emacs ]; + packageRequires = [ dash emacs ]; meta = { homepage = "http://melpa.org/#/fstar-mode"; license = lib.licenses.free; @@ -20856,11 +21223,11 @@ version = "20151204.543"; src = fetchgit { url = "git://factorcode.org/git/factor.git"; - rev = "fffb501486083871377237b9320159de140a943a"; - sha256 = "e2bddf41eacdf63ce42ff433b0a23da3a8de21a6e6b11ab8405ae5a17e09b493"; + rev = "69d5a3a276439b1b7b249dbfce2f8c46549536c1"; + sha256 = "c05f9f72c6a0f3582aecc258d8187a9e809041fd79ebcaed735b6803cdb7e4ac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; @@ -20881,7 +21248,7 @@ sha256 = "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; @@ -20894,15 +21261,15 @@ fullframe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fullframe"; - version = "20160119.411"; + version = "20160210.118"; src = fetchFromGitHub { owner = "tomterl"; repo = "fullframe"; - rev = "24a362bc6e2db08ada1a53292d526d472d41e7b2"; - sha256 = "1gq67hx5m3ifzr49k110azcr5y68sdb3aljqx3yg71apfi5dg4w6"; + rev = "3c046dd4c27a5c96d9dc3bc50a44eb1e7fd68912"; + sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; @@ -20915,15 +21282,15 @@ function-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "function-args"; - version = "20151022.751"; + version = "20160206.717"; src = fetchFromGitHub { owner = "abo-abo"; repo = "function-args"; - rev = "25e447d8a8930a8c515077de57a7693c6a642514"; - sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8"; + rev = "33ed7e45027b6ce2e455467f7a1a05ca4abdd078"; + sha256 = "067fmk46wk6jpc01wylagw948sgs3ndrq18mp3x81pdv3dykzmr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; @@ -20942,7 +21309,7 @@ sha256 = "109z1d0zrya1s9wy28nz5ynpg4zl7i1p6q1n57m1b1kkhhckjcv5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/furl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/furl"; sha256 = "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f"; name = "furl"; }; @@ -20963,7 +21330,7 @@ sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; @@ -20981,7 +21348,7 @@ sha256 = "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fuzzy-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy-format"; sha256 = "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb"; name = "fuzzy-format"; }; @@ -20999,7 +21366,7 @@ sha256 = "1q3gbv9xp2jxrf9vfarjqk9k805xc9z72zbaw7aqdxrj1bafxwnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fuzzy-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy-match"; sha256 = "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds"; name = "fuzzy-match"; }; @@ -21012,15 +21379,15 @@ fvwm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fvwm-mode"; - version = "20141105.2236"; + version = "20160217.859"; src = fetchFromGitHub { owner = "theBlackDragon"; repo = "fvwm-mode"; - rev = "cfd14546b6905806e0f2ad3df58b08de2401be3c"; - sha256 = "0w2kqmx38ji5273mzhn9sp4r6vn7jfwb5qpsf2w8d46avpf8rj5i"; + rev = "89d5dad68224ada08378014c0fee1111a5830c2b"; + sha256 = "14nr19skannq60cvvxg359vb45jxs593mmz370v1hi6k652z4pny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; @@ -21041,7 +21408,7 @@ sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; @@ -21054,15 +21421,15 @@ fxrd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fxrd-mode"; - version = "20160121.1253"; + version = "20160210.1733"; src = fetchFromGitHub { owner = "msherry"; repo = "fxrd-mode"; - rev = "7b49c7bec2ed4a579fa0234555667377e8ba0f53"; - sha256 = "1sk2z71xfi4wqb7ap8jvad8cbzdbilwzqx9vy45zmgx1jh7g4ba9"; + rev = "28792b17878c5e8c45b81c53bef83b751a73119c"; + sha256 = "1p0l3fvbpvwdg4p82yj9ab7fxmsyvrvqsbclrvns6k3xlgpcrcbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; @@ -21083,7 +21450,7 @@ sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fyure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fyure"; sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x"; name = "fyure"; }; @@ -21104,7 +21471,7 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; @@ -21125,7 +21492,7 @@ sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gandalf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gandalf-theme"; sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p"; name = "gandalf-theme"; }; @@ -21144,7 +21511,7 @@ sha256 = "1jsw2mywc0y8sf7yl7y3i3l8vs3jv1srjf34lgb5xfz6p8wc5lc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gap-mode"; sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2"; name = "gap-mode"; }; @@ -21165,7 +21532,7 @@ sha256 = "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; @@ -21184,7 +21551,7 @@ sha256 = "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/geben"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geben"; sha256 = "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm"; name = "geben"; }; @@ -21205,7 +21572,7 @@ sha256 = "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/geeknote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geeknote"; sha256 = "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v"; name = "geeknote"; }; @@ -21218,15 +21585,15 @@ geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geiser"; - version = "20160119.2245"; + version = "20160215.1932"; src = fetchFromGitHub { owner = "jaor"; repo = "geiser"; - rev = "04b0b3915741860a61532059b7e5291b7b98e031"; - sha256 = "0mcn29ldm01vf7np73mn29j69n6nlc17vb789m65cl59gm4b7lb8"; + rev = "c425acc5528bd24ca90fa7b5b3c3edba12b8f4fb"; + sha256 = "1na5wq15prn1qkla1bxg0jb8k86kdczvm4if878f7djj4vhkvxx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; @@ -21247,7 +21614,7 @@ sha256 = "1l3ps28a1wdrg2fgvvkdxdadfgpplijs4ig1yqq8yi7k13k046p4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/general-close"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/general-close"; sha256 = "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964"; name = "general-close"; }; @@ -21268,7 +21635,7 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; @@ -21289,7 +21656,7 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; @@ -21310,7 +21677,7 @@ sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gerrit-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gerrit-download"; sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp"; name = "gerrit-download"; }; @@ -21331,7 +21698,7 @@ sha256 = "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; @@ -21352,7 +21719,7 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; @@ -21373,7 +21740,7 @@ sha256 = "0fkq3yl9jpakfnahymjv28fcal38c210garnq055rgmyhyhhpdwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; @@ -21394,7 +21761,7 @@ sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gh-md"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gh-md"; sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm"; name = "gh-md"; }; @@ -21411,11 +21778,11 @@ src = fetchFromGitHub { owner = "kazu-yamamoto"; repo = "ghc-mod"; - rev = "d77e262915d5726dc48549e3e7ea25c89e675475"; - sha256 = "06p4hg8nkjphqkfim3ax1v82i29sfawfd8bdc4i3zrlbrvhdcnli"; + rev = "add699af4831b7b7df5d65ed7203427a125d1888"; + sha256 = "0lpxiqjyqsqjf36q3j078xcv10llljqyvm4knwgijd35axsxrcvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc"; sha256 = "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g"; name = "ghc"; }; @@ -21436,7 +21803,7 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; @@ -21457,7 +21824,7 @@ sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ghci-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghci-completion"; sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll"; name = "ghci-completion"; }; @@ -21478,7 +21845,7 @@ sha256 = "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gherkin-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gherkin-mode"; sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv"; name = "gherkin-mode"; }; @@ -21499,7 +21866,7 @@ sha256 = "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghq"; sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh"; name = "ghq"; }; @@ -21520,7 +21887,7 @@ sha256 = "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gildas-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gildas-mode"; sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv"; name = "gildas-mode"; }; @@ -21541,7 +21908,7 @@ sha256 = "18433gjhra0gqrwnxssd3njpxbvqhh64bds9rym1vq9l7w09z024"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; @@ -21562,7 +21929,7 @@ sha256 = "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; @@ -21575,15 +21942,15 @@ git-annex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-annex"; - version = "20131119.1645"; + version = "20160215.1311"; src = fetchFromGitHub { owner = "jwiegley"; repo = "git-annex-el"; - rev = "a37648ae83783bb48221ef6299aa4ef5ceccf51b"; - sha256 = "0yxmrcrvl9pbwhd7w4vnrv2jqyskzvqp17sr3vzjlvv694jd4dms"; + rev = "e61ef24f22c74dff4b64235191414c98d60aa11a"; + sha256 = "0d2blcnyqd1br7zhwprdxpx2jphjhsb4jgaw9dr4gvv0xdb2sr87"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-annex"; sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l"; name = "git-annex"; }; @@ -21604,7 +21971,7 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; @@ -21625,7 +21992,7 @@ sha256 = "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-blame"; sha256 = "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06"; name = "git-blame"; }; @@ -21646,7 +22013,7 @@ sha256 = "1irqmypgc4l1jlzj4g65ihpic3ffnnkcg1hlysj7qpip5nbflqgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; @@ -21663,11 +22030,11 @@ src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "08d0d095c7c16fb8223d3beeea232412f88936f5"; - sha256 = "08h1lypdvgv0rkq1sjkmw9zwvbjwvpklzjyawb5chgfa5grgfiii"; + rev = "08c61ea85ca62e8cc04c4e8a0a55a5d947a8d01f"; + sha256 = "18jk5bl30kncbc5n7sra5i0n4d57c2nd348kmw154xq1dc7w8b64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; @@ -21688,7 +22055,7 @@ sha256 = "1vdyrqg2w5q4xmazqqh2ymjnrp9p1x5172nllwryz43jvvxaw05s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-commit-insert-issue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-commit-insert-issue"; sha256 = "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3"; name = "git-commit-insert-issue"; }; @@ -21706,7 +22073,7 @@ sha256 = "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-dwim"; sha256 = "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr"; name = "git-dwim"; }; @@ -21719,16 +22086,16 @@ git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-gutter"; - version = "20160202.1027"; + version = "20160210.228"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-gutter"; - rev = "07410145fe492c9f36c8fa3e91c0e8210c73ba96"; - sha256 = "0hgqimvh09nppm96x5mz4kzdqr9f8dja3si9xn1169xl1279kqvb"; + rev = "b680e11144863f67813cd8139bff7b13df9c6d8c"; + sha256 = "0h4ascd1ywfx9mjssl9py6xj7g4q6h4ab7g8y7dgbs6yzjjyhyn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter"; - sha256 = "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter"; + sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; packageRequires = [ cl-lib emacs ]; @@ -21748,8 +22115,8 @@ sha256 = "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter-fringe"; - sha256 = "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe"; + sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; packageRequires = [ cl-lib emacs fringe-helper git-gutter ]; @@ -21769,7 +22136,7 @@ sha256 = "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; @@ -21790,7 +22157,7 @@ sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; @@ -21811,7 +22178,7 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; @@ -21832,7 +22199,7 @@ sha256 = "1la3zzcjnmzgxkd4ljr9b5335ddbrvid47kfzp2s358xknzmbsdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; @@ -21853,7 +22220,7 @@ sha256 = "082g2gqbf8yjgvj2c32ix6j3wwba5fmgcyi75bf0q0bbg4ck5rab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; @@ -21874,7 +22241,7 @@ sha256 = "1v0jk35ynfg9hivw9gdz2snk73pac67xlfx7av8argdcss1bmyb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; @@ -21895,7 +22262,7 @@ sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; @@ -21916,7 +22283,7 @@ sha256 = "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; @@ -21937,7 +22304,7 @@ sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; @@ -21958,7 +22325,7 @@ sha256 = "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; @@ -21979,7 +22346,7 @@ sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; @@ -21992,15 +22359,15 @@ github-browse-file = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-browse-file"; - version = "20151112.1825"; + version = "20160205.827"; src = fetchFromGitHub { owner = "osener"; repo = "github-browse-file"; - rev = "fa5cc00a40869430fb44596792961a4cddf9c265"; - sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578"; + rev = "9742a5183af853788c6ecb83fb7ee0b00d1675ac"; + sha256 = "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; @@ -22021,7 +22388,7 @@ sha256 = "000m6w2akx1z1lb32nvy6qzyggpcvlbdjh1i8419rzaidxf5gaxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; @@ -22042,7 +22409,7 @@ sha256 = "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/github-issues"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-issues"; sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0"; name = "github-issues"; }; @@ -22063,7 +22430,7 @@ sha256 = "11nfpy39xdkjxaxbfn8rppj4rcz57wl15gyibp01j9w7wmb5b4pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/github-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-notifier"; sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw"; name = "github-notifier"; }; @@ -22084,7 +22451,7 @@ sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; @@ -22105,7 +22472,7 @@ sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; @@ -22126,7 +22493,7 @@ sha256 = "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitolite-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitolite-clone"; sha256 = "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac"; name = "gitolite-clone"; }; @@ -22147,7 +22514,7 @@ sha256 = "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitty"; sha256 = "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16"; name = "gitty"; }; @@ -22160,15 +22527,15 @@ glsl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "glsl-mode"; - version = "20150114.1033"; + version = "20160209.1033"; src = fetchFromGitHub { owner = "jimhourihan"; repo = "glsl-mode"; - rev = "6bd83d429307d682fef0efd46c78b3e055e2caf1"; - sha256 = "0b6ldcfzbdn0mzrcl08zm9kx1hap3djsbzd1qvph1pa2gab25n8j"; + rev = "b4709644bb01b522ba9c8afe16ed2394783c481f"; + sha256 = "14ziljq34k585scwn606hqbkcvy8h1iylsc4h2n1grfmm8ilf0ws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/glsl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/glsl-mode"; sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5"; name = "glsl-mode"; }; @@ -22189,7 +22556,7 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; @@ -22210,7 +22577,7 @@ sha256 = "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; @@ -22231,7 +22598,7 @@ sha256 = "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; @@ -22252,7 +22619,7 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; @@ -22273,7 +22640,7 @@ sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnomenm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnomenm"; sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm"; name = "gnomenm"; }; @@ -22294,7 +22661,7 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; @@ -22315,7 +22682,7 @@ sha256 = "1dfkjzx33wzafj9cfm1bpj99bmnq5a8qrvzmhjykr7mfkca79ymz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnu-apl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnu-apl-mode"; sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6"; name = "gnu-apl-mode"; }; @@ -22336,7 +22703,7 @@ sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; @@ -22357,7 +22724,7 @@ sha256 = "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnuplot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnuplot-mode"; sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg"; name = "gnuplot-mode"; }; @@ -22378,7 +22745,7 @@ sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-alias"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-alias"; sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf"; name = "gnus-alias"; }; @@ -22391,15 +22758,15 @@ gnus-desktop-notify = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }: melpaBuild { pname = "gnus-desktop-notify"; - version = "20150703.854"; + version = "20160210.447"; src = fetchFromGitHub { owner = "wavexx"; repo = "gnus-desktop-notify"; - rev = "cbd5352d7cb5209a410db7f0faa60b4585f8647b"; - sha256 = "0ylcphnf4lv78kiazdkl5izn7ql402fpvv82n7n1gpjiqq4ylalr"; + rev = "c363af85f341cc878d6c0be53fd32efa8ca9423b"; + sha256 = "1zizmxjf55bkm9agmrym80h2mnyvpc9bamkjy2azs42fqgi9pqjn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-desktop-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-desktop-notify"; sha256 = "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b"; name = "gnus-desktop-notify"; }; @@ -22417,7 +22784,7 @@ sha256 = "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-spotlight"; sha256 = "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx"; name = "gnus-spotlight"; }; @@ -22438,7 +22805,7 @@ sha256 = "1dzb3h5swvmwwy7x1lhz79cq2kpmamk35jb4dwmmxz6j248kmv6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-summary-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-summary-ext"; sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf"; name = "gnus-summary-ext"; }; @@ -22459,7 +22826,7 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; @@ -22476,11 +22843,11 @@ src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; - rev = "db85a48a7870f46784edc202c780b19e2f65053a"; - sha256 = "15jjmhw3pd4hx1khbvrypd8s2kh3ymkf8p4qh1c9rbw9csypj3al"; + rev = "659c0a429af764118d27692d02b77c544a32cfe3"; + sha256 = "1gfad94acp7qxm6yg0prjfkx370caq309zc8dy20ssi4x19j4n0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; @@ -22501,7 +22868,7 @@ sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-complete"; sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4"; name = "go-complete"; }; @@ -22522,7 +22889,7 @@ sha256 = "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; @@ -22543,7 +22910,7 @@ sha256 = "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-dlv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-dlv"; sha256 = "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i"; name = "go-dlv"; }; @@ -22556,15 +22923,15 @@ go-eldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-eldoc"; - version = "20151028.210"; + version = "20160217.2131"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-eldoc"; - rev = "684f1414913c85695eb8ca4a2643cea04ee60527"; - sha256 = "1jwh5rqk7vr6kna6i0p3fl3wjk3mhlr6gxklc3xij4r2zdyfj8na"; + rev = "ef18dd32e76cab22f17a704943338ffddf283791"; + sha256 = "1y4zrslmvg88c1q1asf9g509w69cyr3zgknfakdd98xrgfbg580n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; @@ -22585,7 +22952,7 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; @@ -22598,15 +22965,15 @@ go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-mode"; - version = "20160127.204"; + version = "20160220.1951"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-mode.el"; - rev = "63e67b187e8fbe6153995a754c60f65217e53142"; - sha256 = "10bmd6vx1pxaal61kx87xabw13cyvl7v8z7cfxbxhv5cx0l3qizq"; + rev = "27b74155dc2896a1809c905a7326b1d6d36014f3"; + sha256 = "1x29shbz3hmljr92f07kpplj2hpyz64c4miy11a20xlymixchnzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; @@ -22627,7 +22994,7 @@ sha256 = "1hpxvp0slqafbxhkashnmfjssb0ccjq67x01b4p7gznf6rwji166"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-playground"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-playground"; sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6"; name = "go-playground"; }; @@ -22648,7 +23015,7 @@ sha256 = "0xm3v6snsxv1x8i4jdq3k2aax7v1xm4zvgc9khabwhc2y63xja46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-playground-cli"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-playground-cli"; sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc"; name = "go-playground-cli"; }; @@ -22669,7 +23036,7 @@ sha256 = "16n8655i7qidakxijymx1n84pnkn3hxpj7lsr901j03blxdrij5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-projectile"; sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml"; name = "go-projectile"; }; @@ -22685,11 +23052,11 @@ version = "20151027.838"; src = fetchgit { url = "https://go.googlesource.com/tools"; - rev = "a6e3cc80e87d58d7fdb23da870845b456969b929"; - sha256 = "ba6f77b796479d401f0037132a71493665c0af9830b6b26b1c9ed477247cde8e"; + rev = "86372b3255bd23c074d3112bdb87052e725463ed"; + sha256 = "b57e416275e60520686e1f40df43ac646b19e84723e93619497d6800d9d21a4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-rename"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-rename"; sha256 = "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah"; name = "go-rename"; }; @@ -22710,7 +23077,7 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; @@ -22731,7 +23098,7 @@ sha256 = "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-snippets"; sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn"; name = "go-snippets"; }; @@ -22752,7 +23119,7 @@ sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-stacktracer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-stacktracer"; sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy"; name = "go-stacktracer"; }; @@ -22773,7 +23140,7 @@ sha256 = "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/god-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/god-mode"; sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa"; name = "god-mode"; }; @@ -22794,7 +23161,7 @@ sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gold-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gold-mode"; sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf"; name = "gold-mode"; }; @@ -22815,7 +23182,7 @@ sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; @@ -22836,7 +23203,7 @@ sha256 = "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/golden-ratio-scroll-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golden-ratio-scroll-screen"; sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5"; name = "golden-ratio-scroll-screen"; }; @@ -22857,7 +23224,7 @@ sha256 = "16lghkdi0rd7l1fph0a254k6axxivmpmc6grx4ryvza3f4yf7483"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/golint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golint"; sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb"; name = "golint"; }; @@ -22878,7 +23245,7 @@ sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gom-mode"; sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m"; name = "gom-mode"; }; @@ -22899,7 +23266,7 @@ sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google"; sha256 = "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my"; name = "google"; }; @@ -22916,11 +23283,11 @@ src = fetchFromGitHub { owner = "google"; repo = "styleguide"; - rev = "2a576b1397e7f983940d75f1219813ea1d591da9"; - sha256 = "12m3hxfwp9r86xdwbslvfxcanpxszcg6x0kcgv5i1k6aygrim9h2"; + rev = "b43afc71a5ae4a2585a583333b45ce664cd2c3c6"; + sha256 = "0ksbrnca7zyapz874m4kvfvzv7m30d08gpqdi50q8v5197b1h0rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-c-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-c-style"; sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r"; name = "google-c-style"; }; @@ -22941,7 +23308,7 @@ sha256 = "1h7nj570drp2l9x6475gwzcjrp75ms8dkixa7qsgszjdk58qyhnb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-contacts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-contacts"; sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn"; name = "google-contacts"; }; @@ -22962,7 +23329,7 @@ sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-maps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-maps"; sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx"; name = "google-maps"; }; @@ -22983,7 +23350,7 @@ sha256 = "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; @@ -23004,7 +23371,7 @@ sha256 = "0hvxyqkxv5hfsa9sv71m7d98g25a1xc962r961nw6vmbvsf64z6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; @@ -23025,7 +23392,7 @@ sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gore-mode"; sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3"; name = "gore-mode"; }; @@ -23046,7 +23413,7 @@ sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gorepl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gorepl-mode"; sha256 = "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl"; name = "gorepl-mode"; }; @@ -23067,7 +23434,7 @@ sha256 = "0vf42j9jpa75879pxb1h7qgflcrrg78dgq5lg8v0sbpy7z86zaxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; @@ -23088,7 +23455,7 @@ sha256 = "12lglll20w321vvl6zpqd8r9745y58g6zzfm83iifyzd9hzx7v30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; @@ -23106,7 +23473,7 @@ sha256 = "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/goto-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-chg"; sha256 = "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv"; name = "goto-chg"; }; @@ -23127,7 +23494,7 @@ sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; @@ -23148,7 +23515,7 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; @@ -23165,11 +23532,11 @@ src = fetchFromGitHub { owner = "vmware"; repo = "govmomi"; - rev = "367391c0c3de585b791b72bdcd045810fb17d606"; - sha256 = "1bqqdwwc63g05wwnk15745mmf4g7r23nzyq681im6icy13x6z07x"; + rev = "227420a68c86f8890c8c768fd908e1ef3a816702"; + sha256 = "0hm5w34z6wghmaf4d6j9pzcbpz6nsmz6xwzx6rd1gr73v5marayp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/govc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/govc"; sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; name = "govc"; }; @@ -23190,7 +23557,7 @@ sha256 = "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/govet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/govet"; sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy"; name = "govet"; }; @@ -23211,7 +23578,7 @@ sha256 = "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gplusify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gplusify"; sha256 = "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr"; name = "gplusify"; }; @@ -23232,7 +23599,7 @@ sha256 = "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; @@ -23249,11 +23616,11 @@ src = fetchFromGitHub { owner = "Groovy-Emacs-Modes"; repo = "groovy-emacs-modes"; - rev = "792b0c5a72f7500c8e07f37b77b96fd1f91ac61b"; - sha256 = "03dranmbrq9gkvlcvzlrvv0nvpkgk02hcwfcjkdifql2j8h23jgy"; + rev = "d17b29b0ccffb1a7c6e5f3f13268ad2c5770249b"; + sha256 = "0gvz0zdpspl8dhsm17f0q9020ayvxmgmm15yy7hnl4z0xrv9yvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grails-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grails-mode"; sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; name = "grails-mode"; }; @@ -23274,7 +23641,7 @@ sha256 = "11ry4p5r0hg3jlmfhp6hfkryzrp6snl38v8j7ds8limhbpdh5wr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; @@ -23295,7 +23662,7 @@ sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; @@ -23316,7 +23683,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -23349,7 +23716,7 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; @@ -23370,7 +23737,7 @@ sha256 = "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; @@ -23391,7 +23758,7 @@ sha256 = "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; @@ -23411,7 +23778,7 @@ sha256 = "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; @@ -23432,7 +23799,7 @@ sha256 = "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/green-phosphor-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/green-phosphor-theme"; sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh"; name = "green-phosphor-theme"; }; @@ -23453,7 +23820,7 @@ sha256 = "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gregorio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gregorio-mode"; sha256 = "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx"; name = "gregorio-mode"; }; @@ -23474,7 +23841,7 @@ sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grep-a-lot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grep-a-lot"; sha256 = "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1"; name = "grep-a-lot"; }; @@ -23486,13 +23853,13 @@ }) {}; grep-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "grep-plus"; - version = "20151231.1524"; + version = "20160212.825"; src = fetchurl { url = "http://www.emacswiki.org/emacs/download/grep+.el"; - sha256 = "1pqx01c61i3rxvq2qf8l6gcla8jsmc1af5780s78clqfi51kbg2g"; + sha256 = "08jl4xhh25znyc6cm7288x4b55pykrpcsyym78fdlrw3xxr77cxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grep+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grep+"; sha256 = "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx"; name = "grep-plus"; }; @@ -23513,7 +23880,7 @@ sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/greymatters-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/greymatters-theme"; sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr"; name = "greymatters-theme"; }; @@ -23532,7 +23899,7 @@ sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; @@ -23553,7 +23920,7 @@ sha256 = "1d2kwiq3zy8wdg5zig0q9rrdcs4xdv6zsgvgc21b3kv83daq1dsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grizzl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grizzl"; sha256 = "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24"; name = "grizzl"; }; @@ -23570,11 +23937,11 @@ src = fetchFromGitHub { owner = "Groovy-Emacs-Modes"; repo = "groovy-emacs-modes"; - rev = "792b0c5a72f7500c8e07f37b77b96fd1f91ac61b"; - sha256 = "03dranmbrq9gkvlcvzlrvv0nvpkgk02hcwfcjkdifql2j8h23jgy"; + rev = "d17b29b0ccffb1a7c6e5f3f13268ad2c5770249b"; + sha256 = "0gvz0zdpspl8dhsm17f0q9020ayvxmgmm15yy7hnl4z0xrv9yvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/groovy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/groovy-mode"; sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; name = "groovy-mode"; }; @@ -23587,15 +23954,15 @@ gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruber-darker-theme"; - version = "20151223.252"; + version = "20160209.416"; src = fetchFromGitHub { owner = "rexim"; repo = "gruber-darker-theme"; - rev = "60d8262d8e38103568bbe58e2ece1d9a970fc15a"; - sha256 = "0l6gkhzg0dn4q223gljh1jh305aa9n8rbf9h5gg5d1aygs7cb3ha"; + rev = "87bb44be343676b622dd7fb7f09e2861b21e2346"; + sha256 = "0mb38niiscl0jljq43z9scl6zarqqgavhal3c4dzwbjyfy21c16a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; @@ -23616,7 +23983,7 @@ sha256 = "1js849s8b9x0n6ak2qwv90lk6zr71mgkk9f0xccdhikz4c8vxk0r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; @@ -23637,7 +24004,7 @@ sha256 = "04jknwkax9gdmzz0yq0m21grl9c43vr3abdam3g8zjh5sjx5gs14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gruvbox-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gruvbox-theme"; sha256 = "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32"; name = "gruvbox-theme"; }; @@ -23658,7 +24025,7 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gs-mode"; sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq"; name = "gs-mode"; }; @@ -23679,7 +24046,7 @@ sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; @@ -23700,7 +24067,7 @@ sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; @@ -23721,7 +24088,7 @@ sha256 = "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; @@ -23742,7 +24109,7 @@ sha256 = "16h1g88y4q737sxcjkm1kxirv5m2x3l9wgmz0s4hlxjzli8fc7jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; @@ -23763,7 +24130,7 @@ sha256 = "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gvpr-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gvpr-mode"; sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw"; name = "gvpr-mode"; }; @@ -23784,7 +24151,7 @@ sha256 = "15d7zjxjp9h8jmxq3dqakwzlymqk6hqsg7zklkjs0ih7fz0d25pl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; @@ -23805,7 +24172,7 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; @@ -23826,7 +24193,7 @@ sha256 = "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hamburg-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hamburg-theme"; sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k"; name = "hamburg-theme"; }; @@ -23847,7 +24214,7 @@ sha256 = "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; @@ -23868,7 +24235,7 @@ sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hamlet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hamlet-mode"; sha256 = "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx"; name = "hamlet-mode"; }; @@ -23889,7 +24256,7 @@ sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/handlebars-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/handlebars-mode"; sha256 = "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj"; name = "handlebars-mode"; }; @@ -23910,7 +24277,7 @@ sha256 = "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/handlebars-sgml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/handlebars-sgml-mode"; sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w"; name = "handlebars-sgml-mode"; }; @@ -23931,7 +24298,7 @@ sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/handoff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/handoff"; sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w"; name = "handoff"; }; @@ -23952,7 +24319,7 @@ sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; @@ -23973,7 +24340,7 @@ sha256 = "13pgxskddir74lqknkkflzkrv6q455cf5s7wjww1zgvw95j7q50v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; @@ -23994,7 +24361,7 @@ sha256 = "1l08d6qn7ixs3yg6svh8fd2x6zwjkbv0s34vm5aa7krx7yhydblx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; @@ -24015,7 +24382,7 @@ sha256 = "1l08d6qn7ixs3yg6svh8fd2x6zwjkbv0s34vm5aa7krx7yhydblx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; @@ -24036,7 +24403,7 @@ sha256 = "1l08d6qn7ixs3yg6svh8fd2x6zwjkbv0s34vm5aa7krx7yhydblx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; @@ -24049,15 +24416,15 @@ haskell-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-mode"; - version = "20160202.1531"; + version = "20160221.351"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-mode"; - rev = "b562d054972c5d976f1c5d222bec9aa1189bd0dd"; - sha256 = "0w5q3cff31qsyq9z4ci6x9pdacjmdlh5w6h0n485b92yb8ryxa5r"; + rev = "2193190a271cc99e09399f53164c06d62826a490"; + sha256 = "0alyyffv8x74nfgp2alai711hvwhgqh7xl38gcvpdfdl7w1msfzi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; @@ -24078,7 +24445,7 @@ sha256 = "1wha5f2zx5hr6y0wvpmkg7jnxcgbzx99gd70h96c3dqqqhqz6d2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; @@ -24098,7 +24465,7 @@ sha256 = "7e41c910d6901638b9dfb697206659f5441e26e0558f9227c4ba7c6f2f47d841"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; @@ -24119,7 +24486,7 @@ sha256 = "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haste"; sha256 = "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf"; name = "haste"; }; @@ -24139,7 +24506,7 @@ sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haxe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haxe-mode"; sha256 = "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l"; name = "haxe-mode"; }; @@ -24160,7 +24527,7 @@ sha256 = "1si5r86zvnp4wbzvvqyc4zhap14k8pcq5nqigx45mgvpdnwdvzln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; @@ -24181,7 +24548,7 @@ sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hayoo"; sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9"; name = "hayoo"; }; @@ -24202,7 +24569,7 @@ sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hc-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hc-zenburn-theme"; sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y"; name = "hc-zenburn-theme"; }; @@ -24223,7 +24590,7 @@ sha256 = "1vf5130bj1ii9j8qq9vdw0ga0qgfk8brjz34ysfmz9l2ihlcxvl0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; @@ -24241,7 +24608,7 @@ sha256 = "00j74cqdnaf5rl7w4wabm4z88cm20s152y0yxnv73z9pvqbknrmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/header2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/header2"; sha256 = "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06"; name = "header2"; }; @@ -24262,7 +24629,7 @@ sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/headlong"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/headlong"; sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6"; name = "headlong"; }; @@ -24275,15 +24642,15 @@ helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "20160204.1126"; + version = "20160217.1158"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "6085777884bf8cc63a6e15cbbb506d09d782f0cc"; - sha256 = "1rwdh2mwn3ynw1c1b5fxdblnyfrqcnbs5045dfl4f8afwqqh92w8"; + rev = "27baadfe942d7b3a2b5049029c002d6a1cc9fea2"; + sha256 = "04fw48six952jxcp9mriz7pcfj223z80am9ig1y4rp3yanqm6z1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; @@ -24304,7 +24671,7 @@ sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-R"; sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1"; name = "helm-R"; }; @@ -24325,7 +24692,7 @@ sha256 = "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; @@ -24346,7 +24713,7 @@ sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ad"; sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi"; name = "helm-ad"; }; @@ -24363,12 +24730,12 @@ src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ag"; - rev = "33a924553eb0cc8d80022bea491718aba48801d0"; - sha256 = "1gbvhc8wpai3gvnzsmg1y7qffvimg77b36dcm7n82iy6pavdn9z3"; + rev = "e8af4023bcd49700751c2b6dc3591b5e48016413"; + sha256 = "0ig7d8a0ikslm3yvq8yjzc83rg2xxs0gl54g01bi4rydl3p9b6s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ag"; - sha256 = "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ag"; + sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; packageRequires = [ emacs helm ]; @@ -24388,7 +24755,7 @@ sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ag-r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ag-r"; sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9"; name = "helm-ag-r"; }; @@ -24409,7 +24776,7 @@ sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-anything"; sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx"; name = "helm-anything"; }; @@ -24430,7 +24797,7 @@ sha256 = "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; @@ -24451,7 +24818,7 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; @@ -24464,15 +24831,15 @@ helm-bibtex = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: melpaBuild { pname = "helm-bibtex"; - version = "20160127.1352"; + version = "20160210.1638"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "helm-bibtex"; - rev = "be4c894463ee77ee719d0c5517cf414a8fcc6cce"; - sha256 = "046gycmwrn0h1ld37b7pwylb9nkyzgpzlbf7p99fq8p2mnsz3rcj"; + rev = "7895ac0f016cca71b6e171a98fee236d5ed312dd"; + sha256 = "0j6ygwkwmjs7hblllj3mv2byc7lcqxx9vyjxs34j8q1vpam972p3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bibtex"; sha256 = "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg"; name = "helm-bibtex"; }; @@ -24493,7 +24860,7 @@ sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-bibtexkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bibtexkey"; sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj"; name = "helm-bibtexkey"; }; @@ -24514,7 +24881,7 @@ sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bind-key"; sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid"; name = "helm-bind-key"; }; @@ -24535,7 +24902,7 @@ sha256 = "1gcx7imq9gxfgmh188a8xlpmmlrdif1vsnnff49qvk82082ghbfz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bm"; sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; name = "helm-bm"; }; @@ -24556,7 +24923,7 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; @@ -24577,7 +24944,7 @@ sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-c-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-c-moccur"; sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b"; name = "helm-c-moccur"; }; @@ -24598,7 +24965,7 @@ sha256 = "03c4w34r0q7xpz1ny8dya8f96rhjpc9r2c24n7vg9x6x4i2wl204"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; @@ -24619,7 +24986,7 @@ sha256 = "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-chrome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-chrome"; sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz"; name = "helm-chrome"; }; @@ -24640,7 +25007,7 @@ sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-chronos"; sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3"; name = "helm-chronos"; }; @@ -24661,7 +25028,7 @@ sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-cider-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cider-history"; sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h"; name = "helm-cider-history"; }; @@ -24674,15 +25041,15 @@ helm-circe = callPackage ({ circe, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-circe"; - version = "20150317.44"; + version = "20160207.52"; src = fetchFromGitHub { owner = "lesharris"; repo = "helm-circe"; - rev = "0b7ecf5380971ee7b6291fca6a2805c320638238"; - sha256 = "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0"; + rev = "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a"; + sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; @@ -24692,6 +25059,27 @@ license = lib.licenses.free; }; }) {}; + helm-clojuredocs = callPackage ({ edn, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-clojuredocs"; + version = "20160221.1512"; + src = fetchFromGitHub { + owner = "mbuczko"; + repo = "helm-clojuredocs"; + rev = "ac9e82c56f269f284968acbdf831b30b61b8ea70"; + sha256 = "0c6gicql7jl0ygwp30axy5wrvwjj1xjnm3x0cjqg07pbycjhl65x"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-clojuredocs"; + sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk"; + name = "helm-clojuredocs"; + }; + packageRequires = [ edn helm ]; + meta = { + homepage = "http://melpa.org/#/helm-clojuredocs"; + license = lib.licenses.free; + }; + }) {}; helm-cmd-t = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-cmd-t"; @@ -24703,7 +25091,7 @@ sha256 = "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-cmd-t"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cmd-t"; sha256 = "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk"; name = "helm-cmd-t"; }; @@ -24724,7 +25112,7 @@ sha256 = "05nvbwz3inbmfj88am69sz032wsj8jkfpjk5drgfijw98il9blk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-codesearch"; sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q"; name = "helm-codesearch"; }; @@ -24745,7 +25133,7 @@ sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; @@ -24766,7 +25154,7 @@ sha256 = "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-company"; sha256 = "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3"; name = "helm-company"; }; @@ -24779,15 +25167,15 @@ helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "20160203.419"; + version = "20160217.1158"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "6085777884bf8cc63a6e15cbbb506d09d782f0cc"; - sha256 = "1rwdh2mwn3ynw1c1b5fxdblnyfrqcnbs5045dfl4f8afwqqh92w8"; + rev = "27baadfe942d7b3a2b5049029c002d6a1cc9fea2"; + sha256 = "04fw48six952jxcp9mriz7pcfj223z80am9ig1y4rp3yanqm6z1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; @@ -24808,7 +25196,7 @@ sha256 = "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; @@ -24829,7 +25217,7 @@ sha256 = "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-css-scss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-css-scss"; sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak"; name = "helm-css-scss"; }; @@ -24850,7 +25238,7 @@ sha256 = "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ctest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ctest"; sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm"; name = "helm-ctest"; }; @@ -24863,15 +25251,15 @@ helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dash"; - version = "20160103.734"; + version = "20160220.635"; src = fetchFromGitHub { owner = "areina"; repo = "helm-dash"; - rev = "50eecc195d019afa86a77330db5e23b96e5b75aa"; - sha256 = "1fbwxd6fm36ci85svl22h30bjqm8p5p8fxsnbmvkksln5psghn5d"; + rev = "372bba923904d229ecfbd44990f7fb4edec4d6a6"; + sha256 = "1g02vk1pfk969c3zvc307wg7kzgiwzwa861hk60zsffhinhw795y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; @@ -24892,7 +25280,7 @@ sha256 = "0y0xxs67bzh6j68j3f4zxzrl2ij5g1qvvxqklw7nz305xliis29g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; @@ -24902,6 +25290,27 @@ license = lib.licenses.free; }; }) {}; + helm-describe-modes = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-describe-modes"; + version = "20160211.2318"; + src = fetchFromGitHub { + owner = "emacs-helm"; + repo = "helm-describe-modes"; + rev = "d2253c7c2bf4f28b9ff8a2d281bd7527c0106527"; + sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-describe-modes"; + sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb"; + name = "helm-describe-modes"; + }; + packageRequires = [ cl-lib emacs helm ]; + meta = { + homepage = "http://melpa.org/#/helm-describe-modes"; + license = lib.licenses.free; + }; + }) {}; helm-dictionary = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dictionary"; @@ -24913,7 +25322,7 @@ sha256 = "05mb7kb4x7kzh0w9r531ppd92hzsa2v3wqcmafkcn1z5wfp7zw68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dictionary"; sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n"; name = "helm-dictionary"; }; @@ -24934,7 +25343,7 @@ sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-dired-recent-dirs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dired-recent-dirs"; sha256 = "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs"; name = "helm-dired-recent-dirs"; }; @@ -24955,7 +25364,7 @@ sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-dirset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dirset"; sha256 = "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml"; name = "helm-dirset"; }; @@ -24976,7 +25385,7 @@ sha256 = "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-emmet"; sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03"; name = "helm-emmet"; }; @@ -24997,7 +25406,7 @@ sha256 = "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-emms"; sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5"; name = "helm-emms"; }; @@ -25018,7 +25427,7 @@ sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-filesets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-filesets"; sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f"; name = "helm-filesets"; }; @@ -25039,7 +25448,7 @@ sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; @@ -25060,7 +25469,7 @@ sha256 = "1j2ziyzyhd177b3rhrdbkqjmqbr3a8aj670mayy6l2r4ydp5xmaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flx"; sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq"; name = "helm-flx"; }; @@ -25081,7 +25490,7 @@ sha256 = "0k5703nj838qh0h6hzgffjrp0df9rs7psczg4r9mxpi19vqk8ff0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flycheck"; sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; name = "helm-flycheck"; }; @@ -25102,7 +25511,7 @@ sha256 = "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-flymake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flymake"; sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b"; name = "helm-flymake"; }; @@ -25123,7 +25532,7 @@ sha256 = "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flyspell"; sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f"; name = "helm-flyspell"; }; @@ -25136,15 +25545,15 @@ helm-fuzzier = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-fuzzier"; - version = "20151111.838"; + version = "20160220.240"; src = fetchFromGitHub { owner = "EphramPerdition"; repo = "helm-fuzzier"; - rev = "7e8573de1a639c031056f20c677d13760f2cece0"; - sha256 = "1jns0428jmxrm4w9yk67ffbzmgyjgp1v5ii152y0wsb105ary0xp"; + rev = "f24c2e92b1dfcfa0c43b9030f8160cbe1c94decc"; + sha256 = "15am2dpva3fzj68sw9n4mpdxkw75l97l1k2j9vlvi2lbqk1h46pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-fuzzier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-fuzzier"; sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc"; name = "helm-fuzzier"; }; @@ -25165,7 +25574,7 @@ sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-fuzzy-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-fuzzy-find"; sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i"; name = "helm-fuzzy-find"; }; @@ -25186,7 +25595,7 @@ sha256 = "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; @@ -25207,7 +25616,7 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; @@ -25228,7 +25637,7 @@ sha256 = "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-git"; sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8"; name = "helm-git"; }; @@ -25249,7 +25658,7 @@ sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-git-files"; sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6"; name = "helm-git-files"; }; @@ -25270,7 +25679,7 @@ sha256 = "1mp5gbda81szbx19rvaa6ybb28v64q49hqic8d478ggnjjsqhfyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-git-grep"; sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; name = "helm-git-grep"; }; @@ -25291,7 +25700,7 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; @@ -25312,7 +25721,7 @@ sha256 = "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-gitignore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gitignore"; sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6"; name = "helm-gitignore"; }; @@ -25333,7 +25742,7 @@ sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; @@ -25354,7 +25763,7 @@ sha256 = "1r01nl1k9jjb70214rkmbqaa4qrkyd3apiyq00w02wsymy12wwic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-go-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-go-package"; sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; name = "helm-go-package"; }; @@ -25375,7 +25784,7 @@ sha256 = "0ml5mv282dz73hmgjalcsypdvc30pwhsfbamyz46744j7wxn6ik2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-google"; sha256 = "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32"; name = "helm-google"; }; @@ -25388,15 +25797,15 @@ helm-grepint = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-grepint"; - version = "20151030.1137"; + version = "20160220.1240"; src = fetchFromGitHub { owner = "kopoli"; repo = "helm-grepint"; - rev = "0327f64121751065a85c76527dda2c037c8fb0d8"; - sha256 = "07bmk4wbn07rg8h8rdhah285hsaaqkx5n84g87lpb7y5ba3ivlk5"; + rev = "2c0a2a95c3403bb1090665f4d56e6e1ed085a91e"; + sha256 = "0n1nfi1zbp70bjyik7s8mif2vwyadacikvasrdry0s3mnrx0hsnx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-grepint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-grepint"; sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf"; name = "helm-grepint"; }; @@ -25417,7 +25826,7 @@ sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-growthforecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-growthforecast"; sha256 = "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh"; name = "helm-growthforecast"; }; @@ -25438,8 +25847,8 @@ sha256 = "1hqmwbdcjssvvl7prdykhlgbfrf4qylkvqp0nnnxp8r1wy6h6aws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-gtags"; - sha256 = "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gtags"; + sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; packageRequires = [ emacs helm ]; @@ -25459,7 +25868,7 @@ sha256 = "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; @@ -25480,7 +25889,7 @@ sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; @@ -25501,7 +25910,7 @@ sha256 = "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-helm-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-helm-commands"; sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf"; name = "helm-helm-commands"; }; @@ -25522,7 +25931,7 @@ sha256 = "052hzybign54qawdm1fflsaz4bcwflycksv6wb1nw1jv79s2qbap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-hoogle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hoogle"; sha256 = "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw"; name = "helm-hoogle"; }; @@ -25543,7 +25952,7 @@ sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-idris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-idris"; sha256 = "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf"; name = "helm-idris"; }; @@ -25564,7 +25973,7 @@ sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-img"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-img"; sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q"; name = "helm-img"; }; @@ -25585,7 +25994,7 @@ sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-img-tiqav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-img-tiqav"; sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0"; name = "helm-img-tiqav"; }; @@ -25606,7 +26015,7 @@ sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; @@ -25627,7 +26036,7 @@ sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-itunes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-itunes"; sha256 = "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb"; name = "helm-itunes"; }; @@ -25648,7 +26057,7 @@ sha256 = "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-j-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-j-cheatsheet"; sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm"; name = "helm-j-cheatsheet"; }; @@ -25669,7 +26078,7 @@ sha256 = "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-jstack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-jstack"; sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz"; name = "helm-jstack"; }; @@ -25690,7 +26099,7 @@ sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; @@ -25711,7 +26120,7 @@ sha256 = "129mlpx5vqxyg2scrdiajxp71phxamrvijpc054k1q1an8vgn0kv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; @@ -25732,7 +26141,7 @@ sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; @@ -25748,11 +26157,11 @@ version = "20150717.239"; src = fetchsvn { url = "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el"; - rev = "145428"; + rev = "145939"; sha256 = "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ls-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-svn"; sha256 = "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d"; name = "helm-ls-svn"; }; @@ -25773,7 +26182,7 @@ sha256 = "05z1s01wgdj2s7qln42cg7nnjq0hmq2ji4xjldzj6w770a5nvb7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; @@ -25794,7 +26203,7 @@ sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; @@ -25815,7 +26224,7 @@ sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; @@ -25836,7 +26245,7 @@ sha256 = "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; @@ -25857,7 +26266,7 @@ sha256 = "0zcpdkh2ycmnv2nkv02khqp5r7za3x3vji2sj4nwz1wd86rrpbv5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-mu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mu"; sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2"; name = "helm-mu"; }; @@ -25874,11 +26283,11 @@ src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "6b1418611b49a6cf77380a76f7e6236bbb5df83a"; - sha256 = "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3"; + rev = "63061d379460c53abbe88ec695a61e22feae438f"; + sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; @@ -25899,8 +26308,8 @@ sha256 = "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-open-github"; - sha256 = "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-open-github"; + sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; packageRequires = [ cl-lib gh helm-core ]; @@ -25920,7 +26329,7 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; @@ -25941,7 +26350,7 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; @@ -25962,7 +26371,7 @@ sha256 = "0yngs3q6142g2nn1wwdaifylyfjjs3gmmy0jck5zh8mhmdgdqr06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; @@ -25983,8 +26392,8 @@ sha256 = "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-perldoc"; - sha256 = "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-perldoc"; + sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; packageRequires = [ cl-lib deferred helm-core ]; @@ -26004,7 +26413,7 @@ sha256 = "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; @@ -26025,7 +26434,7 @@ sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; @@ -26038,15 +26447,15 @@ helm-projectile = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-projectile"; - version = "20151220.421"; + version = "20160221.26"; src = fetchFromGitHub { owner = "bbatsov"; repo = "helm-projectile"; - rev = "2544343b4214511988fa1b652474d7984008f807"; - sha256 = "1c6pfy3qghpqnng1jsnxnvqnd6sq41f2dm7kkwkgml405asqlcqa"; + rev = "64880aad1828044db113c9f455c971bc90dea56b"; + sha256 = "1c4x1zidabysyi5cms93zn3naczhfagd8q4mvg9jkhd1z0lk19gc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-projectile"; sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a"; name = "helm-projectile"; }; @@ -26067,7 +26476,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-prosjekt"; sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm"; name = "helm-prosjekt"; }; @@ -26080,15 +26489,15 @@ helm-pt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-pt"; - version = "20151208.2130"; + version = "20160214.1742"; src = fetchFromGitHub { owner = "ralesi"; repo = "helm-pt"; - rev = "afdf50913c49b8bbb0ff40ee5d9dfe3eb8b7c71a"; - sha256 = "01wcybzb1jdyybr7scblzxp3c16zm01ms9ci1hcpfsv2y55gbg5y"; + rev = "8acc52911dad1ed0c3975f134a468762afe0b76b"; + sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; @@ -26098,6 +26507,27 @@ license = lib.licenses.free; }; }) {}; + helm-purpose = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, window-purpose }: + melpaBuild { + pname = "helm-purpose"; + version = "20160218.1209"; + src = fetchFromGitHub { + owner = "bmag"; + repo = "helm-purpose"; + rev = "de9e38c55b114cadeed60e70fc406f5181ff30d8"; + sha256 = "1lxknzjfhl6irrspynlkc1dp02s0byp94y4qp69gcl9sla9262ip"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-purpose"; + sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; + name = "helm-purpose"; + }; + packageRequires = [ emacs helm window-purpose ]; + meta = { + homepage = "http://melpa.org/#/helm-purpose"; + license = lib.licenses.free; + }; + }) {}; helm-pydoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-pydoc"; @@ -26109,8 +26539,8 @@ sha256 = "1hlbyw6jvh6pm3ivmhd6qvs9j7km322fki9g4yd4qw7w15a3wkyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-pydoc"; - sha256 = "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pydoc"; + sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; packageRequires = [ cl-lib helm-core ]; @@ -26130,7 +26560,7 @@ sha256 = "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rails"; sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6"; name = "helm-rails"; }; @@ -26151,7 +26581,7 @@ sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-rb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rb"; sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr"; name = "helm-rb"; }; @@ -26172,7 +26602,7 @@ sha256 = "0nbny1a41sy4w3k2irp7rh6663jhbssqqshxd3y82iq0hs9h2wda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; @@ -26193,7 +26623,7 @@ sha256 = "05mf0021jhr4zmysy28cgilkfxyp08qmkc20v9wlykksg73l2crk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-rhythmbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rhythmbox"; sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a"; name = "helm-rhythmbox"; }; @@ -26214,7 +26644,7 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; @@ -26235,7 +26665,7 @@ sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-rubygems-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rubygems-local"; sha256 = "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c"; name = "helm-rubygems-local"; }; @@ -26256,7 +26686,7 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; @@ -26277,7 +26707,7 @@ sha256 = "0qm5wlqklwf0y8grqhl2hfyfbkyj8200cdmbcf9cfr51lrh3cn8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-safari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-safari"; sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y"; name = "helm-safari"; }; @@ -26298,7 +26728,7 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; @@ -26319,7 +26749,7 @@ sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-sheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-sheet"; sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc"; name = "helm-sheet"; }; @@ -26340,7 +26770,7 @@ sha256 = "0sw7g1zcs1jfqcpprxwjq97lsk4qfngwamkj3q8jhm77zh7kfa3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; @@ -26361,7 +26791,7 @@ sha256 = "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-spotify"; sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf"; name = "helm-spotify"; }; @@ -26382,7 +26812,7 @@ sha256 = "0n7fma8zp6shyz814mxfljj8x23gcwnkrbghkmfjp87cr1zkmw41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; @@ -26403,8 +26833,8 @@ sha256 = "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-themes"; - sha256 = "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-themes"; + sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; packageRequires = [ helm-core ]; @@ -26424,7 +26854,7 @@ sha256 = "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; @@ -26445,7 +26875,7 @@ sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; @@ -26466,7 +26896,7 @@ sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-w3m"; sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz"; name = "helm-w3m"; }; @@ -26487,7 +26917,7 @@ sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-wordnet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-wordnet"; sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f"; name = "helm-wordnet"; }; @@ -26508,7 +26938,7 @@ sha256 = "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-words"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-words"; sha256 = "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76"; name = "helm-words"; }; @@ -26529,7 +26959,7 @@ sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-xcdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-xcdoc"; sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v"; name = "helm-xcdoc"; }; @@ -26550,7 +26980,7 @@ sha256 = "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; @@ -26568,7 +26998,7 @@ sha256 = "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/help-fns+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/help-fns+"; sha256 = "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia"; name = "help-fns-plus"; }; @@ -26586,7 +27016,7 @@ sha256 = "0qmf81maq6yvs68b8vlbxwkjk72qldamq75znrma9mhvlv8igrgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/help-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/help-mode+"; sha256 = "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra"; name = "help-mode-plus"; }; @@ -26604,7 +27034,7 @@ sha256 = "1r7kf9plnsjx87bhflsdh47wybvhis7gb10izqa1p6w0aqsg178s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/help+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/help+"; sha256 = "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi"; name = "help-plus"; }; @@ -26625,7 +27055,7 @@ sha256 = "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hemisu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hemisu-theme"; sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph"; name = "hemisu-theme"; }; @@ -26646,7 +27076,7 @@ sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/heroku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/heroku"; sha256 = "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy"; name = "heroku"; }; @@ -26667,7 +27097,7 @@ sha256 = "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/heroku-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/heroku-theme"; sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9"; name = "heroku-theme"; }; @@ -26685,7 +27115,7 @@ sha256 = "0rqjidjxa5j6rjknklfks743lczbq3qsyiranrf2z3ghzi0gf7fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hexrgb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hexrgb"; sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06"; name = "hexrgb"; }; @@ -26706,7 +27136,7 @@ sha256 = "06hm98aq87l91fhb2bqz8jw427k8fb280ygz5g44fy6sqc6js7v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hgignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hgignore-mode"; sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj"; name = "hgignore-mode"; }; @@ -26727,7 +27157,7 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; @@ -26745,7 +27175,7 @@ sha256 = "1l5jvgjgd0kzv1sn6h467fbnl487hma4h4pkwq4x1dhbc26yvfpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hide-comnt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hide-comnt"; sha256 = "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx"; name = "hide-comnt"; }; @@ -26763,7 +27193,7 @@ sha256 = "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hide-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hide-lines"; sha256 = "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q"; name = "hide-lines"; }; @@ -26781,7 +27211,7 @@ sha256 = "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hide-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hide-region"; sha256 = "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm"; name = "hide-region"; }; @@ -26802,7 +27232,7 @@ sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hideshow-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hideshow-org"; sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc"; name = "hideshow-org"; }; @@ -26820,7 +27250,7 @@ sha256 = "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hideshowvis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hideshowvis"; sha256 = "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f"; name = "hideshowvis"; }; @@ -26838,7 +27268,7 @@ sha256 = "15s4463damlszd5wqi22a6w25i8l0m5rvqdg73k3yp01i65jc29z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight"; sha256 = "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0"; name = "highlight"; }; @@ -26859,7 +27289,7 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; @@ -26877,7 +27307,7 @@ sha256 = "18y6cw43mhizccvwfydv6g2kz8w7vff0n3k9sq5ghwq3rb3z14b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-chars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-chars"; sha256 = "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0"; name = "highlight-chars"; }; @@ -26895,7 +27325,7 @@ sha256 = "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-cl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-cl"; sha256 = "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w"; name = "highlight-cl"; }; @@ -26914,7 +27344,7 @@ sha256 = "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-current-line"; sha256 = "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973"; name = "highlight-current-line"; }; @@ -26935,7 +27365,7 @@ sha256 = "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; @@ -26956,7 +27386,7 @@ sha256 = "0rs8zyjz5mh26n8bdxn6fmyw2809nihz1vp7ih59dq11lx3mf9az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-escape-sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-escape-sequences"; sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6"; name = "highlight-escape-sequences"; }; @@ -26977,7 +27407,7 @@ sha256 = "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-indent-guides"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-indent-guides"; sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm"; name = "highlight-indent-guides"; }; @@ -26998,7 +27428,7 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; @@ -27019,7 +27449,7 @@ sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-leading-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-leading-spaces"; sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p"; name = "highlight-leading-spaces"; }; @@ -27040,7 +27470,7 @@ sha256 = "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; @@ -27061,7 +27491,7 @@ sha256 = "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-parentheses"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-parentheses"; sha256 = "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k"; name = "highlight-parentheses"; }; @@ -27082,7 +27512,7 @@ sha256 = "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; @@ -27103,7 +27533,7 @@ sha256 = "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-stages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-stages"; sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4"; name = "highlight-stages"; }; @@ -27124,7 +27554,7 @@ sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; @@ -27142,7 +27572,7 @@ sha256 = "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-tail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-tail"; sha256 = "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws"; name = "highlight-tail"; }; @@ -27155,15 +27585,15 @@ highlight-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-thing"; - version = "20151001.221"; + version = "20160220.1842"; src = fetchFromGitHub { owner = "fgeller"; repo = "highlight-thing.el"; - rev = "eaf817d61d13fc97142996211222f8d54b48d3aa"; - sha256 = "01cx05dkrshcpddciiqvbfcc0zg0awbvg3r2n1v44kiixyfdpdwr"; + rev = "821f408c055838f1f245fc18c026889c300b198b"; + sha256 = "00s2nm0rfdgkpn2v9m36y0l42jyfah5hp5hd3bkwljgs99cp1ihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-thing"; sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1"; name = "highlight-thing"; }; @@ -27184,7 +27614,7 @@ sha256 = "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-unique-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-unique-symbol"; sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx"; name = "highlight-unique-symbol"; }; @@ -27205,7 +27635,7 @@ sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight2clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight2clipboard"; sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0"; name = "highlight2clipboard"; }; @@ -27226,7 +27656,7 @@ sha256 = "1phyaf6fwaxi2plq38m09cfb5ls401ay8jw0yf5rix8nyvm8nrn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; @@ -27244,7 +27674,7 @@ sha256 = "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hippie-exp-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-exp-ext"; sha256 = "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq"; name = "hippie-exp-ext"; }; @@ -27265,7 +27695,7 @@ sha256 = "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; @@ -27286,7 +27716,7 @@ sha256 = "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; @@ -27307,7 +27737,7 @@ sha256 = "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hipster-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hipster-theme"; sha256 = "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2"; name = "hipster-theme"; }; @@ -27328,7 +27758,7 @@ sha256 = "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; @@ -27349,7 +27779,7 @@ sha256 = "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; @@ -27370,7 +27800,7 @@ sha256 = "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hive"; sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya"; name = "hive"; }; @@ -27391,7 +27821,7 @@ sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hiwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hiwin"; sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g"; name = "hiwin"; }; @@ -27412,7 +27842,7 @@ sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-anything"; sha256 = "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k"; name = "hl-anything"; }; @@ -27430,7 +27860,7 @@ sha256 = "170sz6hjd85cw1x0y2g81ks3x3niib4f7y2xz6k8x0dpw357ggv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-defined"; sha256 = "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx"; name = "hl-defined"; }; @@ -27451,7 +27881,7 @@ sha256 = "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-indent"; sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr"; name = "hl-indent"; }; @@ -27469,7 +27899,7 @@ sha256 = "1kxq79pfs83gp12p2g093m6shsf25q88mi29bvhapxx77ahmxpkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-line+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-line+"; sha256 = "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix"; name = "hl-line-plus"; }; @@ -27490,7 +27920,7 @@ sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; @@ -27511,7 +27941,7 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; @@ -27529,7 +27959,7 @@ sha256 = "0m84d1rdsp9r5ip79jlrp69pf1daw0ch8c378q3kc328606i3p2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-spotlight"; sha256 = "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3"; name = "hl-spotlight"; }; @@ -27550,7 +27980,7 @@ sha256 = "0lwcvwnkbfpjw92k4qfj57nlhv8xbl614p5dfi8qy76y8bs71cvd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; @@ -27571,7 +28001,7 @@ sha256 = "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hlint-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hlint-refactor"; sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq"; name = "hlint-refactor"; }; @@ -27592,7 +28022,7 @@ sha256 = "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hlinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hlinum"; sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv"; name = "hlinum"; }; @@ -27612,7 +28042,7 @@ sha256 = "bf4056192044808554a5dfd537512ec939cbcf628a9becd61736d6409f7e7ce8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hoa-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hoa-mode"; sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv"; name = "hoa-mode"; }; @@ -27633,7 +28063,7 @@ sha256 = "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; @@ -27654,7 +28084,7 @@ sha256 = "1sj8pz48cilk8l6zn47fv1wkv833wrkvrf2mrmbdkvj3lqjrz0b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; @@ -27675,7 +28105,7 @@ sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; @@ -27696,7 +28126,7 @@ sha256 = "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hound"; sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v"; name = "hound"; }; @@ -27717,7 +28147,7 @@ sha256 = "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/how-many-lines-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/how-many-lines-in-project"; sha256 = "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd"; name = "how-many-lines-in-project"; }; @@ -27738,7 +28168,7 @@ sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/howdoi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/howdoi"; sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b"; name = "howdoi"; }; @@ -27759,7 +28189,7 @@ sha256 = "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; @@ -27780,7 +28210,7 @@ sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/html-check-frag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-check-frag"; sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a"; name = "html-check-frag"; }; @@ -27801,7 +28231,7 @@ sha256 = "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/html-script-src"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-script-src"; sha256 = "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j"; name = "html-script-src"; }; @@ -27822,7 +28252,7 @@ sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; @@ -27841,7 +28271,7 @@ sha256 = "8afaf87b30628afd8d376965247a6b2791129339ad7238c5529f4b173f908251"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/htmlize"; sha256 = "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp"; name = "htmlize"; }; @@ -27862,7 +28292,7 @@ sha256 = "1i0r677zwnl5xl64cqk47y0gfd87vw49nf6ry5v2imbc95ni56wc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/http"; sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm"; name = "http"; }; @@ -27880,7 +28310,7 @@ sha256 = "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/http-post-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/http-post-simple"; sha256 = "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf"; name = "http-post-simple"; }; @@ -27901,7 +28331,7 @@ sha256 = "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/http-twiddle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/http-twiddle"; sha256 = "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry"; name = "http-twiddle"; }; @@ -27922,7 +28352,7 @@ sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; @@ -27943,7 +28373,7 @@ sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; @@ -27964,7 +28394,7 @@ sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hungry-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hungry-delete"; sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; name = "hungry-delete"; }; @@ -27985,7 +28415,7 @@ sha256 = "16z43mpj839bzafhyzpcbw6bmv4ckrf9ryslvg6z6q4g93k64q2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hy-mode"; sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m"; name = "hy-mode"; }; @@ -27998,15 +28428,15 @@ hyai = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hyai"; - version = "20151218.610"; + version = "20160216.825"; src = fetchFromGitHub { owner = "iquiw"; repo = "hyai"; - rev = "9c229e6bbccb8481b3889643d02de9869956875c"; - sha256 = "0d3kdpwzr1gs0q986pkj8b9av9knzbh1ax9ybhn0k66hi55hn7bc"; + rev = "256c0e2a1a7188bce7ed808804a1f4216ff9db9d"; + sha256 = "1w490lcncl3zfm694x7xpi847527qkqmy0qkpzf72ak2zhywldj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; @@ -28027,7 +28457,7 @@ sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hydandata-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hydandata-light-theme"; sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60"; name = "hydandata-light-theme"; }; @@ -28048,7 +28478,7 @@ sha256 = "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; @@ -28069,7 +28499,7 @@ sha256 = "13ghz8mvnqn59m9alwcrxlml1k4cbw4a9wwwgf211ap4q618qjqs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; @@ -28090,7 +28520,7 @@ sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/i2b2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/i2b2-mode"; sha256 = "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf"; name = "i2b2-mode"; }; @@ -28111,7 +28541,7 @@ sha256 = "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iasm-mode"; sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv"; name = "iasm-mode"; }; @@ -28132,7 +28562,7 @@ sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-git"; sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z"; name = "ibuffer-git"; }; @@ -28153,7 +28583,7 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; @@ -28174,7 +28604,7 @@ sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-rcirc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-rcirc"; sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc"; name = "ibuffer-rcirc"; }; @@ -28195,7 +28625,7 @@ sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-tramp"; sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32"; name = "ibuffer-tramp"; }; @@ -28216,7 +28646,7 @@ sha256 = "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; @@ -28234,7 +28664,7 @@ sha256 = "16fsxw7w0l4dxgdi71q2izcki9ykqbjxaffsjh4k0zl7nxyyvv6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/icicles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/icicles"; sha256 = "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92"; name = "icicles"; }; @@ -28252,7 +28682,7 @@ sha256 = "0z7v4pj0m6pwrjzyzz2xmwf6a53kmka9hxlzd1dxcpzx47pyvz3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/icomplete+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/icomplete+"; sha256 = "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx"; name = "icomplete-plus"; }; @@ -28273,7 +28703,7 @@ sha256 = "0bzbp0vgnzvd1m3lhbcrxmknpi0cjisff6jd49f1nvkdx3p2ks40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/id-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/id-manager"; sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm"; name = "id-manager"; }; @@ -28286,15 +28716,15 @@ idea-darkula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idea-darkula-theme"; - version = "20160121.1540"; + version = "20160209.111"; src = fetchFromGitHub { owner = "fourier"; repo = "idea-darkula-theme"; - rev = "45c077eaa32e5784cb15b66d3b40c76ef642b2d6"; - sha256 = "08wr379dslh3sjg81p20vpqj218wgw0cf3lxn3n4cbzsy0hifh81"; + rev = "ecff87b3bad30243848edad57d3c43580b0f7dae"; + sha256 = "01irrj41rnbsmyny7vai01prwdkwh3ig1x5zmpmqa5spwq2lgack"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idea-darkula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idea-darkula-theme"; sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk"; name = "idea-darkula-theme"; }; @@ -28315,7 +28745,7 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; @@ -28336,7 +28766,7 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; @@ -28357,7 +28787,7 @@ sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idle-require"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idle-require"; sha256 = "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj"; name = "idle-require"; }; @@ -28378,7 +28808,7 @@ sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-at-point"; sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; name = "ido-at-point"; }; @@ -28399,7 +28829,7 @@ sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-clever-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-clever-match"; sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m"; name = "ido-clever-match"; }; @@ -28420,7 +28850,7 @@ sha256 = "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; @@ -28433,15 +28863,15 @@ ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-completing-read-plus"; - version = "20151219.1036"; + version = "20160220.1842"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; - rev = "78458a8bc3c3bffae933efb9fd7dfd04c481b3de"; - sha256 = "0aqx69pvpz4bdhzg3awjpd7xn3h34pygip75dqjwpd6jp350g8r0"; + rev = "a491b106d9da87bfe45121078563389a77f8788c"; + sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; @@ -28462,7 +28892,7 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; @@ -28483,7 +28913,7 @@ sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-exit-target"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-exit-target"; sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi"; name = "ido-exit-target"; }; @@ -28504,7 +28934,7 @@ sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-gnus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-gnus"; sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg"; name = "ido-gnus"; }; @@ -28525,7 +28955,7 @@ sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; @@ -28546,7 +28976,7 @@ sha256 = "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-hacks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-hacks"; sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0"; name = "ido-hacks"; }; @@ -28567,7 +28997,7 @@ sha256 = "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; @@ -28588,7 +29018,7 @@ sha256 = "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-migemo"; sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi"; name = "ido-migemo"; }; @@ -28609,7 +29039,7 @@ sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-occasional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-occasional"; sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2"; name = "ido-occasional"; }; @@ -28630,7 +29060,7 @@ sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; @@ -28651,7 +29081,7 @@ sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-select-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-select-window"; sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23"; name = "ido-select-window"; }; @@ -28672,7 +29102,7 @@ sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-skk"; sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw"; name = "ido-skk"; }; @@ -28693,7 +29123,7 @@ sha256 = "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-sort-mtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-sort-mtime"; sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2"; name = "ido-sort-mtime"; }; @@ -28714,7 +29144,7 @@ sha256 = "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-springboard"; sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv"; name = "ido-springboard"; }; @@ -28727,15 +29157,15 @@ ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-ubiquitous"; - version = "20160115.1826"; + version = "20160220.1842"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; - rev = "78458a8bc3c3bffae933efb9fd7dfd04c481b3de"; - sha256 = "0aqx69pvpz4bdhzg3awjpd7xn3h34pygip75dqjwpd6jp350g8r0"; + rev = "a491b106d9da87bfe45121078563389a77f8788c"; + sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; @@ -28756,7 +29186,7 @@ sha256 = "1vl87phswkciijq0j07lqlgmha5dmff8yd4j4jn7cfrkrdjp6jbx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; @@ -28766,22 +29196,22 @@ license = lib.licenses.free; }; }) {}; - ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-yes-or-no"; - version = "20140625.2306"; + version = "20160217.1817"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-yes-or-no"; - rev = "a9de5731b64f888be38073773c3d72b19c61ed4f"; - sha256 = "0zqjmi1pbvpby84g1nsrmwcv7w5k0nl3hmkqj0fvhdsmayxqc6j8"; + rev = "9ddee9e878ad62d58c9f4b3a7685f22b8e36e420"; + sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; - packageRequires = []; + packageRequires = [ ido-completing-read-plus ]; meta = { homepage = "http://melpa.org/#/ido-yes-or-no"; license = lib.licenses.free; @@ -28798,7 +29228,7 @@ sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; @@ -28819,7 +29249,7 @@ sha256 = "16gk7ry4yiaxk9dp6s2m4g79klw344yvr86d7hr0qdjkkf229m56"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; @@ -28840,7 +29270,7 @@ sha256 = "1k7h1795kaczmhd21hzqgns7blqc6zjh2xg4w3rj986ll8lb9fpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ids-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ids-edit"; sha256 = "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m"; name = "ids-edit"; }; @@ -28861,7 +29291,7 @@ sha256 = "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; @@ -28882,7 +29312,7 @@ sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ietf-docs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ietf-docs"; sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3"; name = "ietf-docs"; }; @@ -28903,7 +29333,7 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; @@ -28924,7 +29354,7 @@ sha256 = "161algqrrjbc1ja08416q5wzz34rrg6shr2sim7vba0j3svyggnf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; @@ -28942,7 +29372,7 @@ sha256 = "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/igrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/igrep"; sha256 = "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3"; name = "igrep"; }; @@ -28961,7 +29391,7 @@ sha256 = "cefc95ead9e5d425d3763f8d63afa10dea416493cafd7144f4d3cdeee0d0fa86"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/igv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/igv"; sha256 = "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z"; name = "igv"; }; @@ -28982,7 +29412,7 @@ sha256 = "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; @@ -29003,7 +29433,7 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; @@ -29024,7 +29454,7 @@ sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; @@ -29045,7 +29475,7 @@ sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imakado"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imakado"; sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3"; name = "imakado"; }; @@ -29058,15 +29488,15 @@ imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-anywhere"; - version = "20160131.412"; + version = "20160213.732"; src = fetchFromGitHub { owner = "vitoshka"; repo = "imenu-anywhere"; - rev = "15e080254b4a55e5613493583c9624feb3ef9b5d"; - sha256 = "15vh09d91l6r8zlyps1mg7i0pygdzqi8w01grk1ka25ak7378c2v"; + rev = "e2419b1558cecdbc8fe8a31806334b8ce2556622"; + sha256 = "0h4x8wbg6kp8iqhka0f5m67hxh3yd5kb95j12k30wbgqgabi01md"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenu-anywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-anywhere"; sha256 = "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8"; name = "imenu-anywhere"; }; @@ -29079,15 +29509,15 @@ imenu-list = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-list"; - version = "20160203.807"; + version = "20160211.541"; src = fetchFromGitHub { owner = "bmag"; repo = "imenu-list"; - rev = "ee4f38dc9d590808d627789102afe4b12c20f5e6"; - sha256 = "0ay008mivxyn23bncnc8qbs91w26i0ym7c57nd5z16kwg1gnh4a7"; + rev = "a68d596b437ce1c125d8bd5414467ca1ff55bdcc"; + sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; @@ -29105,7 +29535,7 @@ sha256 = "00w88d37mg2hdrzpw5cxrgqz5jbf7rylmir95hs8j1cm8fk787bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu+"; sha256 = "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d"; name = "imenu-plus"; }; @@ -29118,15 +29548,15 @@ imenus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenus"; - version = "20150107.1139"; + version = "20160219.458"; src = fetchFromGitHub { owner = "alezost"; repo = "imenus.el"; - rev = "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd"; - sha256 = "0wi346m05b18i14xxih4qvwdrfcgv30gdvxjjcn6vd7gr0wdk2ns"; + rev = "e492fcdcd2fa4c0fda0356ae6e23500514e544d3"; + sha256 = "1zg9rv9qpzxsc3r6gmbcyizx7jvhfdyn08dfgim3g382czbapfbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; @@ -29147,7 +29577,7 @@ sha256 = "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; @@ -29168,7 +29598,7 @@ sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imgur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imgur"; sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7"; name = "imgur"; }; @@ -29189,7 +29619,7 @@ sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; @@ -29210,7 +29640,7 @@ sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/impatient-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/impatient-mode"; sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg"; name = "impatient-mode"; }; @@ -29227,11 +29657,11 @@ src = fetchFromGitHub { owner = "trotzig"; repo = "import-js"; - rev = "00d5178c247fabe1574a5239f2b134942cfadbd6"; - sha256 = "1d79vvrxi0mxgr6wm3cjbqkgryh74jcjc1fkxpln8wyhjcddphzf"; + rev = "288fe97646d19a4185dad4a034752e6f79a23155"; + sha256 = "0210mxcbb470h6k1b0nny9jpa7bfy1c46v901gjlpzqxz41r0fiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/import-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-js"; sha256 = "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls"; name = "import-js"; }; @@ -29252,7 +29682,7 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; @@ -29273,7 +29703,7 @@ sha256 = "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/indent-guide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/indent-guide"; sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7"; name = "indent-guide"; }; @@ -29294,7 +29724,7 @@ sha256 = "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/indicators"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/indicators"; sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss"; name = "indicators"; }; @@ -29315,7 +29745,7 @@ sha256 = "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/indy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/indy"; sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7"; name = "indy"; }; @@ -29328,15 +29758,15 @@ inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-clojure"; - version = "20160201.1147"; + version = "20160206.1019"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "inf-clojure"; - rev = "a246bf3f6d286f7bcbc6dbc091e7c67876a3e8e8"; - sha256 = "18sg9lq6wxjk9jiyid9l67b5y4hwrljz1gh3w59rdy59f2fcmnav"; + rev = "3e7896a7cb467ce28e2d5eca6a8d6c2ad2335983"; + sha256 = "04ydxjh3wcs1qnack9f1sgq67chl9ihypplhj9i3shnj4zx1a6n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; @@ -29357,7 +29787,7 @@ sha256 = "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inf-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-mongo"; sha256 = "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh"; name = "inf-mongo"; }; @@ -29378,7 +29808,7 @@ sha256 = "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inf-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-php"; sha256 = "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d"; name = "inf-php"; }; @@ -29391,15 +29821,15 @@ inf-ruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-ruby"; - version = "20151104.1437"; + version = "20160221.610"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "inf-ruby"; - rev = "24c08fca2a18b76a3a200c79bdb5e41b50e04296"; - sha256 = "0rg7md4b8chqfh565l9dhsjyiiqrbhm2xcaf88h2zian2rp0p1wh"; + rev = "aad537f010a64e8123b610329fd09fedc82abb41"; + sha256 = "0r0gjv6wg60v6xc4a0zmyib07ac04h7vcwjbshjgjwybfvx98raj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; @@ -29420,7 +29850,7 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; @@ -29438,7 +29868,7 @@ sha256 = "068y1p44ynimxfrqgrrhrj4gldf661dr0kbc9p7dqm1mw928hxmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/info+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/info+"; sha256 = "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr"; name = "info-plus"; }; @@ -29458,7 +29888,7 @@ sha256 = "3c00805529518edba788671fed0c3e56810d1dbec2a0dbd3cb42f42991326ca6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inform7-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inform7-mode"; sha256 = "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171"; name = "inform7-mode"; }; @@ -29479,7 +29909,7 @@ sha256 = "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; @@ -29500,7 +29930,7 @@ sha256 = "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; @@ -29521,7 +29951,7 @@ sha256 = "1qvkxpxdv0n9qlzigvi25iw485824pgbpb10lwhh8bs2074dvrgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; @@ -29542,7 +29972,7 @@ sha256 = "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inkpot-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inkpot-theme"; sha256 = "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7"; name = "inkpot-theme"; }; @@ -29563,7 +29993,7 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; @@ -29584,7 +30014,7 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; @@ -29605,7 +30035,7 @@ sha256 = "1np3ih2bz9831p97rx5bssq78grjxj7f9241z372l6ggimrqhkbx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; @@ -29626,7 +30056,7 @@ sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/insfactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/insfactor"; sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn"; name = "insfactor"; }; @@ -29646,7 +30076,7 @@ sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; @@ -29667,7 +30097,7 @@ sha256 = "0jdm4xjzpl5dr5s8n2hhd5md6hfl6m6v10nwd1n54pb7bv98aqsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/interaction-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interaction-log"; sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j"; name = "interaction-log"; }; @@ -29680,15 +30110,15 @@ interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interleave"; - version = "20151120.835"; + version = "20160208.437"; src = fetchFromGitHub { owner = "rudolfochrist"; repo = "interleave"; - rev = "4b8ce53ee8ca075029ce88d203735256a875e516"; - sha256 = "13bsszx4rsq3awg6zgzfdwgflkldw38nihkc9nldfixzvw1gdqqv"; + rev = "6b28363eac939227c6cdc8a73a1d3ea5b002442d"; + sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; @@ -29709,7 +30139,7 @@ sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/interval-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interval-list"; sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf"; name = "interval-list"; }; @@ -29730,7 +30160,7 @@ sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/interval-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interval-tree"; sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9"; name = "interval-tree"; }; @@ -29751,7 +30181,7 @@ sha256 = "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/io-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/io-mode"; sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q"; name = "io-mode"; }; @@ -29772,7 +30202,7 @@ sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/io-mode-inf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/io-mode-inf"; sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc"; name = "io-mode-inf"; }; @@ -29793,7 +30223,7 @@ sha256 = "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ioccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ioccur"; sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6"; name = "ioccur"; }; @@ -29814,7 +30244,7 @@ sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iodine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iodine-theme"; sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj"; name = "iodine-theme"; }; @@ -29835,7 +30265,7 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; @@ -29856,7 +30286,7 @@ sha256 = "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ipretty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ipretty"; sha256 = "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4"; name = "ipretty"; }; @@ -29877,7 +30307,7 @@ sha256 = "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; @@ -29898,7 +30328,7 @@ sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iregister"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iregister"; sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm"; name = "iregister"; }; @@ -29916,7 +30346,7 @@ sha256 = "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/irfc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irfc"; sha256 = "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i"; name = "irfc"; }; @@ -29937,7 +30367,7 @@ sha256 = "11mwl22i4r9an992xprzyi24rc3ci3l13s461yjavkgl3nbnlf7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; @@ -29958,7 +30388,7 @@ sha256 = "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/irony-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irony-eldoc"; sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6"; name = "irony-eldoc"; }; @@ -29979,7 +30409,7 @@ sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isearch-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch-dabbrev"; sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x"; name = "isearch-dabbrev"; }; @@ -29991,13 +30421,13 @@ }) {}; isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-plus"; - version = "20160128.1005"; + version = "20160212.1523"; src = fetchurl { url = "http://www.emacswiki.org/emacs/download/isearch+.el"; - sha256 = "1l269vc92jxrw3snhjykxb28xdg672cj43q35lk61yg4fl2ny9bc"; + sha256 = "0rfvaz0fa458nk5lyb87vhaxpygbkh4wzfk9ynghp5778faqabgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isearch+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch+"; sha256 = "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r"; name = "isearch-plus"; }; @@ -30015,7 +30445,7 @@ sha256 = "1i1ypganr2ivwgi0vgjihgk1s4yglwj8nbqnqjiiwdywf8g5hcmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isearch-prop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch-prop"; sha256 = "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9"; name = "isearch-prop"; }; @@ -30036,7 +30466,7 @@ sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isearch-symbol-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch-symbol-at-point"; sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8"; name = "isearch-symbol-at-point"; }; @@ -30057,7 +30487,7 @@ sha256 = "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isend-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isend-mode"; sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv"; name = "isend-mode"; }; @@ -30078,7 +30508,7 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; @@ -30099,7 +30529,7 @@ sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iss-mode"; sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc"; name = "iss-mode"; }; @@ -30120,7 +30550,7 @@ sha256 = "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/itail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/itail"; sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7"; name = "itail"; }; @@ -30141,7 +30571,7 @@ sha256 = "08gagq74702x65dy75n2f53fsh806nppnidim9z6ycp8qw1ibyfp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iterator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iterator"; sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z"; name = "iterator"; }; @@ -30162,7 +30592,7 @@ sha256 = "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ivariants"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ivariants"; sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw"; name = "ivariants"; }; @@ -30183,7 +30613,7 @@ sha256 = "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ivs-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ivs-edit"; sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2"; name = "ivs-edit"; }; @@ -30204,7 +30634,7 @@ sha256 = "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; @@ -30222,7 +30652,7 @@ sha256 = "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iy-go-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iy-go-to-char"; sha256 = "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8"; name = "iy-go-to-char"; }; @@ -30243,7 +30673,7 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; @@ -30263,7 +30693,7 @@ sha256 = "994d5c2d917a2874c660ec30827d041ee1f1be55b4d8130cb7a780d60c90158d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; @@ -30284,7 +30714,7 @@ sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jabber-otr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jabber-otr"; sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0"; name = "jabber-otr"; }; @@ -30304,7 +30734,7 @@ sha256 = "7036a0eddf25a2274a6fd1584ff497d2b8078869fa6cc9d61504e6540ff863a8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jack-connect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jack-connect"; sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q"; name = "jack-connect"; }; @@ -30325,7 +30755,7 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; @@ -30346,7 +30776,7 @@ sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; @@ -30367,7 +30797,7 @@ sha256 = "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/japanese-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/japanese-holidays"; sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9"; name = "japanese-holidays"; }; @@ -30388,7 +30818,7 @@ sha256 = "1lrsm282lhp7pf0gwr3aad2228lvpqnqs1qdv2xk0zljqnqc0bhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; @@ -30409,7 +30839,7 @@ sha256 = "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jape-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jape-mode"; sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly"; name = "jape-mode"; }; @@ -30430,7 +30860,7 @@ sha256 = "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jar-manifest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jar-manifest-mode"; sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd"; name = "jar-manifest-mode"; }; @@ -30451,7 +30881,7 @@ sha256 = "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jasminejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jasminejs-mode"; sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52"; name = "jasminejs-mode"; }; @@ -30472,7 +30902,7 @@ sha256 = "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jaunte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jaunte"; sha256 = "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf"; name = "jaunte"; }; @@ -30493,7 +30923,7 @@ sha256 = "0d8r7pw6v2b3b6brspkpra7q7fmmjh6zm23gmnhdrk72f37fgzdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; @@ -30514,7 +30944,7 @@ sha256 = "09pa1hmk0dyh7vw0lb9awyrvdarakgaxn66gag5fzbg5vgdfz32i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/java-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/java-snippets"; sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp"; name = "java-snippets"; }; @@ -30527,15 +30957,15 @@ javadoc-lookup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "javadoc-lookup"; - version = "20151222.1310"; + version = "20160213.1831"; src = fetchFromGitHub { owner = "skeeto"; repo = "javadoc-lookup"; - rev = "0d5316407c9ec183040ca5c6ab71091b9444276f"; - sha256 = "0ljpqgp2w3lr61n2vr748n3wyshlqnnbin0643jffa319l99z35r"; + rev = "507a2dd443d60b537b8f779c1847e2cd0ccd1382"; + sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; @@ -30556,7 +30986,7 @@ sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/javap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/javap-mode"; sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay"; name = "javap-mode"; }; @@ -30577,7 +31007,7 @@ sha256 = "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jaword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jaword"; sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d"; name = "jaword"; }; @@ -30598,7 +31028,7 @@ sha256 = "00havgs6xc44plnr3vbs13xxiwygr93izm6nx4y98zhcv389ajb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jazz-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jazz-theme"; sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g"; name = "jazz-theme"; }; @@ -30611,15 +31041,15 @@ jbeans-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jbeans-theme"; - version = "20151217.954"; + version = "20160218.1012"; src = fetchFromGitHub { owner = "synic"; repo = "jbeans-emacs"; - rev = "282f4236b11d42b2927f18b4e0b458bf61550867"; - sha256 = "0yx64jrq1br0aylfn4mm26f71gyyw6kad97kv40sb0ashm3di96h"; + rev = "25007aa6c241b8891a5609cc05d29e94442f7934"; + sha256 = "0mmvq3kp90fllj3ix0iqbnmpfmzr1ykhpz5q066930kjlgz25nvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jbeans-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jbeans-theme"; sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl"; name = "jbeans-theme"; }; @@ -30632,15 +31062,15 @@ jdee = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jdee"; - version = "20160130.1630"; + version = "20160207.228"; src = fetchFromGitHub { owner = "jdee-emacs"; repo = "jdee"; - rev = "d676043d9b25af39961ceec4428bbada52922b64"; - sha256 = "0kxqdz8w7lyvl8nyba3c7m0l6nncraml3yyzn250mfbsvbijn1hd"; + rev = "0296ef1c25c0d75ed5ac1bb951e0d82d1a85c05e"; + sha256 = "04l2p1lhg88jhnsi1v4a5rqra6fkwbhnyk2vc94j7j6gzzzxg71l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jdee"; sha256 = "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3"; name = "jdee"; }; @@ -30657,11 +31087,11 @@ src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; - rev = "8da022c8cda511428c72a6dc4c5be3c0a0c88584"; - sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; + rev = "e6b0139cba46bd4e53afaf044bc84c618b8afb38"; + sha256 = "1zh7jbks0c6swzdm0wwxv4bbpvh15ab7bgs0w7ca1dnlvm07ybjm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; @@ -30678,11 +31108,11 @@ src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; - rev = "8da022c8cda511428c72a6dc4c5be3c0a0c88584"; - sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; + rev = "e6b0139cba46bd4e53afaf044bc84c618b8afb38"; + sha256 = "1zh7jbks0c6swzdm0wwxv4bbpvh15ab7bgs0w7ca1dnlvm07ybjm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; @@ -30703,7 +31133,7 @@ sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jedi-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi-direx"; sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1"; name = "jedi-direx"; }; @@ -30724,7 +31154,7 @@ sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jekyll-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jekyll-modes"; sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si"; name = "jekyll-modes"; }; @@ -30745,7 +31175,7 @@ sha256 = "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jenkins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jenkins"; sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s"; name = "jenkins"; }; @@ -30766,7 +31196,7 @@ sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jenkins-watch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jenkins-watch"; sha256 = "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m"; name = "jenkins-watch"; }; @@ -30779,14 +31209,14 @@ jg-quicknav = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "jg-quicknav"; - version = "20150217.2028"; + version = "20160216.2235"; src = fetchgit { url = "https://github.com/jeffgran/jg-quicknav"; - rev = "67293fdbbb0c6afe2528ec6c03dc54eaa59a2c98"; - sha256 = "a7aa00b03d474549a25faec9ae0394f9d1065c05049268dea507409f84c801a1"; + rev = "1b598ee3d691b68dc64f1727a959eab538893d07"; + sha256 = "e442217463a1aa1ed4f05415a56d7d36617acfcab85e385b62e28ead06aa9c98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jg-quicknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jg-quicknav"; sha256 = "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3"; name = "jg-quicknav"; }; @@ -30807,7 +31237,7 @@ sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jinja2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jinja2-mode"; sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx"; name = "jinja2-mode"; }; @@ -30825,7 +31255,7 @@ sha256 = "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jira"; sha256 = "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6"; name = "jira"; }; @@ -30846,7 +31276,7 @@ sha256 = "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jira-markup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jira-markup-mode"; sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp"; name = "jira-markup-mode"; }; @@ -30867,7 +31297,7 @@ sha256 = "0mh7990zqrprsa1g9jzpqm666pynlqd2nh9z236zyzykf8d8il8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jist"; sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar"; name = "jist"; }; @@ -30888,7 +31318,7 @@ sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jknav"; sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089"; name = "jknav"; }; @@ -30909,7 +31339,7 @@ sha256 = "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jonprl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jonprl-mode"; sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z"; name = "jonprl-mode"; }; @@ -30922,15 +31352,15 @@ jq-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jq-mode"; - version = "20151030.651"; + version = "20160217.1831"; src = fetchFromGitHub { owner = "ljos"; repo = "jq-mode"; - rev = "305ead8f087b1b817291d5f0365e5226199ec58c"; - sha256 = "014qfzl0qc23pa9w9f3v4yi80jr7nxpd0pz6d615x5mq3zi6l0gp"; + rev = "7f03354a4c1e26796482c39ce543d1d1f075a18d"; + sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; @@ -30951,7 +31381,7 @@ sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jquery-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jquery-doc"; sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj"; name = "jquery-doc"; }; @@ -30964,15 +31394,15 @@ js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nvm }: melpaBuild { pname = "js-comint"; - version = "20151126.2038"; + version = "20160220.550"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "js-comint"; - rev = "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73"; - sha256 = "0hh49j4ngnw7zkp31nm7bckkic3ya3xwzrsz4ksj2ws4fyjkqc9v"; + rev = "c4114b41db94ef17720b67cb2b714d670f453cc4"; + sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; @@ -30985,15 +31415,15 @@ js-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js-doc"; - version = "20131215.719"; + version = "20160208.1907"; src = fetchFromGitHub { owner = "mooz"; repo = "js-doc"; - rev = "cf9b5292b7fca655bafb87bd55662edcf842d5b6"; - sha256 = "1d2jy71iw1v7l0jrvszmr3qdls5mak6kjvyvk0n9895z87lhgm8g"; + rev = "c844eb75e3acff0aea035ba41727e036d81ccd29"; + sha256 = "12kwjkhw5x6jb79m49gbypb6br482bpi73788h71lgl5i3g95s5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js-doc"; sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk"; name = "js-doc"; }; @@ -31014,7 +31444,7 @@ sha256 = "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; @@ -31035,7 +31465,7 @@ sha256 = "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; @@ -31056,7 +31486,7 @@ sha256 = "09hwxh353w6wk47sqx871fn59la7kncqlskxdrz316jyps6kj890"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; @@ -31077,7 +31507,7 @@ sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; @@ -31098,7 +31528,7 @@ sha256 = "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; @@ -31119,7 +31549,7 @@ sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jscs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jscs"; sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv"; name = "jscs"; }; @@ -31140,7 +31570,7 @@ sha256 = "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; @@ -31161,7 +31591,7 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; @@ -31174,15 +31604,15 @@ json-reformat = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-reformat"; - version = "20151204.1100"; + version = "20160212.253"; src = fetchFromGitHub { owner = "gongo"; repo = "json-reformat"; - rev = "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716"; - sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"; + rev = "24c2bf3c41897b5cf1398dcaedfec88526308bf4"; + sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; @@ -31203,7 +31633,7 @@ sha256 = "0xgrb0zfxyfmfnvx1l7ca99lzl6f2qyal798rcra45167c0j0vbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-rpc"; sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k"; name = "json-rpc"; }; @@ -31224,7 +31654,7 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; @@ -31245,7 +31675,7 @@ sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jss"; sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k"; name = "jss"; }; @@ -31266,7 +31696,7 @@ sha256 = "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jst"; sha256 = "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i"; name = "jst"; }; @@ -31287,7 +31717,7 @@ sha256 = "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; @@ -31299,14 +31729,14 @@ }) {}; jtags = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jtags"; - version = "20160119.1503"; + version = "20160211.1429"; src = fetchgit { url = "git://git.code.sf.net/p/jtags/code"; - rev = "46ff683a3b452729364d9f2fcb86b3f020d9baac"; - sha256 = "96d9335e9baa6d466447a79219c955b71a9eb1e800d1e1311d9bf72dafcc358d"; + rev = "b50daa48510f71e74ce0ec2eb85030896a79cf96"; + sha256 = "1eedc86541cc3dcb0b0d0c6acc7ddf8b4755c757addb6eacbe33811058f2850f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jtags"; sha256 = "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r"; name = "jtags"; }; @@ -31319,15 +31749,15 @@ julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "julia-mode"; - version = "20150912.1000"; + version = "20160219.1903"; src = fetchFromGitHub { owner = "JuliaLang"; repo = "julia"; - rev = "baf336ff1940c355a9b66805330b7623a6b910f0"; - sha256 = "0z78bppjl3d0qcc1vxh66gi3if35n35bh61569hr1hhyc0x8pzpq"; + rev = "772d903709276ef83fe01df9ef17aec70311036f"; + sha256 = "1d04y5dildjc1zw0i33n0kfds776b2632y2m9layqhm58fiby9d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/julia-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/julia-mode"; sha256 = "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm"; name = "julia-mode"; }; @@ -31348,7 +31778,7 @@ sha256 = "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/julia-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/julia-shell"; sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410"; name = "julia-shell"; }; @@ -31369,7 +31799,7 @@ sha256 = "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jumblr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jumblr"; sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp"; name = "jumblr"; }; @@ -31390,7 +31820,7 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; @@ -31411,7 +31841,7 @@ sha256 = "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jump-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump-char"; sha256 = "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n"; name = "jump-char"; }; @@ -31432,7 +31862,7 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; @@ -31453,7 +31883,7 @@ sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jumplist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jumplist"; sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf"; name = "jumplist"; }; @@ -31474,7 +31904,7 @@ sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; @@ -31495,7 +31925,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; @@ -31516,7 +31946,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; @@ -31537,7 +31967,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; @@ -31558,7 +31988,7 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; @@ -31577,7 +32007,7 @@ sha256 = "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kanban"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kanban"; sha256 = "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb"; name = "kanban"; }; @@ -31598,7 +32028,7 @@ sha256 = "0vfagfzhh4rkmvjzfhfcm7w3z1x31aqzxwigk5yw9scnfb77pinz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kanji-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kanji-mode"; sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5"; name = "kanji-mode"; }; @@ -31611,15 +32041,15 @@ kaomoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "kaomoji"; - version = "20160119.943"; + version = "20160218.220"; src = fetchFromGitHub { owner = "kuanyui"; repo = "kaomoji.el"; - rev = "ffe8890019bb22eac586f42c7c7a184a243c8ba0"; - sha256 = "1z35gk58jwynygyq1n3c9cb7xgqp5bmbsgq2j3bb43cagc55xixh"; + rev = "cde86e7f27008dbe03230d63941a0f5bd0512c10"; + sha256 = "0vqjbv3pqlbyibqylfsqqjzkvjhdg01hlxszfblpg72fziyzcci5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaomoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaomoji"; sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1"; name = "kaomoji"; }; @@ -31632,15 +32062,15 @@ karma = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "karma"; - version = "20150120.2358"; + version = "20160220.645"; src = fetchFromGitHub { owner = "tonini"; repo = "karma.el"; - rev = "34952d4b5288d4b09a9f65b32ee8cb5f65926fe9"; - sha256 = "03wdi0zwnsb42rbrlrck553mgn9vgnd896d5xpiqf1ik4z4cf10z"; + rev = "31d3e7708246183d7ed0686be92bf23140af348c"; + sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; @@ -31661,7 +32091,7 @@ sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kerl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kerl"; sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss"; name = "kerl"; }; @@ -31679,7 +32109,7 @@ sha256 = "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-chord"; sha256 = "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an"; name = "key-chord"; }; @@ -31700,7 +32130,7 @@ sha256 = "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; @@ -31721,7 +32151,7 @@ sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-intercept"; sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16"; name = "key-intercept"; }; @@ -31742,7 +32172,7 @@ sha256 = "14xk0crl25alcckkcg0wx7gwb65hmicfn01db1zip8swk249g9w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-leap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-leap"; sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj"; name = "key-leap"; }; @@ -31763,7 +32193,7 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; @@ -31784,7 +32214,7 @@ sha256 = "0xm7vybqgglacm0xz6fa7ipfvsx14qqws629gi9i16maxn3by9ci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; @@ -31805,7 +32235,7 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; @@ -31826,7 +32256,7 @@ sha256 = "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; @@ -31839,15 +32269,15 @@ keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keymap-utils"; - version = "20151030.526"; + version = "20151128.844"; src = fetchFromGitHub { owner = "tarsius"; repo = "keymap-utils"; - rev = "f9164e23dbc58c4fdce635138ed59fe2eb285313"; - sha256 = "18kc48glbwy9njw863fzlrgc4g0a65s5wf2iarfsjqcynad7r4c7"; + rev = "d5d09bc13cecbe334747be23112c99c4ba9f19c7"; + sha256 = "07x52cybb0m94wgbi0rw2ldx9zg1i6l309gfmi9c199g1zj4wsh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; @@ -31864,11 +32294,11 @@ src = fetchFromGitHub { owner = "HKey"; repo = "keyset"; - rev = "0a186c3316fda5baa72ae1fdf50c31e00761cc21"; - sha256 = "1kkp3frsk644djmdwxq3l1m88690gch3g8pijlzv566xrwkd903j"; + rev = "41bbfc4dbed5de6ecf3ec1dba634c7c26241ca84"; + sha256 = "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; @@ -31889,7 +32319,7 @@ sha256 = "0zw4klp9ifb6yylr9yab3p3vjv18as6clpg2i3w4r2xah9chxgqq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keyword-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyword-search"; sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa"; name = "keyword-search"; }; @@ -31910,7 +32340,7 @@ sha256 = "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kfg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kfg"; sha256 = "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs"; name = "kfg"; }; @@ -31931,7 +32361,7 @@ sha256 = "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; @@ -31952,7 +32382,7 @@ sha256 = "0a2jmk4wryngs56rqh6sxiyk5yh25l2qvping86yipic2wia17n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; @@ -31973,7 +32403,7 @@ sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; @@ -31994,7 +32424,7 @@ sha256 = "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; @@ -32015,7 +32445,7 @@ sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kite"; sha256 = "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m"; name = "kite"; }; @@ -32036,7 +32466,7 @@ sha256 = "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kite-mini"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kite-mini"; sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh"; name = "kite-mini"; }; @@ -32053,11 +32483,11 @@ src = fetchFromGitHub { owner = "kivy"; repo = "kivy"; - rev = "41cb82ab0dd480452139e20d61e264c40e37813f"; - sha256 = "0vdl0bkgvb0fjja50yffv8izvh0fa2r7bdrcn9qzf5jild49n8m7"; + rev = "546e8857b427de32e95cfd15b5ffdc230e5edeea"; + sha256 = "0hd48iii48bi0nrpy0qz5713m0rlgcla42708m8znhzw69myvbna"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; @@ -32078,7 +32508,7 @@ sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kixtart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kixtart-mode"; sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp"; name = "kixtart-mode"; }; @@ -32091,15 +32521,15 @@ know-your-http-well = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "know-your-http-well"; - version = "20151220.813"; + version = "20160208.1704"; src = fetchFromGitHub { owner = "for-GET"; repo = "know-your-http-well"; - rev = "d72da09014d44f67b1c6283e4391643b7f311e92"; - sha256 = "19x08gjqzghxwdrvadjmb8kqm4cszla65nk3ihk2y60riksz9hbs"; + rev = "c381a9735f3ea86ebc9667e35cdfeab0b67fefb7"; + sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; @@ -32120,7 +32550,7 @@ sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kolon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kolon-mode"; sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3"; name = "kolon-mode"; }; @@ -32133,15 +32563,15 @@ kooten-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kooten-theme"; - version = "20151228.1026"; + version = "20160214.651"; src = fetchFromGitHub { owner = "kootenpv"; repo = "emacs-kooten-theme"; - rev = "d35f58beece81008fa647a4b8a2cb70a3077fc91"; - sha256 = "1ly55ldf2maf8qfpnsqzn0rbz9cz1f08ak9rr3zijaip3zvlm9q9"; + rev = "7caf9e31219281a7c5a2a7b60404d9c18460de4b"; + sha256 = "02217kskgy82dnq3cqrss8hf355aypfm1dxx6ijv6s855kww2zjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kooten-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kooten-theme"; sha256 = "1kkk8nl1xykc4c487icmjrc2xsv8i4s2r5h5gbcpyrk2myqi4179"; name = "kooten-theme"; }; @@ -32162,7 +32592,7 @@ sha256 = "1m9hixlclynph2i5q18miq077dyvhx14pfzgawrwj82j1kslz50x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kpm-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kpm-list"; sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0"; name = "kpm-list"; }; @@ -32183,7 +32613,7 @@ sha256 = "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kroman"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kroman"; sha256 = "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7"; name = "kroman"; }; @@ -32204,7 +32634,7 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; @@ -32225,7 +32655,7 @@ sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kv"; sha256 = "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb"; name = "kv"; }; @@ -32246,7 +32676,7 @@ sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kwin"; sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki"; name = "kwin"; }; @@ -32264,7 +32694,7 @@ sha256 = "01vs0v17l76zwyrblf9c6x0xg5fagd4qv8pr1fwfw7kl64hb9aa2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lacarte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lacarte"; sha256 = "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9"; name = "lacarte"; }; @@ -32285,7 +32715,7 @@ sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lang-refactor-perl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lang-refactor-perl"; sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9"; name = "lang-refactor-perl"; }; @@ -32306,7 +32736,7 @@ sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/langdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/langdoc"; sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7"; name = "langdoc"; }; @@ -32327,7 +32757,7 @@ sha256 = "1rj0j4vxfwss0w6bwh591w5mbyzjg5rkbwyjaphyi6p7wq5w6np1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; @@ -32348,7 +32778,7 @@ sha256 = "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latest-clojure-libraries"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latest-clojure-libraries"; sha256 = "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5"; name = "latest-clojure-libraries"; }; @@ -32361,15 +32791,15 @@ latex-extra = callPackage ({ auctex, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-extra"; - version = "20160103.1607"; + version = "20160209.945"; src = fetchFromGitHub { owner = "Malabarba"; repo = "latex-extra"; - rev = "72fc297ffda2041acb20db2d9daf12276789f3f3"; - sha256 = "17dp23ggd380fln3g5djs7gwx9z3ixbkn51zfccbh4s5549krl5y"; + rev = "efb76e4bfb3282da2dcefb8e9a472f0021ab7c61"; + sha256 = "04dz7ab0bxg5j3s5qh7jdidg1x8jvy9hdp2xkm6irblxhsh64dsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; @@ -32390,7 +32820,7 @@ sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; @@ -32410,7 +32840,7 @@ sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latex-pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-pretty-symbols"; sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl"; name = "latex-pretty-symbols"; }; @@ -32431,7 +32861,7 @@ sha256 = "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latex-preview-pane"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-preview-pane"; sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw"; name = "latex-preview-pane"; }; @@ -32441,6 +32871,27 @@ license = lib.licenses.free; }; }) {}; + latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "latex-unicode-math-mode"; + version = "20160209.1117"; + src = fetchFromGitHub { + owner = "Christoph-D"; + repo = "latex-unicode-math-mode"; + rev = "71da85b55870aa870be722ced9d1f7df54b17f97"; + sha256 = "165qhh6cfrr24yg0qvpq4vk64a70z30nchkbbhhwg4f6ib7v5f5h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-unicode-math-mode"; + sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; + name = "latex-unicode-math-mode"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/latex-unicode-math-mode"; + license = lib.licenses.free; + }; + }) {}; launch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "launch"; @@ -32452,7 +32903,7 @@ sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/launch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/launch"; sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6"; name = "launch"; }; @@ -32473,7 +32924,7 @@ sha256 = "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/launchctl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/launchctl"; sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9"; name = "launchctl"; }; @@ -32494,7 +32945,7 @@ sha256 = "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lavender-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lavender-theme"; sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1"; name = "lavender-theme"; }; @@ -32515,7 +32966,7 @@ sha256 = "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ldap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ldap-mode"; sha256 = "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq"; name = "ldap-mode"; }; @@ -32532,11 +32983,11 @@ src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; - rev = "9b49ade03a3e5d9089ee031bdf733004cee8a36e"; - sha256 = "0cp5ywmk48sd7c8s8d5a0sv0ng4fl0hybss2z8fwhw6z47iypzmi"; + rev = "b7f84d69001f75a18807772dee514f5918e3a926"; + sha256 = "0vm32jv36s6kprmqbij5rpjg9djj3qsla4gpbpm8nycfg73bgylw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; @@ -32557,7 +33008,7 @@ sha256 = "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/leerzeichen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/leerzeichen"; sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp"; name = "leerzeichen"; }; @@ -32575,7 +33026,7 @@ sha256 = "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/legalese"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/legalese"; sha256 = "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz"; name = "legalese"; }; @@ -32596,7 +33047,7 @@ sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lemon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lemon-mode"; sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5"; name = "lemon-mode"; }; @@ -32617,7 +33068,7 @@ sha256 = "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lenlen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lenlen-theme"; sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9"; name = "lenlen-theme"; }; @@ -32638,7 +33089,7 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; @@ -32659,7 +33110,7 @@ sha256 = "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lentic-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lentic-server"; sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56"; name = "lentic-server"; }; @@ -32680,7 +33131,7 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; @@ -32701,7 +33152,7 @@ sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; @@ -32714,15 +33165,15 @@ leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "leuven-theme"; - version = "20160115.942"; + version = "20160207.1243"; src = fetchFromGitHub { owner = "fniessen"; repo = "emacs-leuven-theme"; - rev = "991c573ede413fa416cb365d903d1ddf512ade55"; - sha256 = "088ijndcyfi5jai8x2pd9cbh7x9r41nbimw20hz71n9izy2xnjl0"; + rev = "ea5c7891573f9fefe937801b3e6365218893958d"; + sha256 = "15qixxvg0az3z8q8plrwyind40acr1wv392q81vlad0ngvl81v4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/leuven-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/leuven-theme"; sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a"; name = "leuven-theme"; }; @@ -32740,7 +33191,7 @@ sha256 = "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/levenshtein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/levenshtein"; sha256 = "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2"; name = "levenshtein"; }; @@ -32761,7 +33212,7 @@ sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lexbind-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lexbind-mode"; sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl"; name = "lexbind-mode"; }; @@ -32778,11 +33229,11 @@ src = fetchFromGitHub { owner = "rvirding"; repo = "lfe"; - rev = "f6867fcab654e86e42e1d27d5b68c47597a5ed21"; - sha256 = "1h0nzdnd698scn4hl6i3j5d0l51vgkf1y9q5prar0rj5n1sjd3vc"; + rev = "f0c613e6ebe9cd185782de224dfb5c1f261403cc"; + sha256 = "0bqqgjzx8wj9sbdc146crmmskm9jmnmbp858kd67bnzdhpw3jf6k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lfe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lfe-mode"; sha256 = "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx"; name = "lfe-mode"; }; @@ -32800,7 +33251,7 @@ sha256 = "077cy2clllrvabw44wb1pzcqz97r3y92j7cb9lnhd9pix0wpcq6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lib-requires"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lib-requires"; sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx"; name = "lib-requires"; }; @@ -32821,7 +33272,7 @@ sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/libmpdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/libmpdee"; sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0"; name = "libmpdee"; }; @@ -32842,7 +33293,7 @@ sha256 = "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; @@ -32863,7 +33314,7 @@ sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/light-soap-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/light-soap-theme"; sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk"; name = "light-soap-theme"; }; @@ -32884,7 +33335,7 @@ sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; @@ -32905,7 +33356,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; @@ -32926,7 +33377,7 @@ sha256 = "1glwsc1a3nhw7xwqlf1pgswgnwkvfy2a6a0k0lxshdajxiayyh7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; @@ -32947,7 +33398,7 @@ sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/linphone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linphone"; sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7"; name = "linphone"; }; @@ -32960,15 +33411,15 @@ linum-off = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linum-off"; - version = "20130419.2254"; + version = "20160217.1537"; src = fetchFromGitHub { owner = "mattfidler"; repo = "linum-off"; - rev = "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca"; - sha256 = "0x0k4m7nan2klvrhyzqvgpqnw99fq805hvipnrp2j755x7sv92g5"; + rev = "116e66ac259b183e0763b85616888316ab196822"; + sha256 = "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/linum-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linum-off"; sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay"; name = "linum-off"; }; @@ -32989,7 +33440,7 @@ sha256 = "01r8vbblpqfyfafmgbcw02f371j6c2g940bwmvi54rmjf9kjd6h7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; @@ -33010,7 +33461,7 @@ sha256 = "1r2yhjfby4mibbr7d14m1rifchdy7bvwy50xz2wx4004zqhjmnjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lisp-extra-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lisp-extra-font-lock"; sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk"; name = "lisp-extra-font-lock"; }; @@ -33028,7 +33479,7 @@ sha256 = "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lispxmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispxmp"; sha256 = "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4"; name = "lispxmp"; }; @@ -33041,15 +33492,15 @@ lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper }: melpaBuild { pname = "lispy"; - version = "20160202.1340"; + version = "20160218.432"; src = fetchFromGitHub { owner = "abo-abo"; repo = "lispy"; - rev = "37999ed32e2bd32f417cc84f9109795fcf1cb72a"; - sha256 = "1ajymlhx3f2q132vzczgynwf2fyxbm8sbqcg62bpk9iii6ddxql3"; + rev = "91c05e6bfb7dbabfee08be9dbe3ad32e86aae1e3"; + sha256 = "1gi6f1kpjjj5ik4fxmycj53lk7j4ppmv7jrwhwfn97nj4p5kd43s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -33070,7 +33521,7 @@ sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; @@ -33091,7 +33542,7 @@ sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-environment"; sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h"; name = "list-environment"; }; @@ -33112,7 +33563,7 @@ sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; @@ -33131,7 +33582,7 @@ sha256 = "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-processes+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-processes+"; sha256 = "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky"; name = "list-processes-plus"; }; @@ -33149,7 +33600,7 @@ sha256 = "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-register"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-register"; sha256 = "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4"; name = "list-register"; }; @@ -33170,7 +33621,7 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; @@ -33191,7 +33642,7 @@ sha256 = "0b6pnkhm5hnim2lpari93la08ic8qyh4nv0d7mw0cyfyk8phzzvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; @@ -33212,7 +33663,7 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; @@ -33233,7 +33684,7 @@ sha256 = "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/litable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/litable"; sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji"; name = "litable"; }; @@ -33254,7 +33705,7 @@ sha256 = "1pxcm4dxb0mggjzcv6r0a34qwq6jyih1afplysh01wk5p3nqlpyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/litecoin-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/litecoin-ticker"; sha256 = "14gak0av8wljmyq9lcf44dc2bvlfjb86filanqh0wkf2swpbdw85"; name = "litecoin-ticker"; }; @@ -33275,7 +33726,7 @@ sha256 = "1wxysnsigjw40ykdwngg0gqfaag0dx6zg029i2zx25kl3gr1lflc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; @@ -33296,7 +33747,7 @@ sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/literate-starter-kit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/literate-starter-kit"; sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy"; name = "literate-starter-kit"; }; @@ -33317,7 +33768,7 @@ sha256 = "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; @@ -33330,15 +33781,15 @@ live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "20160204.1323"; + version = "20160204.1914"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "5ebfc696dc4fa3812d934f8ce8f047717053feea"; - sha256 = "1k7r1cc9hwjdid88hi4l325bwvfdclqxrkw2pm0605l3jpa9jqpy"; + rev = "185babbba069742f81ec39cc0fb3fb542b457921"; + sha256 = "1w3598ivxcffqfa8147sp3if5scnx3w88a5syf49afvfca2hvd0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; @@ -33356,7 +33807,7 @@ sha256 = "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lively"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lively"; sha256 = "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7"; name = "lively"; }; @@ -33377,7 +33828,7 @@ sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/livescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/livescript-mode"; sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj"; name = "livescript-mode"; }; @@ -33398,7 +33849,7 @@ sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/livid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/livid-mode"; sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d"; name = "livid-mode"; }; @@ -33439,7 +33890,7 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/load-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/load-theme-buffer-local"; sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4"; name = "load-theme-buffer-local"; }; @@ -33460,7 +33911,7 @@ sha256 = "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; @@ -33481,7 +33932,7 @@ sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/loccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loccur"; sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h"; name = "loccur"; }; @@ -33502,7 +33953,7 @@ sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lodgeit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lodgeit"; sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq"; name = "lodgeit"; }; @@ -33523,7 +33974,7 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; @@ -33543,7 +33994,7 @@ sha256 = "c552abe449a7288210e8490070dc58e037d7d9571633d316dc6b91799119a697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/log4j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/log4j-mode"; sha256 = "06lam4iqxlbl9ib2n2db2nj6jbjzrw2ak8r99n6w4s3fny1q3yxx"; name = "log4j-mode"; }; @@ -33564,7 +34015,7 @@ sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; @@ -33585,7 +34036,7 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; @@ -33606,7 +34057,7 @@ sha256 = "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logstash-conf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logstash-conf"; sha256 = "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh"; name = "logstash-conf"; }; @@ -33627,7 +34078,7 @@ sha256 = "1wglgjf45rl4rl5zp1p1z318p2d1hy1w77m65wwg35v6pkl1mikr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; @@ -33648,7 +34099,7 @@ sha256 = "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lolcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lolcode-mode"; sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw"; name = "lolcode-mode"; }; @@ -33669,7 +34120,7 @@ sha256 = "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/look-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/look-dired"; sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd"; name = "look-dired"; }; @@ -33687,7 +34138,7 @@ sha256 = "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/look-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/look-mode"; sha256 = "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj"; name = "look-mode"; }; @@ -33708,7 +34159,7 @@ sha256 = "1wmd7s3dk9krgmhs4f92mig18vx6y551n45ai7cvj92f4fbrsd08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; @@ -33729,7 +34180,7 @@ sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lorem-ipsum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lorem-ipsum"; sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h"; name = "lorem-ipsum"; }; @@ -33750,7 +34201,7 @@ sha256 = "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; @@ -33771,7 +34222,7 @@ sha256 = "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; @@ -33792,7 +34243,7 @@ sha256 = "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lush-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lush-theme"; sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p"; name = "lush-theme"; }; @@ -33813,7 +34264,7 @@ sha256 = "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lusty-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lusty-explorer"; sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps"; name = "lusty-explorer"; }; @@ -33834,7 +34285,7 @@ sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lxc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lxc"; sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka"; name = "lxc"; }; @@ -33855,7 +34306,7 @@ sha256 = "1rrfvshl6zbsrswg5hrvq1p0rd9vacqwbr4s44kln7vg4ybcgr24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; @@ -33876,7 +34327,7 @@ sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; @@ -33894,7 +34345,7 @@ sha256 = "07iw9iarz6z9n6vnhqqljfjpvq6vb97ca2hwj9v0k5k8mafdqg7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/macros+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macros+"; sha256 = "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi"; name = "macros-plus"; }; @@ -33911,11 +34362,11 @@ src = fetchFromGitHub { owner = "joddie"; repo = "macrostep"; - rev = "a3338d351e18bfbacd970d371735f840e7d5fe38"; - sha256 = "0j95lv4b01p8a5fpxnj5qs2ajg1yxnsg97vw3184dfy9r5hy7ryb"; + rev = "1e2593279f3722e31d8a8f07e297a5c546586cba"; + sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; @@ -33936,7 +34387,7 @@ sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mag-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mag-menu"; sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2"; name = "mag-menu"; }; @@ -33949,15 +34400,15 @@ magic-filetype = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "magic-filetype"; - version = "20160120.704"; + version = "20160220.818"; src = fetchFromGitHub { owner = "zonuexe"; repo = "magic-filetype.el"; - rev = "db734bdd7aa429e188a628e772c40542b0216d5c"; - sha256 = "0i38942lr4b7d624313hgydyy0ynmd6psjkz8xcvbb7gw0kcc436"; + rev = "1111a67dd07b1d2a91614c8234e459081ca95e24"; + sha256 = "1km5g9g1jmyx1r3fhd9w8091xainmmvmhi6bzqr1l4nx138wwf2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; @@ -33970,15 +34421,15 @@ magic-latex-buffer = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magic-latex-buffer"; - version = "20160121.952"; + version = "20160212.803"; src = fetchFromGitHub { owner = "zk-phi"; repo = "magic-latex-buffer"; - rev = "60e680c36fe8e1621a675f1407b901f617dc7cc8"; - sha256 = "1vq709sw4lxydqxzf42yrw9alzr44hk18am4074znwb5vnnrg5sn"; + rev = "21c5030996bcd773b32b6fdd5990a64fcc3255f3"; + sha256 = "1gmhb8g1pl4qqk1d32hlvmhx2jqfsn3hkc4lkzhgk1n3qzfrq4hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magic-latex-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magic-latex-buffer"; sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8"; name = "magic-latex-buffer"; }; @@ -33991,15 +34442,15 @@ magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: melpaBuild { pname = "magit"; - version = "20160202.2338"; + version = "20160219.1702"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "08d0d095c7c16fb8223d3beeea232412f88936f5"; - sha256 = "08h1lypdvgv0rkq1sjkmw9zwvbjwvpklzjyawb5chgfa5grgfiii"; + rev = "08c61ea85ca62e8cc04c4e8a0a55a5d947a8d01f"; + sha256 = "18jk5bl30kncbc5n7sra5i0n4d57c2nd348kmw154xq1dc7w8b64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -34019,15 +34470,15 @@ magit-annex = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-annex"; - version = "20151213.38"; + version = "20160204.2135"; src = fetchFromGitHub { owner = "magit"; repo = "magit-annex"; - rev = "154345a5192f3581af105022541911398a566cce"; - sha256 = "1h1i8712w0pn6bhc5lpps7ri7bf6f3vy23i6qld13hdgvimgisd9"; + rev = "db655ed50f38af8940e808afc30447746e2c648a"; + sha256 = "18xvcw6rbkzrvk7b9cl42fdcaphnx08klnss1vw1b7q9ijbinpbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; @@ -34048,7 +34499,7 @@ sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; @@ -34069,7 +34520,7 @@ sha256 = "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-find-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-find-file"; sha256 = "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b"; name = "magit-find-file"; }; @@ -34090,7 +34541,7 @@ sha256 = "0f8bcrvnffpcfxgxwp3rvrd4m0apdc7k93952l4v1mqc762lql1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; @@ -34103,15 +34554,15 @@ magit-gh-pulls = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild, pcache, s }: melpaBuild { pname = "magit-gh-pulls"; - version = "20151212.1243"; + version = "20160215.432"; src = fetchFromGitHub { owner = "sigma"; repo = "magit-gh-pulls"; - rev = "728819217c697b4eed996eb14261a8c7c3388df7"; - sha256 = "03m4gr86lm8rs3zn6hdirlgfixf1w033iyhsg9dwlhvmfpfghxb5"; + rev = "323dbd8f67e3cc307da12e93b1799583902d46a5"; + sha256 = "08742hdjzcgl12g2i7f37fnwx7mil28i3kdh96wir9pci2jvjcxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; @@ -34124,15 +34575,15 @@ magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }: melpaBuild { pname = "magit-gitflow"; - version = "20150905.239"; + version = "20160208.1504"; src = fetchFromGitHub { owner = "jtatarik"; repo = "magit-gitflow"; - rev = "dd1d88888957f0fd8b950037e0e58dba2d3221d9"; - sha256 = "10c1qd1l92h0z7mz7j004bx3fc9p6ij3m732lwmni9vlfbishbb4"; + rev = "46dc3f20b6f6d5e91e9765da372c909e9cc7b355"; + sha256 = "1ar9gdp4svymibr9arrlxil1xm1x41gxinlifdb8lgpmawb62d9w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; @@ -34149,11 +34600,11 @@ src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "08d0d095c7c16fb8223d3beeea232412f88936f5"; - sha256 = "08h1lypdvgv0rkq1sjkmw9zwvbjwvpklzjyawb5chgfa5grgfiii"; + rev = "08c61ea85ca62e8cc04c4e8a0a55a5d947a8d01f"; + sha256 = "18jk5bl30kncbc5n7sra5i0n4d57c2nd348kmw154xq1dc7w8b64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; @@ -34174,7 +34625,7 @@ sha256 = "1pqbrrp4366kwfk1d32h2lb70id32ynfc03i7m2832w97f1xp16c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; @@ -34187,15 +34638,15 @@ magit-stgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-stgit"; - version = "20151228.1001"; + version = "20160217.947"; src = fetchFromGitHub { owner = "magit"; repo = "magit-stgit"; - rev = "0aec74f70ca1544ee81c586de4aa621ad5f66205"; - sha256 = "0gb7wpwdhar2a81shd3c5s85ywv8vvjqykpc4py06ybjk8qpspcw"; + rev = "082a2e89eb769ffb95fb3895c9b32163e4c476ae"; + sha256 = "1xkzgakm83djf91a5n3cbid0k15439lfgmq8hw0vmb3vb2fz3h9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; @@ -34216,7 +34667,7 @@ sha256 = "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; @@ -34229,15 +34680,15 @@ magit-topgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-topgit"; - version = "20151018.1231"; + version = "20160215.1039"; src = fetchFromGitHub { owner = "magit"; repo = "magit-topgit"; - rev = "732de604c31c74e9da24616428c6e9668b57c881"; - sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33"; + rev = "baa503babf7e15bfb448122f5213398a8b4ef8a1"; + sha256 = "1qwq51b4ihk6nfa00fzzv4qkkxf1vpxh5l69bxrgwgyqbxvci0c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; @@ -34254,11 +34705,11 @@ src = fetchFromGitHub { owner = "ThibautVerron"; repo = "magma-mode"; - rev = "b6ccdeb774348ef3e87cc877de9fc90405872760"; - sha256 = "0alcdr84g2gvvshpa3cws87n47n5shcryzbj947nsbicmp7f9k8j"; + rev = "4c858609b0f36c6f8b395441920c9510dcbddca8"; + sha256 = "0v3ikqv2m5hcg1rkfbw58a9w4y6sk51bblp0k2h0srcvim6sqlpm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magma-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magma-mode"; sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc"; name = "magma-mode"; }; @@ -34279,7 +34730,7 @@ sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magnatune"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magnatune"; sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d"; name = "magnatune"; }; @@ -34300,7 +34751,7 @@ sha256 = "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/main-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/main-line"; sha256 = "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv"; name = "main-line"; }; @@ -34321,7 +34772,7 @@ sha256 = "1wwc9byjihpdm08a0c0mzbw2r55lhr7c4k0gbcl05hygphymwng7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/majapahit-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/majapahit-theme"; sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s"; name = "majapahit-theme"; }; @@ -34342,7 +34793,7 @@ sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; @@ -34363,7 +34814,7 @@ sha256 = "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/make-it-so"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/make-it-so"; sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73"; name = "make-it-so"; }; @@ -34384,7 +34835,7 @@ sha256 = "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/maker-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maker-mode"; sha256 = "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a"; name = "maker-mode"; }; @@ -34405,7 +34856,7 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; @@ -34426,7 +34877,7 @@ sha256 = "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; @@ -34447,7 +34898,7 @@ sha256 = "1a22xkhnmpfffllarsjdw10n5cd3nwifcl1iv98kb4j4x96kd4xg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; @@ -34468,7 +34919,7 @@ sha256 = "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; @@ -34489,7 +34940,7 @@ sha256 = "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mallard-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mallard-snippets"; sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8"; name = "mallard-snippets"; }; @@ -34510,7 +34961,7 @@ sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/man-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/man-commands"; sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq"; name = "man-commands"; }; @@ -34531,7 +34982,7 @@ sha256 = "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/manage-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/manage-minor-mode"; sha256 = "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6"; name = "manage-minor-mode"; }; @@ -34548,11 +34999,11 @@ src = fetchFromGitHub { owner = "mandoku"; repo = "mandoku"; - rev = "1f31c150443e19d99c16f95e258536b1d0bc2fc1"; - sha256 = "08c31h2nan5ikjh171j63xbbznfc1bg6qay1ijx26r5f0c3n6b9k"; + rev = "b1ac72baebc4df601fb94e40922d4f95719de1ef"; + sha256 = "0065fxw0zc7vbxcl37nl8v5cgxcr3gzx3k1n16gpw7fgbdp060d4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mandoku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mandoku"; sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv"; name = "mandoku"; }; @@ -34573,7 +35024,7 @@ sha256 = "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; @@ -34594,7 +35045,7 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; @@ -34615,7 +35066,7 @@ sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; @@ -34636,7 +35087,7 @@ sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mark-multiple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mark-multiple"; sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4"; name = "mark-multiple"; }; @@ -34657,7 +35108,7 @@ sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; @@ -34667,18 +35118,19 @@ license = lib.licenses.free; }; }) {}; - markdown-mode = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: + markdown-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-mode"; - version = "20160121.728"; - src = fetchgit { - url = "git://jblevins.org/git/markdown-mode.git"; - rev = "846a2d0db5f6ce71af9a67a793bfd89e751825fe"; - sha256 = "9ebb4e9fde3364042a64842a62f7e9b7dc5bfefabc1387b2f6b9e9237596b104"; + version = "20160219.1113"; + src = fetchFromGitHub { + owner = "jrblevin"; + repo = "markdown-mode"; + rev = "3e88d58ab783f4c9c8b932b1b30a2742ddda2c50"; + sha256 = "1zmq7g9rlf3n36rrgarbw3xwn4zrhc1qg9ammfp08n9pd0vahy77"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-mode"; - sha256 = "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode"; + sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; packageRequires = [ cl-lib ]; @@ -34698,7 +35150,7 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; @@ -34719,7 +35171,7 @@ sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-preview-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-preview-eww"; sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx"; name = "markdown-preview-eww"; }; @@ -34732,15 +35184,15 @@ markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }: melpaBuild { pname = "markdown-preview-mode"; - version = "20160115.154"; + version = "20160215.1049"; src = fetchFromGitHub { owner = "ancane"; repo = "markdown-preview-mode"; - rev = "97d9276210465f4e9492169f3c0ed831a57cedf4"; - sha256 = "10h5zh03c3v0c6pqcxvlns6l70k2l916nqvza53ikjpldmc4mln2"; + rev = "ff75e31a57f62156441d66d5c4033ad204d49a87"; + sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; @@ -34753,15 +35205,15 @@ markdown-toc = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, s }: melpaBuild { pname = "markdown-toc"; - version = "20160108.241"; + version = "20160207.1058"; src = fetchFromGitHub { owner = "ardumont"; repo = "markdown-toc"; - rev = "e0382443ee83e982cc40878ee04d8543dbe0a12a"; - sha256 = "1s5sasp8z9s1pfq7nww221lb427qblryilx0h5y7bg4z2ay9yr03"; + rev = "ddaba5fde8e15dad74ebc20abc71c7766c8fd980"; + sha256 = "17ninp3hpy8k1r6a4mz28dbk4kwg3myhzny2r7mix50rbvcf0y8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; @@ -34782,7 +35234,7 @@ sha256 = "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markup"; sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf"; name = "markup"; }; @@ -34803,7 +35255,7 @@ sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; @@ -34824,7 +35276,7 @@ sha256 = "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; @@ -34845,7 +35297,7 @@ sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marmalade-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marmalade-client"; sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq"; name = "marmalade-client"; }; @@ -34866,7 +35318,7 @@ sha256 = "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; @@ -34879,15 +35331,15 @@ material-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "material-theme"; - version = "20160120.303"; + version = "20160212.154"; src = fetchFromGitHub { owner = "cpaulik"; repo = "emacs-material-theme"; - rev = "204abe37742a52eaf2775279d56e38bf163b2327"; - sha256 = "0627kpc03hwa489d6bsfls8jc67f31m4m167748g12w07rswb7ba"; + rev = "3bdb927099e58a71fac0f73b80bf223342b31cc8"; + sha256 = "108n2w8f0vsazw8wl50af8cb8amyb1qrg30nxwfwqgvi8d8iba4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/material-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/material-theme"; sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq"; name = "material-theme"; }; @@ -34908,7 +35360,7 @@ sha256 = "186gb83y3g1q7d0sdrxqz22nr62qq6fy7m74qwirlsf7vnnm4gpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/math-symbol-lists"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/math-symbol-lists"; sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; name = "math-symbol-lists"; }; @@ -34929,7 +35381,7 @@ sha256 = "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/math-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/math-symbols"; sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx"; name = "math-symbols"; }; @@ -34939,18 +35391,18 @@ license = lib.licenses.free; }; }) {}; - matlab-mode = callPackage ({ fetchcvs, fetchurl, lib, melpaBuild }: + matlab-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "matlab-mode"; - version = "20141227.1244"; - src = fetchcvs { - cvsRoot = ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs"; - module = "matlab-emacs"; - sha256 = "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465"; + version = "20160210.427"; + src = fetchgit { + url = "git://git.code.sf.net/p/matlab-emacs/src"; + rev = "e08bf6d49b9c1a325dd0e3bb71881b65c6348d66"; + sha256 = "787c5ea50aa906d387c7cef39d44a86cd0d6998e391239bd0ff30a47fd75681d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/matlab-mode"; - sha256 = "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/matlab-mode"; + sha256 = "1bybc5xv5hbjh8afmh03qda5g3m2wcgsk6lgj6jkyyxzdfxqkrck"; name = "matlab-mode"; }; packageRequires = []; @@ -34962,14 +35414,14 @@ matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "matrix-client"; - version = "20160118.1725"; + version = "20160205.1800"; src = fetchgit { url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el"; - rev = "421ad8ebf3858acc99634a4cca442c57ca2b3707"; - sha256 = "34e1f7bd0c4ab21b2b0ca6d2a6ba83c9a1a5591e9de9ceb1c5f8fe06a4738acb"; + rev = "3b00bd20739268d60a029bae580372d7f4cdecd4"; + sha256 = "006b30332ec67e837b6d822fd926adc7ea3afb9073fa9c5dac05292a3c13af01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; @@ -34989,7 +35441,7 @@ sha256 = "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/maude-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maude-mode"; sha256 = "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma"; name = "maude-mode"; }; @@ -35010,7 +35462,7 @@ sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; @@ -35031,7 +35483,7 @@ sha256 = "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; @@ -35049,7 +35501,7 @@ sha256 = "0w8clp96jblsc9v87404zpc280ms0d644in34jdgjc5r33f4i0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mb-depth+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mb-depth+"; sha256 = "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w"; name = "mb-depth-plus"; }; @@ -35070,7 +35522,7 @@ sha256 = "1qd4vya49sy7iwcpnyd91d0zx3niwsavhdcq6387rsb0j64hwybl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; @@ -35091,7 +35543,7 @@ sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; @@ -35112,7 +35564,7 @@ sha256 = "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mbo70s-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mbo70s-theme"; sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb"; name = "mbo70s-theme"; }; @@ -35133,7 +35585,7 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; @@ -35154,7 +35606,7 @@ sha256 = "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/md-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/md-readme"; sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3"; name = "md-readme"; }; @@ -35175,7 +35627,7 @@ sha256 = "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/meacupla-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/meacupla-theme"; sha256 = "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d"; name = "meacupla-theme"; }; @@ -35196,7 +35648,7 @@ sha256 = "0f0p6ppgj1w0gfyja9hbah6wsw7glx9ybpbs6kn7lwm0ir9rd33s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; @@ -35217,7 +35669,7 @@ sha256 = "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mellow-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mellow-theme"; sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0"; name = "mellow-theme"; }; @@ -35238,7 +35690,7 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; @@ -35259,7 +35711,7 @@ sha256 = "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/memento"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/memento"; sha256 = "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8"; name = "memento"; }; @@ -35280,7 +35732,7 @@ sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/memoize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/memoize"; sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; name = "memoize"; }; @@ -35301,7 +35753,7 @@ sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/memolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/memolist"; sha256 = "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh"; name = "memolist"; }; @@ -35322,7 +35774,7 @@ sha256 = "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; @@ -35340,7 +35792,7 @@ sha256 = "1i96s0z0q9z2ws2b1lz1n50j6hih9y4rsy7mwx0k8a4ikll0gx82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/menu-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/menu-bar+"; sha256 = "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90"; name = "menu-bar-plus"; }; @@ -35361,8 +35813,8 @@ sha256 = "1amb375dpy5al1ddh2ln9l1lw6xqfjigld6y5k7vvh730zild824"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/merlin"; - sha256 = "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/merlin"; + sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; packageRequires = []; @@ -35379,7 +35831,7 @@ sha256 = "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/message-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/message-x"; sha256 = "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj"; name = "message-x"; }; @@ -35400,7 +35852,7 @@ sha256 = "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/meta-presenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/meta-presenter"; sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d"; name = "meta-presenter"; }; @@ -35442,7 +35894,7 @@ sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/metascript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metascript-mode"; sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn"; name = "metascript-mode"; }; @@ -35463,7 +35915,7 @@ sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/metaweblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metaweblog"; sha256 = "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y"; name = "metaweblog"; }; @@ -35484,7 +35936,7 @@ sha256 = "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; @@ -35505,7 +35957,7 @@ sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mexican-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mexican-holidays"; sha256 = "0awf4vv6mbp1xr92nsgdn513g4adqhp21k12q4fbm85b2l3jlspb"; name = "mexican-holidays"; }; @@ -35518,15 +35970,15 @@ mhc = callPackage ({ calfw, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mhc"; - version = "20160129.141"; + version = "20160210.2237"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "mhc"; - rev = "79b0208995c37c5b81b40dc60630ebce63688ed2"; - sha256 = "0dbchc5l6cv4hjrdshd68jhhwjzswwyhsl20q102kvj4l8n0sncz"; + rev = "f520c1f8c46e635c8131754b79b9b071612e295d"; + sha256 = "0ahbf4cd9q65xrvsc1clym3swdwwsl8llccrl5l1qgxqx5xg61hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; @@ -35544,7 +35996,7 @@ sha256 = "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mic-paren"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mic-paren"; sha256 = "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa"; name = "mic-paren"; }; @@ -35565,7 +36017,7 @@ sha256 = "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/midje-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/midje-mode"; sha256 = "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3"; name = "midje-mode"; }; @@ -35575,27 +36027,6 @@ license = lib.licenses.free; }; }) {}; - midje-test-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "midje-test-mode"; - version = "20131208.1114"; - src = fetchFromGitHub { - owner = "bpoweski"; - repo = "midje-test-mode"; - rev = "46fc081865d48f30b950f21a597eadd59a802fc9"; - sha256 = "0f3iq4ghi4ig2by1smfciavr2f0lx6vhvajykxdfs0afn006w4cs"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/midje-test-mode"; - sha256 = "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f"; - name = "midje-test-mode"; - }; - packageRequires = [ cider clojure-mode ]; - meta = { - homepage = "http://melpa.org/#/midje-test-mode"; - license = lib.licenses.free; - }; - }) {}; migemo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "migemo"; @@ -35607,7 +36038,7 @@ sha256 = "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; @@ -35628,7 +36059,7 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; @@ -35648,7 +36079,7 @@ sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minesweeper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minesweeper"; sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag"; name = "minesweeper"; }; @@ -35661,15 +36092,15 @@ mingus = callPackage ({ fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild }: melpaBuild { pname = "mingus"; - version = "20151115.1317"; + version = "20160206.310"; src = fetchFromGitHub { owner = "pft"; repo = "mingus"; - rev = "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4"; - sha256 = "0r4jh58pls859fljb6qm49l4imfxxif9mxsmjgwan0czfhq33xqh"; + rev = "8c8b3ba4d9295f2eacb2d073c2405ffc2b2c0f58"; + sha256 = "0h4di0z6df28sv596hn38snvq2xv9pj1a0xwbsifxj4nrzglq1fc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mingus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mingus"; sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi"; name = "mingus"; }; @@ -35690,7 +36121,7 @@ sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minibuf-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuf-isearch"; sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh"; name = "minibuf-isearch"; }; @@ -35711,7 +36142,7 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; @@ -35732,7 +36163,7 @@ sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; @@ -35753,7 +36184,7 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; @@ -35774,7 +36205,7 @@ sha256 = "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; @@ -35795,7 +36226,7 @@ sha256 = "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minimal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minimal-theme"; sha256 = "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm"; name = "minimal-theme"; }; @@ -35816,7 +36247,7 @@ sha256 = "08sy08bzn2as4n6jydrzvn0h0xahyihr2snfr3ps25gkfwxsk4aq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; @@ -35837,7 +36268,7 @@ sha256 = "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minizinc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minizinc-mode"; sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c"; name = "minizinc-mode"; }; @@ -35855,7 +36286,7 @@ sha256 = "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minor-mode-hack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minor-mode-hack"; sha256 = "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj"; name = "minor-mode-hack"; }; @@ -35876,7 +36307,7 @@ sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mip-mode"; sha256 = "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar"; name = "mip-mode"; }; @@ -35894,7 +36325,7 @@ sha256 = "0sc4l0prwmakxmdq22xd5mj8ddwhzrs034zmx2swi2k3s07x15id"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/misc-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/misc-cmds"; sha256 = "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl"; name = "misc-cmds"; }; @@ -35912,7 +36343,7 @@ sha256 = "1mksmxy741sv7d5lr9wlj4klb0sg06bg5z1zpd5hj0bd4b3mx7x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/misc-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/misc-fns"; sha256 = "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam"; name = "misc-fns"; }; @@ -35933,7 +36364,7 @@ sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mkdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mkdown"; sha256 = "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1"; name = "mkdown"; }; @@ -35954,7 +36385,7 @@ sha256 = "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmm-jinja2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-jinja2"; sha256 = "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z"; name = "mmm-jinja2"; }; @@ -35974,7 +36405,7 @@ sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; @@ -35995,7 +36426,7 @@ sha256 = "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; @@ -36016,7 +36447,7 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; @@ -36037,7 +36468,7 @@ sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mo-git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mo-git-blame"; sha256 = "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x"; name = "mo-git-blame"; }; @@ -36058,7 +36489,7 @@ sha256 = "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mo-vi-ment-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mo-vi-ment-mode"; sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7"; name = "mo-vi-ment-mode"; }; @@ -36079,7 +36510,7 @@ sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mobdebug-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mobdebug-mode"; sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8"; name = "mobdebug-mode"; }; @@ -36100,7 +36531,7 @@ sha256 = "1jyqj7qdpaf0p8d7csc24ch0kgg3vfigadn118gh84xvr1brvvwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; @@ -36113,15 +36544,15 @@ mocha-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "mocha-snippets"; - version = "20150116.1000"; + version = "20160211.1032"; src = fetchFromGitHub { owner = "cowboyd"; repo = "mocha-snippets.el"; - rev = "b8d321eda797e8382f0033901694860fe52f19a9"; - sha256 = "06c92q1wrj6b8d8k7i10d4gcy5liag3x4f4chh510c4d3wi0f6sp"; + rev = "ac1f196bc0214cf7ec99bf34aafcbe13d53dffc4"; + sha256 = "1f8h5c9vvwynq92b1ii5hdpqmf52l5j443ir5hdbiigq30wkwlhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mocha-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocha-snippets"; sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds"; name = "mocha-snippets"; }; @@ -36142,7 +36573,7 @@ sha256 = "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; @@ -36163,7 +36594,7 @@ sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; @@ -36173,21 +36604,21 @@ license = lib.licenses.free; }; }) {}; - mode-icons = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: + mode-icons = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-icons"; - version = "20160125.1221"; + version = "20160221.803"; src = fetchgit { url = "git://ryuslash.org/mode-icons.git"; - rev = "1b8249cad9723c467ccc9e6c25fad4c260900d1f"; - sha256 = "5d599c604623b33ac1d332c54c4eca5587c58528bd93d14bdd0c342ee306936b"; + rev = "d2c9926a8e79e13ef9942fe96b8109add24a9978"; + sha256 = "cb98bc1e199688337efd03bbd18a340514740257f9ede19089f01f5ad6e69b74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mode-icons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-icons"; sha256 = "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp"; name = "mode-icons"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "http://melpa.org/#/mode-icons"; license = lib.licenses.free; @@ -36204,7 +36635,7 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; @@ -36222,7 +36653,7 @@ sha256 = "1dlprk1jlfw7b7vnxi0d0mf85737wkjc5fkvycx8nawngb2fqhbw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/modeline-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modeline-char"; sha256 = "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp"; name = "modeline-char"; }; @@ -36240,7 +36671,7 @@ sha256 = "1r4zq355h570hk7qq0ik121bwsr4hjnhacal4d4h119d11gq2p8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/modeline-posn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modeline-posn"; sha256 = "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk"; name = "modeline-posn"; }; @@ -36261,7 +36692,7 @@ sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/modtime-skip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modtime-skip-mode"; sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28"; name = "modtime-skip-mode"; }; @@ -36274,15 +36705,15 @@ moe-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moe-theme"; - version = "20151124.1709"; + version = "20160216.2021"; src = fetchFromGitHub { owner = "kuanyui"; repo = "moe-theme.el"; - rev = "56b0833e3549e1b2f008388549972971936b053f"; - sha256 = "0dyp8jpznb9ivzkka2cgydzcldc275238p0f1c9pcrxjf7mjglmx"; + rev = "b6dcf5f5dc822bee8e6d6b6a79ae6889910ed247"; + sha256 = "05lh052dnwdpf6iqypipa8yjhl9mwka3h77d4pnfwq8wdz7ywp12"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/moe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moe-theme"; sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6"; name = "moe-theme"; }; @@ -36303,7 +36734,7 @@ sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/molokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/molokai-theme"; sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf"; name = "molokai-theme"; }; @@ -36324,7 +36755,7 @@ sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mongo"; sha256 = "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai"; name = "mongo"; }; @@ -36345,7 +36776,7 @@ sha256 = "0ddkcb5rzpcqpsrwkhvm9kzpx2mlrrsp7psljkz5q5qfvy3wdagh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/monky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monky"; sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz"; name = "monky"; }; @@ -36366,7 +36797,7 @@ sha256 = "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monochrome-theme"; sha256 = "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9"; name = "monochrome-theme"; }; @@ -36387,7 +36818,7 @@ sha256 = "0rszr7p5v47s66kj872mz68apkbykhl51lp4v1apwj1ay32lbx9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; @@ -36408,7 +36839,7 @@ sha256 = "1z1gyknxscvk2qpfcrgzymf9w5m8jcnj525q852b8s6yf5fnffmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; @@ -36429,7 +36860,7 @@ sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; @@ -36450,7 +36881,7 @@ sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mote-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mote-mode"; sha256 = "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9"; name = "mote-mode"; }; @@ -36471,7 +36902,7 @@ sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/motion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/motion-mode"; sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0"; name = "motion-mode"; }; @@ -36489,7 +36920,7 @@ sha256 = "0rakxcpqdx175hic3ykwbd5if53dvvf0sxhq0gplpsybpqvkimyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mouse+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mouse+"; sha256 = "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8"; name = "mouse-plus"; }; @@ -36510,7 +36941,7 @@ sha256 = "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mouse-slider-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mouse-slider-mode"; sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy"; name = "mouse-slider-mode"; }; @@ -36528,7 +36959,7 @@ sha256 = "1831jpi06hi5v2jdjgs83jma7fp8xiqdmvvwxfyp2zpbfwi1lkb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mouse3"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mouse3"; sha256 = "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777"; name = "mouse3"; }; @@ -36549,7 +36980,7 @@ sha256 = "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; @@ -36559,16 +36990,19 @@ license = lib.licenses.free; }; }) {}; - move-text = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + move-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "move-text"; - version = "20140307.1044"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/move-text.el"; - sha256 = "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2"; + version = "20160211.2047"; + src = fetchFromGitHub { + owner = "emacsfodder"; + repo = "move-text"; + rev = "6219c1e222c463217007efc7f4eaeffef166fe21"; + sha256 = "0f7gwwkyxk9rv6rhpc88w8vz4x0ww6r9cxmy7bs9lqsf8a7y2095"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/move-text"; - sha256 = "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/move-text"; + sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy"; name = "move-text"; }; packageRequires = []; @@ -36588,7 +37022,7 @@ sha256 = "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; @@ -36609,7 +37043,7 @@ sha256 = "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; @@ -36630,7 +37064,7 @@ sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; @@ -36672,7 +37106,7 @@ sha256 = "03j5fy2xw204807wi7ivwcqlgkh1f7msshh5yrk6c7qdpp08062r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mozc-im"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mozc-im"; sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10"; name = "mozc-im"; }; @@ -36693,7 +37127,7 @@ sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mozc-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mozc-popup"; sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687"; name = "mozc-popup"; }; @@ -36714,7 +37148,7 @@ sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mpages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpages"; sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs"; name = "mpages"; }; @@ -36735,7 +37169,7 @@ sha256 = "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mpg123"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpg123"; sha256 = "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8"; name = "mpg123"; }; @@ -36756,7 +37190,7 @@ sha256 = "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; @@ -36777,7 +37211,7 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; @@ -36798,7 +37232,7 @@ sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mu-cite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu-cite"; sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q"; name = "mu-cite"; }; @@ -36811,15 +37245,15 @@ mu4e-alert = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "mu4e-alert"; - version = "20160109.2212"; + version = "20160215.409"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "mu4e-alert"; - rev = "86d0dbd3418c8d61f982430111ceb6697a576285"; - sha256 = "065pncwj0sgiacn24c4pimcw325xc7wncbq0s1rrgq0920dxc9rc"; + rev = "6a724e8457fc9e4d2a9464f06316253e04048bd4"; + sha256 = "0klnpbb47l3s8cdv1ikldiqw83mggxcbnhlvs3g13a36vx6cxxp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; @@ -36840,7 +37274,7 @@ sha256 = "1cvpzs65fjmhdza1vi2lpk68vkvivb0igrpgm42andi42gc6k50b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; @@ -36861,7 +37295,7 @@ sha256 = "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; @@ -36874,15 +37308,15 @@ multi-compile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-compile"; - version = "20160204.1541"; + version = "20160215.1419"; src = fetchFromGitHub { owner = "ReanGD"; repo = "emacs-multi-compile"; - rev = "7bbd1e84a4ed411fed77007ebae0fa7d870be75e"; - sha256 = "0bayjp60lzv2ay34k9yvx46vyk5ffnivrlvb3hw1kfpwyw46fww6"; + rev = "ac128d246971fb43a1c33d4cdf3e3bd1557f37cf"; + sha256 = "10fnps2mw2n8y456qxsxqx4cmlhk0fag9p0c6kwx78mwz8akk07w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-compile"; sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz"; name = "multi-compile"; }; @@ -36900,7 +37334,7 @@ sha256 = "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-eshell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-eshell"; sha256 = "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d"; name = "multi-eshell"; }; @@ -36921,7 +37355,7 @@ sha256 = "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-line"; sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp"; name = "multi-line"; }; @@ -36941,7 +37375,7 @@ sha256 = "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-project"; sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x"; name = "multi-project"; }; @@ -36959,7 +37393,7 @@ sha256 = "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-term"; sha256 = "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx"; name = "multi-term"; }; @@ -36980,7 +37414,7 @@ sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; @@ -37001,7 +37435,7 @@ sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multicolumn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multicolumn"; sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09"; name = "multicolumn"; }; @@ -37022,7 +37456,7 @@ sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multifiles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multifiles"; sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz"; name = "multifiles"; }; @@ -37035,15 +37469,15 @@ multiple-cursors = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multiple-cursors"; - version = "20151205.1425"; + version = "20160213.1017"; src = fetchFromGitHub { owner = "magnars"; repo = "multiple-cursors.el"; - rev = "a393384b3508e7d8d721e66d2bfb97fa7153dd4f"; - sha256 = "0hl9ll7pgqv74dnihyy0gz15wz0swj1cpa208484qd3g0dvin8j6"; + rev = "68961b4cf39b6d56d21ece0246f8c215f95cc3e1"; + sha256 = "07g03z1jx0d8gr9m30vn33jm7ym3afqcj83j499wa2hj3wqnaf9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; @@ -37064,7 +37498,7 @@ sha256 = "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mustache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustache"; sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g"; name = "mustache"; }; @@ -37085,7 +37519,7 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; @@ -37106,7 +37540,7 @@ sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mustang-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustang-theme"; sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr"; name = "mustang-theme"; }; @@ -37127,7 +37561,7 @@ sha256 = "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mustard-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustard-theme"; sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik"; name = "mustard-theme"; }; @@ -37148,7 +37582,7 @@ sha256 = "1faqbkff0v6pigsnnq2dxnzdra8q62cvlxigscwalwxd27bbz548"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mutant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mutant"; sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1"; name = "mutant"; }; @@ -37166,7 +37600,7 @@ sha256 = "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/muttrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/muttrc-mode"; sha256 = "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn"; name = "muttrc-mode"; }; @@ -37179,15 +37613,15 @@ mvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mvn"; - version = "20151001.129"; + version = "20160211.943"; src = fetchFromGitHub { owner = "apgwoz"; repo = "mvn-el"; - rev = "01ede605d49c5fb6f2da038f5df6f31112de802f"; - sha256 = "1gvn0a49lgbjnkl0j2sv4p9zdfqzj9s4jw0k2f4ypmsd1fc0q6d6"; + rev = "8a65b4eb88c9801aa3bff1921b600c72dfb8791a"; + sha256 = "1jg3xrk44lspxli0zr02jcsl8phj0ns7ly3dkd7rx2wgsk69ari3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mvn"; sha256 = "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin"; name = "mvn"; }; @@ -37208,7 +37642,7 @@ sha256 = "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mwe-log-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mwe-log-commands"; sha256 = "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn"; name = "mwe-log-commands"; }; @@ -37229,7 +37663,7 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; @@ -37250,7 +37684,7 @@ sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/myanmar-input-methods"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/myanmar-input-methods"; sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd"; name = "myanmar-input-methods"; }; @@ -37271,7 +37705,7 @@ sha256 = "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; @@ -37292,7 +37726,7 @@ sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mynt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mynt-mode"; sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b"; name = "mynt-mode"; }; @@ -37313,7 +37747,7 @@ sha256 = "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mysql2sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mysql2sqlite"; sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd"; name = "mysql2sqlite"; }; @@ -37334,7 +37768,7 @@ sha256 = "18wqgjn38jxzsbivmf2fkcq3r1y4lffh3dbpv1jj7s9qn91pyp6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/myterminal-controls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/myterminal-controls"; sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2"; name = "myterminal-controls"; }; @@ -37355,7 +37789,7 @@ sha256 = "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/n3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/n3-mode"; sha256 = "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh"; name = "n3-mode"; }; @@ -37376,7 +37810,7 @@ sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/n4js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/n4js"; sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m"; name = "n4js"; }; @@ -37394,7 +37828,7 @@ sha256 = "0zq13qjqfpxjba1bhdqqxkvgxq1dxyb7hd1bpnk6cbhsxr6mr50i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/naked"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/naked"; sha256 = "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq"; name = "naked"; }; @@ -37415,7 +37849,7 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; @@ -37436,7 +37870,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nameframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameframe"; sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp"; name = "nameframe"; }; @@ -37457,7 +37891,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nameframe-perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameframe-perspective"; sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x"; name = "nameframe-perspective"; }; @@ -37478,7 +37912,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nameframe-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameframe-projectile"; sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k"; name = "nameframe-projectile"; }; @@ -37499,7 +37933,7 @@ sha256 = "13v0v90vrc2w0wi7wmzmpql6yjbr6lpzh29kxggq9fy38lahd3ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nameless"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameless"; sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq"; name = "nameless"; }; @@ -37520,7 +37954,7 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; @@ -37541,7 +37975,7 @@ sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/namespaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/namespaces"; sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr"; name = "namespaces"; }; @@ -37562,7 +37996,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nand2tetris"; sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd"; name = "nand2tetris"; }; @@ -37583,7 +38017,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nand2tetris-assembler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nand2tetris-assembler"; sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy"; name = "nand2tetris-assembler"; }; @@ -37603,7 +38037,7 @@ sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nanowrimo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nanowrimo"; sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31"; name = "nanowrimo"; }; @@ -37624,7 +38058,7 @@ sha256 = "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/naquadah-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/naquadah-theme"; sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1"; name = "naquadah-theme"; }; @@ -37642,7 +38076,7 @@ sha256 = "1lyszm94pd3jxs73v7k0aaazm0sd2rpz2pphcdag7lk7k6vppd9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/narrow-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrow-indirect"; sha256 = "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj"; name = "narrow-indirect"; }; @@ -37663,7 +38097,7 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; @@ -37684,7 +38118,7 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; @@ -37705,7 +38139,7 @@ sha256 = "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; @@ -37724,7 +38158,7 @@ sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nav"; sha256 = "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl"; name = "nav"; }; @@ -37745,7 +38179,7 @@ sha256 = "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; @@ -37766,7 +38200,7 @@ sha256 = "1yywbfa0syhb8zmn2qjjw2hxy7vz9ky3xd7kv3nz3gd2x989nb9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; @@ -37787,7 +38221,7 @@ sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/navi2ch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navi2ch"; sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3"; name = "navi2ch"; }; @@ -37808,7 +38242,7 @@ sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; @@ -37829,7 +38263,7 @@ sha256 = "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; @@ -37850,7 +38284,7 @@ sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nclip"; sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw"; name = "nclip"; }; @@ -37884,15 +38318,15 @@ neotree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "neotree"; - version = "20160204.326"; + version = "20160214.732"; src = fetchFromGitHub { owner = "jaypei"; repo = "emacs-neotree"; - rev = "7ac86e96f1a0eb542ba38da741b4abd21312c7dd"; - sha256 = "105a8qwhjaay2nfspp5zj227zkwl85ggymakgbqqf6gi0s789vyh"; + rev = "c61f21aeb7ec42af4f3687d6f670a1363bea4df9"; + sha256 = "1v3ifr3ndkyxkfyg1n6yknb74313pv96yfq93k80ncxyj40ci5jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; @@ -37913,7 +38347,7 @@ sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/netherlands-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/netherlands-holidays"; sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf"; name = "netherlands-holidays"; }; @@ -37934,7 +38368,7 @@ sha256 = "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/never-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/never-comment"; sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s"; name = "never-comment"; }; @@ -37955,7 +38389,7 @@ sha256 = "05jwaj7wlrdpmylawv14ypwpg9qz9pqqqd1nvb94b9gbs79j86z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/newlisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/newlisp-mode"; sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd"; name = "newlisp-mode"; }; @@ -37976,7 +38410,7 @@ sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nexus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nexus"; sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd"; name = "nexus"; }; @@ -37997,7 +38431,7 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; @@ -38018,7 +38452,7 @@ sha256 = "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/niflheim-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/niflheim-theme"; sha256 = "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36"; name = "niflheim-theme"; }; @@ -38031,15 +38465,15 @@ nim-mode = callPackage ({ commenter, emacs, epc, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "nim-mode"; - version = "20160202.2209"; + version = "20160219.924"; src = fetchFromGitHub { owner = "nim-lang"; repo = "nim-mode"; - rev = "9e119eba89ad1574a129b7502d14237ec9f54825"; - sha256 = "1wlfar160gs7ar6kl6and3jv8k75wj2f189ygbawyag4dyq5a9h2"; + rev = "b75968ee3191861110d0e5a6bedca5d698e6fd44"; + sha256 = "0hag9mzy9h4nnbqggzwfn2p31m5p7vx0qqfgpm0z9qbbxcf49w00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nim-mode"; sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6"; name = "nim-mode"; }; @@ -38056,11 +38490,11 @@ src = fetchFromGitHub { owner = "martine"; repo = "ninja"; - rev = "8028e91a9dc90b51b4da7ded70cc38234ed62451"; - sha256 = "0zkm6ddsrwbp2fvw80y6mgvihr24nvf1d6pjb784qvmil716fm3j"; + rev = "d1763746b65cc7349d4ed9478befdb651aa24589"; + sha256 = "0n64966sb8lyy4gcasmnmsjni7viabwrq1f2gwbvlbcq7mrpqvnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; @@ -38077,11 +38511,11 @@ src = fetchFromGitHub { owner = "NixOS"; repo = "nix"; - rev = "c780c1124ec6711f09b9855c3b574b6655af6625"; - sha256 = "1nps30kq70zy81690wsr80khaqgds0awx8hd7wzl6xcs56zjq07x"; + rev = "4f011bccf87a494586039a773548be94d6365467"; + sha256 = "1bly30ds9kbpq877fdqnfmpb9grdycllzx6wy4bcxy3258m7pq3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; @@ -38091,18 +38525,39 @@ license = lib.licenses.free; }; }) {}; - nixos-options = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + nix-sandbox = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { - pname = "nixos-options"; - version = "20151013.1809"; + pname = "nix-sandbox"; + version = "20160214.418"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "6b1418611b49a6cf77380a76f7e6236bbb5df83a"; - sha256 = "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3"; + rev = "63061d379460c53abbe88ec695a61e22feae438f"; + sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nix-sandbox"; + sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k"; + name = "nix-sandbox"; + }; + packageRequires = [ dash s ]; + meta = { + homepage = "http://melpa.org/#/nix-sandbox"; + license = lib.licenses.free; + }; + }) {}; + nixos-options = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "nixos-options"; + version = "20160209.1241"; + src = fetchFromGitHub { + owner = "travisbhartwell"; + repo = "nix-emacs"; + rev = "63061d379460c53abbe88ec695a61e22feae438f"; + sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; @@ -38123,7 +38578,7 @@ sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nm"; sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw"; name = "nm"; }; @@ -38144,7 +38599,7 @@ sha256 = "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nnir-est"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nnir-est"; sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv"; name = "nnir-est"; }; @@ -38165,7 +38620,7 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; @@ -38186,7 +38641,7 @@ sha256 = "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/noctilux-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noctilux-theme"; sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp"; name = "noctilux-theme"; }; @@ -38207,7 +38662,7 @@ sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/node-resolver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/node-resolver"; sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh"; name = "node-resolver"; }; @@ -38228,7 +38683,7 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; @@ -38249,7 +38704,7 @@ sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/noflet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noflet"; sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3"; name = "noflet"; }; @@ -38268,7 +38723,7 @@ sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; @@ -38280,14 +38735,14 @@ }) {}; notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "notmuch"; - version = "20160108.632"; + version = "20160220.652"; src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; - rev = "1fcbf095828dc91423f61a290887fe244750bf8a"; - sha256 = "b53261201a0541c81ec91f5289d194e04bc80e78c5583ab478c4c7bdd7f4d543"; + rev = "c689d1ff13ed48507230ca7035021ce42d3dcd64"; + sha256 = "077a58f04748f71f99da39c3609497a16dbfccf93b8ce70470eda0239d7f832b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch"; sha256 = "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r"; name = "notmuch"; }; @@ -38308,7 +38763,7 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; @@ -38326,7 +38781,7 @@ sha256 = "0mmdf3z9299hbs3wr8hqgpmg74sb2xm0rxyh38sjcqmk8f310rqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/novice+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/novice+"; sha256 = "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf"; name = "novice-plus"; }; @@ -38347,7 +38802,7 @@ sha256 = "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/noxml-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noxml-fold"; sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc"; name = "noxml-fold"; }; @@ -38368,7 +38823,7 @@ sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nrepl-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nrepl-eval-sexp-fu"; sha256 = "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j"; name = "nrepl-eval-sexp-fu"; }; @@ -38389,7 +38844,7 @@ sha256 = "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; @@ -38410,7 +38865,7 @@ sha256 = "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; @@ -38431,7 +38886,7 @@ sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nu-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nu-mode"; sha256 = "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7"; name = "nu-mode"; }; @@ -38452,7 +38907,7 @@ sha256 = "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/number"; sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf"; name = "number"; }; @@ -38473,7 +38928,7 @@ sha256 = "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nummm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nummm-mode"; sha256 = "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0"; name = "nummm-mode"; }; @@ -38494,7 +38949,7 @@ sha256 = "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; @@ -38515,7 +38970,7 @@ sha256 = "1v8ndr8hdbqhd7nca8882g05y36pigv6lj7hpxl50lr1lvp1kmmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; @@ -38536,7 +38991,7 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; @@ -38557,7 +39012,7 @@ sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; @@ -38578,7 +39033,7 @@ sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/oauth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oauth"; sha256 = "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz"; name = "oauth"; }; @@ -38598,7 +39053,7 @@ sha256 = "1qq0b92mf73fnx2viwzlsxr6672wkskf0vjimymyhv9aq3gw165w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-axiom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-axiom"; sha256 = "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6"; name = "ob-axiom"; }; @@ -38619,7 +39074,7 @@ sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-browser"; sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm"; name = "ob-browser"; }; @@ -38640,7 +39095,7 @@ sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-cypher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-cypher"; sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3"; name = "ob-cypher"; }; @@ -38661,7 +39116,7 @@ sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-elixir"; sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi"; name = "ob-elixir"; }; @@ -38671,18 +39126,39 @@ license = lib.licenses.free; }; }) {}; + ob-go = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: + melpaBuild { + pname = "ob-go"; + version = "20151211.1801"; + src = fetchFromGitHub { + owner = "pope"; + repo = "ob-go"; + rev = "70684286f7344eaa30c47a680a81b74b0d11ea36"; + sha256 = "0iwyldw8pfy88hvzrqmh9fbx8zj092ycl9wjf9ddji2zxnm44499"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-go"; + sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj"; + name = "ob-go"; + }; + packageRequires = [ go-mode ]; + meta = { + homepage = "http://melpa.org/#/ob-go"; + license = lib.licenses.free; + }; + }) {}; ob-http = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-http"; - version = "20160128.423"; + version = "20160210.458"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-http"; - rev = "149a921b0a18ae765afaaa8d3b792a0f25b94faf"; - sha256 = "14jpr8igxgs8gwcr2w13hnis66qlyjgmcn7fibvyprrpg8z69xak"; + rev = "e10b35accd4c758d781ab9f6e00b7b792dccf380"; + sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; @@ -38703,7 +39179,7 @@ sha256 = "0r5p2gr7ri4w79lmhil4fgh6g8cmxs1qp8glkbvycvlaxwrzszhs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-ipython"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-ipython"; sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186"; name = "ob-ipython"; }; @@ -38724,7 +39200,7 @@ sha256 = "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-kotlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-kotlin"; sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx"; name = "ob-kotlin"; }; @@ -38745,7 +39221,7 @@ sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-lfe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-lfe"; sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8"; name = "ob-lfe"; }; @@ -38766,7 +39242,7 @@ sha256 = "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-mongo"; sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907"; name = "ob-mongo"; }; @@ -38787,7 +39263,7 @@ sha256 = "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-prolog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-prolog"; sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s"; name = "ob-prolog"; }; @@ -38808,7 +39284,7 @@ sha256 = "18b5k02mnswsv6jijvh9kb5ps5r0imkvr9r3r3x8fkyjh3k4f5il"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-restclient"; sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk"; name = "ob-restclient"; }; @@ -38818,6 +39294,27 @@ license = lib.licenses.free; }; }) {}; + ob-scala = callPackage ({ ensime, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ob-scala"; + version = "20160209.835"; + src = fetchFromGitHub { + owner = "reactormonk"; + repo = "ob-scala"; + rev = "e30cf06dc849f230db5ca57ec0e1f5281715942f"; + sha256 = "1ax78ggmzz4lmaw62j0cm8l0n60nyhp6c8f02mdszvv6vnpvyncm"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-scala"; + sha256 = "1cjbdfxkj5rk164wrad7r470xynfjjaa1aj130zbw9zmn36m6lza"; + name = "ob-scala"; + }; + packageRequires = [ ensime ]; + meta = { + homepage = "http://melpa.org/#/ob-scala"; + license = lib.licenses.free; + }; + }) {}; ob-sml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sml-mode }: melpaBuild { pname = "ob-sml"; @@ -38829,7 +39326,7 @@ sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; @@ -38850,7 +39347,7 @@ sha256 = "1yaqs6zcx8228pwzsm19h6272bw9lhib6xz5xzzq8x8n54l81225"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; @@ -38871,7 +39368,7 @@ sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-typescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-typescript"; sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p"; name = "ob-typescript"; }; @@ -38892,7 +39389,7 @@ sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/oberon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oberon"; sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv"; name = "oberon"; }; @@ -38913,7 +39410,7 @@ sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/objc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/objc-font-lock"; sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6"; name = "objc-font-lock"; }; @@ -38934,7 +39431,7 @@ sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/obsidian-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/obsidian-theme"; sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr"; name = "obsidian-theme"; }; @@ -38955,7 +39452,7 @@ sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/occidental-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/occidental-theme"; sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b"; name = "occidental-theme"; }; @@ -38976,7 +39473,7 @@ sha256 = "1v1c2481v2xgnw8kgbbqhqkdd41lzvki9hm3iypbf3n0jxz8nnzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/occur-context-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/occur-context-resize"; sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri"; name = "occur-context-resize"; }; @@ -38997,7 +39494,7 @@ sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/occur-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/occur-x"; sha256 = "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g"; name = "occur-x"; }; @@ -39018,7 +39515,7 @@ sha256 = "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; @@ -39035,11 +39532,11 @@ src = fetchFromGitHub { owner = "OCamlPro"; repo = "ocp-indent"; - rev = "a463bee9088178f429022d1c6c4db216178384e9"; - sha256 = "0p3wsxkj9jpnxanl6r8glf9wvyjbf5z24idvaa1j07whlq68bcrq"; + rev = "267a6fdb9cac9a6afa1fe645e0a6bc54ff4f4168"; + sha256 = "00fm6xg3q7d0vrx5wdg9badv587g4v9k3szwj00wscn9jb0bjhd3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; @@ -39060,7 +39557,7 @@ sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; @@ -39081,7 +39578,7 @@ sha256 = "0p9ph62vnw1r9dbvrjyw356a9bjnzh0hglssi97dr0qd6cs8whf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/octopress"; sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0"; name = "octopress"; }; @@ -39102,7 +39599,7 @@ sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; @@ -39123,7 +39620,7 @@ sha256 = "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/oldlace-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oldlace-theme"; sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8"; name = "oldlace-theme"; }; @@ -39144,7 +39641,7 @@ sha256 = "1mh4dlx5j2zwv7zx8x52vl6h38jr41ly5bn6zqsncnafd1a8l7x7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; @@ -39165,7 +39662,7 @@ sha256 = "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/om-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/om-mode"; sha256 = "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j"; name = "om-mode"; }; @@ -39186,7 +39683,7 @@ sha256 = "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; @@ -39207,7 +39704,7 @@ sha256 = "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; @@ -39228,7 +39725,7 @@ sha256 = "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-quotes"; sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs"; name = "omni-quotes"; }; @@ -39249,7 +39746,7 @@ sha256 = "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; @@ -39270,7 +39767,7 @@ sha256 = "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; @@ -39291,7 +39788,7 @@ sha256 = "1hzvpajq58py6k7z2rwwax1c7pm65m534mq8mr9g9kxn9hqiz9n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omniref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omniref"; sha256 = "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj"; name = "omniref"; }; @@ -39312,7 +39809,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -39331,6 +39828,27 @@ license = lib.licenses.free; }; }) {}; + omtose-phellack-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "omtose-phellack-theme"; + version = "20160212.547"; + src = fetchFromGitHub { + owner = "franksn"; + repo = "omtose-phellack-theme"; + rev = "33c7f6a96bf9aaf7e46939a38e821bab9466958a"; + sha256 = "0jpxnfxgc7xpbk6894hygbr5qq6wkvy866l87jrprj8klvp2c0b9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omtose-phellack-theme"; + sha256 = "09nyc7sdhzy4vmngzdj6r7cv2nbbwqlcyyi2mcg5a8lml4f6fj5i"; + name = "omtose-phellack-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/omtose-phellack-theme"; + license = lib.licenses.free; + }; + }) {}; on-parens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "on-parens"; @@ -39342,7 +39860,7 @@ sha256 = "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/on-parens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/on-parens"; sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab"; name = "on-parens"; }; @@ -39363,7 +39881,7 @@ sha256 = "1rksk0j9b27w913bzbq7w2ws75yi66m24ic6ljdhhbrq3z2ic7dy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/on-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/on-screen"; sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb"; name = "on-screen"; }; @@ -39381,7 +39899,7 @@ sha256 = "05njigqi9061d34530d76kwsdzqgk9qxnwhn9xis64w59f5nzf1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/oneonone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oneonone"; sha256 = "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9"; name = "oneonone"; }; @@ -39402,7 +39920,7 @@ sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; @@ -39420,7 +39938,7 @@ sha256 = "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/open-junk-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/open-junk-file"; sha256 = "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di"; name = "open-junk-file"; }; @@ -39430,6 +39948,27 @@ license = lib.licenses.free; }; }) {}; + opencl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "opencl-mode"; + version = "20160220.1109"; + src = fetchFromGitHub { + owner = "salmanebah"; + repo = "opencl-mode"; + rev = "14109a4bb56105a9c052ae49ad4c638b4cc210b2"; + sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opencl-mode"; + sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; + name = "opencl-mode"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/opencl-mode"; + license = lib.licenses.free; + }; + }) {}; openstack-cgit-browse-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "openstack-cgit-browse-file"; @@ -39441,7 +39980,7 @@ sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/openstack-cgit-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/openstack-cgit-browse-file"; sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl"; name = "openstack-cgit-browse-file"; }; @@ -39460,7 +39999,7 @@ sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/openwith"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/openwith"; sha256 = "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi"; name = "openwith"; }; @@ -39481,7 +40020,7 @@ sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; @@ -39502,7 +40041,7 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; @@ -39523,7 +40062,7 @@ sha256 = "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; @@ -39544,7 +40083,7 @@ sha256 = "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-alert"; sha256 = "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152"; name = "org-alert"; }; @@ -39565,7 +40104,7 @@ sha256 = "0f4ja4m1r6bbgachipswb2001ryg8cqcxjvwmnab951mw0cbg7v4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-attach-screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-attach-screenshot"; sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn"; name = "org-attach-screenshot"; }; @@ -39586,7 +40125,7 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; @@ -39607,7 +40146,7 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-beautify-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-beautify-theme"; sha256 = "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq"; name = "org-beautify-theme"; }; @@ -39628,7 +40167,7 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; @@ -39649,7 +40188,7 @@ sha256 = "0lq2rx6wgz0aymwhw597xs2pabinhk3jpnnhjwq0jk8ggp3afqaz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-caldav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-caldav"; sha256 = "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8"; name = "org-caldav"; }; @@ -39670,7 +40209,7 @@ sha256 = "1g9fanikdcbkmvbh9bp5dg3s2maawkqinjavn5158p0gy68ab240"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-cliplink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-cliplink"; sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p"; name = "org-cliplink"; }; @@ -39680,6 +40219,27 @@ license = lib.licenses.free; }; }) {}; + org-clock-convenience = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "org-clock-convenience"; + version = "20160217.306"; + src = fetchFromGitHub { + owner = "dfeich"; + repo = "org-clock-convenience"; + rev = "49450ede58660f0bd51337a0770aebef46ea58b8"; + sha256 = "0l0r44brs3fcgpjjirfrbf5cgxmsc0siqakv5mlvmr64xd1vi2lw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-clock-convenience"; + sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw"; + name = "org-clock-convenience"; + }; + packageRequires = [ cl-lib emacs org ]; + meta = { + homepage = "http://melpa.org/#/org-clock-convenience"; + license = lib.licenses.free; + }; + }) {}; org-context = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-context"; @@ -39691,7 +40251,7 @@ sha256 = "0q4v216ihhwv8rlb9xc8xy7nj1p058xabfflglhgcd7mfjrsyayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-context"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-context"; sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz"; name = "org-context"; }; @@ -39712,7 +40272,7 @@ sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-cua-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-cua-dwim"; sha256 = "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc"; name = "org-cua-dwim"; }; @@ -39733,7 +40293,7 @@ sha256 = "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-dashboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dashboard"; sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5"; name = "org-dashboard"; }; @@ -39754,7 +40314,7 @@ sha256 = "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-doing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-doing"; sha256 = "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j"; name = "org-doing"; }; @@ -39775,7 +40335,7 @@ sha256 = "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-dotemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dotemacs"; sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4"; name = "org-dotemacs"; }; @@ -39796,7 +40356,7 @@ sha256 = "12k3iqzmj92cvi0d99mn3ylxj00p2f2f8049dd2nxnp1gxs2k4dq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-download"; sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi"; name = "org-download"; }; @@ -39806,6 +40366,27 @@ license = lib.licenses.free; }; }) {}; + org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-dp"; + version = "20160206.402"; + src = fetchFromGitHub { + owner = "tj64"; + repo = "org-dp"; + rev = "ffd4a133f5b39235eaa00e4eb29fba9e8f72750c"; + sha256 = "1a1j654n0if9yh74j7xwrjmsi3aiy1bw7nzzbqda1zd7qbr6r253"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dp"; + sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; + name = "org-dp"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "http://melpa.org/#/org-dp"; + license = lib.licenses.free; + }; + }) {}; org-drill-table = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org-plus-contrib, s }: melpaBuild { pname = "org-drill-table"; @@ -39817,7 +40398,7 @@ sha256 = "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-drill-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-drill-table"; sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69"; name = "org-drill-table"; }; @@ -39838,7 +40419,7 @@ sha256 = "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dropbox"; sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln"; name = "org-dropbox"; }; @@ -39859,7 +40440,7 @@ sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-ehtml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ehtml"; sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw"; name = "org-ehtml"; }; @@ -39880,7 +40461,7 @@ sha256 = "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; @@ -39901,7 +40482,7 @@ sha256 = "1mpdk34l08m53r7dk8qaza7kvscy9jxv7bjwc232s1xhgy3mcin5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-eww"; sha256 = "132asshgfpphjckd5vz1vcs18lj55mrqs1l4ggfa89rc6aj8xrca"; name = "org-eww"; }; @@ -39921,7 +40502,7 @@ sha256 = "35000fb42e317ec1a6e6c7b448bfdec7ecf65fd9f5ab4723062513c3a4acba79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-fstree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-fstree"; sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz"; name = "org-fstree"; }; @@ -39942,7 +40523,7 @@ sha256 = "0r5w85bflmky3xzwqr7g7x7srdm43i93vg0gqnhh6k0ldy7ypc06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; @@ -39963,7 +40544,7 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; @@ -39984,7 +40565,7 @@ sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-grep"; sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz"; name = "org-grep"; }; @@ -40005,7 +40586,7 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; @@ -40026,7 +40607,7 @@ sha256 = "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-iv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-iv"; sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx"; name = "org-iv"; }; @@ -40047,7 +40628,7 @@ sha256 = "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-jekyll"; sha256 = "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i"; name = "org-jekyll"; }; @@ -40068,7 +40649,7 @@ sha256 = "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-jira"; sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm"; name = "org-jira"; }; @@ -40089,7 +40670,7 @@ sha256 = "15swkzq5v9jnpmsziy8mj9rkriilxrm1c24lbfg0a4pwax5nkzp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-journal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-journal"; sha256 = "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s"; name = "org-journal"; }; @@ -40110,7 +40691,7 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; @@ -40123,15 +40704,15 @@ org-linkany = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "org-linkany"; - version = "20140314.1308"; + version = "20160206.2211"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-linkany"; - rev = "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2"; - sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p"; + rev = "8cfe2f1a46e6654a79f56505349d1396263cecb3"; + sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; @@ -40147,11 +40728,11 @@ version = "20140107.719"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "99697abdb98f67d8fad90a2fd39316ea3c0982dd"; - sha256 = "9124972a0892d6782da739102e0648af184f24c6a5ca0e24b7571d6a018356b5"; + rev = "2b3c72e231de4bd5f9f1d3ddfeff45c1edd901dd"; + sha256 = "096532e2cd59fe5d54ffe34f8767e007fc0f6e2c422ea9e3cc68e8a671df07d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; @@ -40167,11 +40748,11 @@ version = "20160109.1643"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "99697abdb98f67d8fad90a2fd39316ea3c0982dd"; - sha256 = "9124972a0892d6782da739102e0648af184f24c6a5ca0e24b7571d6a018356b5"; + rev = "2b3c72e231de4bd5f9f1d3ddfeff45c1edd901dd"; + sha256 = "096532e2cd59fe5d54ffe34f8767e007fc0f6e2c422ea9e3cc68e8a671df07d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-mac-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mac-link"; sha256 = "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw"; name = "org-mac-link"; }; @@ -40192,7 +40773,7 @@ sha256 = "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-mobile-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mobile-sync"; sha256 = "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj"; name = "org-mobile-sync"; }; @@ -40213,7 +40794,7 @@ sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; @@ -40234,7 +40815,7 @@ sha256 = "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-octopress"; sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw"; name = "org-octopress"; }; @@ -40255,7 +40836,7 @@ sha256 = "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; @@ -40268,15 +40849,15 @@ org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: melpaBuild { pname = "org-page"; - version = "20160201.353"; + version = "20160216.647"; src = fetchFromGitHub { owner = "kelvinh"; repo = "org-page"; - rev = "83303ceaff69a08d9885471ca4b4b9a0f73584f2"; - sha256 = "0lcbahpq90sv9a265r0ajm3zx3h1dmsz7fz2gw5ndjkz3c59qk93"; + rev = "268761d12b1bd0905cd767efa3513d2b6df01aaf"; + sha256 = "1mnghhc07727fcp0vd8qjm2v7amv5mv6357l5cjjs4c24qchxiy0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; @@ -40297,7 +40878,7 @@ sha256 = "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pandoc"; sha256 = "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v"; name = "org-pandoc"; }; @@ -40318,7 +40899,7 @@ sha256 = "0b02d6x8kmq5h3x2fk1cl59jq10c1wy6xmmcsrn37di8bpygdwhy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-password-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-password-manager"; sha256 = "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv"; name = "org-password-manager"; }; @@ -40339,7 +40920,7 @@ sha256 = "16z44kdsg8w1p27fsi72k8wqr35xbb0777rq7h7swv6j2jn1b6hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; @@ -40360,7 +40941,7 @@ sha256 = "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; @@ -40381,7 +40962,7 @@ sha256 = "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-present"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-present"; sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7"; name = "org-present"; }; @@ -40402,7 +40983,7 @@ sha256 = "1jxw9r1mn9zf0vlvy89w9w6v6mhl8i210hkx86c9vcrkpcrpzmvi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; @@ -40423,7 +41004,7 @@ sha256 = "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; @@ -40433,6 +41014,27 @@ license = lib.licenses.free; }; }) {}; + org-random-todo = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-random-todo"; + version = "20160208.626"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "org-random-todo"; + rev = "27ed9f3878736f0e12a076db8e1658964e46257b"; + sha256 = "06apaa8pjrw14g2gyjpxjd6bjv1w0md4vl5jx78krcyr0bcc08mx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-random-todo"; + sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; + name = "org-random-todo"; + }; + packageRequires = [ alert emacs ]; + meta = { + homepage = "http://melpa.org/#/org-random-todo"; + license = lib.licenses.free; + }; + }) {}; org-readme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, header2, http-post-simple, lib, lib-requires, melpaBuild, yaoddmuse }: melpaBuild { pname = "org-readme"; @@ -40444,7 +41046,7 @@ sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -40460,22 +41062,22 @@ license = lib.licenses.free; }; }) {}; - org-redmine = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: + org-redmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-redmine"; - version = "20151021.931"; + version = "20160205.544"; src = fetchFromGitHub { owner = "gongo"; repo = "org-redmine"; - rev = "4289eb06c506f19ef8c467acb2a05bcf04f187c9"; - sha256 = "1q99b9l6y97iic46xqj7rqnkrzk8f0qq4qy81jv9wz54hq51w07v"; + rev = "836d9a4c4dc3a05064667be687cd8f587017cb44"; + sha256 = "0q26knckq213r885i5947970qagjmb7ybs4ag0ignls4dzbqlbmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-redmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-redmine"; sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv"; name = "org-redmine"; }; - packageRequires = [ anything ]; + packageRequires = []; meta = { homepage = "http://melpa.org/#/org-redmine"; license = lib.licenses.free; @@ -40484,15 +41086,15 @@ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, key-chord, lib, melpaBuild, s }: melpaBuild { pname = "org-ref"; - version = "20160203.2047"; + version = "20160221.1737"; src = fetchFromGitHub { owner = "jkitchin"; repo = "org-ref"; - rev = "4d0eaf48db5711d4a67bf5352ae9d79aa29dc5ec"; - sha256 = "0bh5faz51hiy82j3355n78dqbcwwx5scizq6w5n1snpdxw6dxfjw"; + rev = "d336811c11844c0f5dcf62fa4f2d398c174e463d"; + sha256 = "1xnwpl28d742406fhrwl39r9l9z3wbapjz556zc9km376f7sx9d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-ref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ref"; sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; name = "org-ref"; }; @@ -40513,7 +41115,7 @@ sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; @@ -40523,22 +41125,22 @@ license = lib.licenses.free; }; }) {}; - org-rtm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org, rtm }: + org-rtm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: melpaBuild { pname = "org-rtm"; - version = "20160119.824"; + version = "20160214.636"; src = fetchFromGitHub { owner = "pmiddend"; repo = "org-rtm"; - rev = "b40475213d32ea46d0bbb055c3d682242140794c"; - sha256 = "1596npclhghlarb1cfg3q7ky43y8zm73npjv169acjb77yz29rix"; + rev = "adc42ad1fbe92ab447ccc9553780f4456f2508d2"; + sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-rtm"; sha256 = "1paiy5zmdlxb3a1cjk9d30mqbl60bkairw6xkix2qw36p07jwlj5"; name = "org-rtm"; }; - packageRequires = [ org rtm ]; + packageRequires = [ rtm ]; meta = { homepage = "http://melpa.org/#/org-rtm"; license = lib.licenses.free; @@ -40555,7 +41157,7 @@ sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; @@ -40576,7 +41178,7 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; @@ -40597,7 +41199,7 @@ sha256 = "1x241jaw726zjsplwf6svbvr8af09k6kqj7icpvcbyayivkbhxy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; @@ -40618,7 +41220,7 @@ sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; @@ -40639,7 +41241,7 @@ sha256 = "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; @@ -40660,7 +41262,7 @@ sha256 = "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; @@ -40681,7 +41283,7 @@ sha256 = "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; @@ -40702,7 +41304,7 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; @@ -40723,7 +41325,7 @@ sha256 = "19id53sjv0r0xnm3l8d694s27dxlmdfm9dal57zlf60s5lg8hykq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; @@ -40736,16 +41338,16 @@ org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }: melpaBuild { pname = "org-trello"; - version = "20151213.936"; + version = "20160213.1307"; src = fetchFromGitHub { owner = "org-trello"; repo = "org-trello"; - rev = "ae291d19752d86d01bb21cec6fb410c1eb9145d7"; - sha256 = "0w0gw3varx8qrcfh3iwg6qqxavprm25bjv9ada34xqjdhsv537xc"; + rev = "1ecb8f4f1dd41c8f41073c13a9557c0c583d7c88"; + sha256 = "0pinp7485mwi99f8qx8xhcdymn5yyd7irxh514j3f23n4b90hk4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-trello"; - sha256 = "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-trello"; + sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; packageRequires = [ @@ -40772,7 +41374,7 @@ sha256 = "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; @@ -40785,15 +41387,15 @@ org-wc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-wc"; - version = "20160204.1329"; + version = "20160204.1915"; src = fetchFromGitHub { owner = "dato"; repo = "org-wc"; - rev = "bfb9f2d670c9f700e86e1dd965be1cd6fdc86e32"; - sha256 = "0xhfpv5g2smxywrnwzk2sgak99lv950imm03jdgldhrjz6z1g78y"; + rev = "7735d5111f779a84c40b1eb3783631e6048fb6fe"; + sha256 = "08yww77697kck1ld9xcrcx8amqdh28rdc4fsavp5d3my78qk7rac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-wc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-wc"; sha256 = "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb"; name = "org-wc"; }; @@ -40814,7 +41416,7 @@ sha256 = "1izf0lxycg4wh3wfki1sfy283qwgfdf8rzb365z3sk1zzijjaw6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-webpage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-webpage"; sha256 = "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah"; name = "org-webpage"; }; @@ -40835,7 +41437,7 @@ sha256 = "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-wunderlist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-wunderlist"; sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0"; name = "org-wunderlist"; }; @@ -40852,11 +41454,11 @@ src = fetchFromGitHub { owner = "punchagan"; repo = "org2blog"; - rev = "c0f849b7119b0314934ef33e2ea405cf4db90735"; - sha256 = "0q6dpih869rz94dqbi910vk5iwffbbl6hkraazc8rky7fnb4nh4s"; + rev = "11e4cbc8df34461b02d6d93cb2164ec16925b3a1"; + sha256 = "180mhqf56vvl6y5ff1lsy33b1xxz0zrzy826g2qllw9w5g77xxzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; @@ -40877,7 +41479,7 @@ sha256 = "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; @@ -40898,7 +41500,7 @@ sha256 = "194mcm7xlzlwm4phy3b9pz7na3sdw6galnidf8aqjk97mgw9z74r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/organic-green-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/organic-green-theme"; sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2"; name = "organic-green-theme"; }; @@ -40919,7 +41521,7 @@ sha256 = "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; @@ -40940,7 +41542,7 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; @@ -40961,7 +41563,7 @@ sha256 = "12y395ld36jnlbcrfycnvr4g723w6vahfv9iqf1wr6m94ka9pz3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; @@ -40982,7 +41584,7 @@ sha256 = "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orglue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orglue"; sha256 = "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn"; name = "orglue"; }; @@ -41003,7 +41605,7 @@ sha256 = "0am2yfnaxwc6f2wvrg4d508pdcs88cynr32k7bgyyadwq4xq3zsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgtbl-aggregate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-aggregate"; sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9"; name = "orgtbl-aggregate"; }; @@ -41024,7 +41626,7 @@ sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgtbl-ascii-plot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-ascii-plot"; sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h"; name = "orgtbl-ascii-plot"; }; @@ -41045,7 +41647,7 @@ sha256 = "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgtbl-join"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-join"; sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1"; name = "orgtbl-join"; }; @@ -41066,7 +41668,7 @@ sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgtbl-show-header"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-show-header"; sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; name = "orgtbl-show-header"; }; @@ -41087,7 +41689,7 @@ sha256 = "0p53l0s8rxr8v77kj83qjrbln7nck16q0zgdp4sqmqb1121ily48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/origami"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/origami"; sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr"; name = "origami"; }; @@ -41108,7 +41710,7 @@ sha256 = "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; @@ -41129,7 +41731,7 @@ sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-clipboard"; sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; name = "osx-clipboard"; }; @@ -41142,15 +41744,15 @@ osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-dictionary"; - version = "20151108.2352"; + version = "20160215.926"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "osx-dictionary.el"; - rev = "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55"; - sha256 = "0frv92i7rj9fbjzgwf80zngq77394wjgijggda6d8ai75n5f47g1"; + rev = "3b2e1f0fbcf60453947bba00c4d5de96b4f97a3a"; + sha256 = "04fh4i8mydmvq58hd60lf0dglpcjqgzpwk93wqss72kpifwh68vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; @@ -41171,7 +41773,7 @@ sha256 = "0kh7mrgwalys2vmf1dyrl2cc9v58zah2r8lr43nsky8dkszrz2al"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-lib"; sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4"; name = "osx-lib"; }; @@ -41192,7 +41794,7 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; @@ -41213,7 +41815,7 @@ sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-org-clock-menubar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-org-clock-menubar"; sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6"; name = "osx-org-clock-menubar"; }; @@ -41234,7 +41836,7 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; @@ -41255,7 +41857,7 @@ sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-pseudo-daemon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-pseudo-daemon"; sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8"; name = "osx-pseudo-daemon"; }; @@ -41276,7 +41878,7 @@ sha256 = "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; @@ -41297,7 +41899,7 @@ sha256 = "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/outline-magic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outline-magic"; sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f"; name = "outline-magic"; }; @@ -41318,7 +41920,7 @@ sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/outlined-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outlined-elisp-mode"; sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v"; name = "outlined-elisp-mode"; }; @@ -41339,7 +41941,7 @@ sha256 = "0jhqpm31rsmc2r01ra48nbnd9rx9am90qk6i0qrhgfzx9q1svmj9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; @@ -41356,11 +41958,11 @@ src = fetchFromGitHub { owner = "tj64"; repo = "outshine"; - rev = "14baed9f4673a52eb9f90c71ec0ae70b4d447fc5"; - sha256 = "0y5r1wy9pjyygzkkjhm7ain2n5p875s2kivns3kmxyak3nl689sy"; + rev = "c7764a408095b3e822b02a70b934e9049af02b3b"; + sha256 = "0bc4lq6gadmjpnag6j7vhq5bf2hgmvgnqy2nxiwnk4glrmks7imm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/outshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outshine"; sha256 = "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4"; name = "outshine"; }; @@ -41381,7 +41983,7 @@ sha256 = "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; @@ -41402,7 +42004,7 @@ sha256 = "1bfj56ackza8c1jja660v6ss9ii7prcaim5plnfqsv3k149r8qlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; @@ -41423,7 +42025,7 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; @@ -41444,7 +42046,7 @@ sha256 = "03ivnvqxc5xdcik4skk32fhr686yv2y5mj8w7v27dhyc0vdpfhvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-asciidoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-asciidoc"; sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr"; name = "ox-asciidoc"; }; @@ -41465,7 +42067,7 @@ sha256 = "0gfkb12rn40m71xv292dn3nj3h1bnn81698pinirp0nd8p4bvnin"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-gfm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-gfm"; sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q"; name = "ox-gfm"; }; @@ -41486,7 +42088,7 @@ sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-html5slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-html5slide"; sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn"; name = "ox-html5slide"; }; @@ -41507,7 +42109,7 @@ sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-impress-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-impress-js"; sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l"; name = "ox-impress-js"; }; @@ -41528,7 +42130,7 @@ sha256 = "0p03xzldz5v8lx3ip2pgll0da00ldfxmhr6r3jahwp6692kxpr6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; @@ -41549,7 +42151,7 @@ sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-mediawiki"; sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb"; name = "ox-mediawiki"; }; @@ -41570,7 +42172,7 @@ sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-nikola"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-nikola"; sha256 = "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4"; name = "ox-nikola"; }; @@ -41591,7 +42193,7 @@ sha256 = "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; @@ -41612,7 +42214,7 @@ sha256 = "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-pukiwiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-pukiwiki"; sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a"; name = "ox-pukiwiki"; }; @@ -41633,7 +42235,7 @@ sha256 = "196bjiij0nj19qsz95y9l44sr63673mxxj0cv6aa3ijpm48vmj9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-reveal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-reveal"; sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik"; name = "ox-reveal"; }; @@ -41654,7 +42256,7 @@ sha256 = "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-rst"; sha256 = "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0"; name = "ox-rst"; }; @@ -41675,7 +42277,7 @@ sha256 = "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-textile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-textile"; sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4"; name = "ox-textile"; }; @@ -41696,7 +42298,7 @@ sha256 = "1wmjmkx2nz7alhdrbbm59dsrhrhn9fm3kjsvv3lmwgqg029vi3fp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-tiddly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-tiddly"; sha256 = "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb"; name = "ox-tiddly"; }; @@ -41717,7 +42319,7 @@ sha256 = "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-trac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-trac"; sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa"; name = "ox-trac"; }; @@ -41730,15 +42332,15 @@ ox-twbs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-twbs"; - version = "20151223.1320"; + version = "20160221.834"; src = fetchFromGitHub { owner = "marsmining"; repo = "ox-twbs"; - rev = "fb3bb0dc9c7ded39605fb6dd805b81b25e1c8f19"; - sha256 = "0gjwpjr7gpqcnqxcgcfy2zgzh1i4z3dw9yryaqnqc8fbxrqqvk9p"; + rev = "38fdd35e483c9fec4a055f60c6bdf6b24e63ae5c"; + sha256 = "126afhg2v14zimh1cwm0ydgkhmhap4yrkfdcdzfssiy5kpf4p7yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; @@ -41759,7 +42361,7 @@ sha256 = "1wmjmkx2nz7alhdrbbm59dsrhrhn9fm3kjsvv3lmwgqg029vi3fp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-twiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-twiki"; sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0"; name = "ox-twiki"; }; @@ -41780,7 +42382,7 @@ sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/p4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/p4"; sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc"; name = "p4"; }; @@ -41801,7 +42403,7 @@ sha256 = "0cbsl184szbl486454jkn28zj4p7danp92h0zv8yscrlnyl68p0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; @@ -41816,14 +42418,14 @@ pname = "package-build"; version = "20160129.1532"; src = fetchFromGitHub { - owner = "milkypostman"; + owner = "melpa"; repo = "melpa"; - rev = "0fe7b0857828a041ee06b30edd2cd488cc3394c7"; - sha256 = "15q2fwihg7pc3r3vcp3magyddzz9ylbrwyba1rf2yxh54i0mgrl5"; + rev = "fdd35b0df7b71661561c155a8f7ba7c2236f3e30"; + sha256 = "0nl17brqf53pcjgrl4c608zvb82xl27xsliknkvl0zysx0kynkhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package-build"; - sha256 = "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-build"; + sha256 = "0618z43j6628jjj448hcigvsfwcs7p0n4bbcmqscrb6p59b7n4wx"; name = "package-build"; }; packageRequires = [ cl-lib ]; @@ -41843,7 +42445,7 @@ sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-filter"; sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm"; name = "package-filter"; }; @@ -41864,7 +42466,7 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; @@ -41885,7 +42487,7 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; @@ -41906,7 +42508,7 @@ sha256 = "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; @@ -41919,15 +42521,15 @@ packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "packed"; - version = "20150723.638"; + version = "20160209.1105"; src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; - rev = "9d77e39c9df29c6224302cb7973b2de7e05f8bd7"; - sha256 = "0743scd1g5xf3k9fbqv1qd9w421vfxwjlnb0vwix0ypahd83r3db"; + rev = "a6ed874d4c637ec62ed7d1e56a079d9e1b035bbb"; + sha256 = "0phs3ycp2vak95b3n0ppzlq4z83vf5q04cf3ms23qhsyr2y4y04v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; @@ -41948,7 +42550,7 @@ sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pacmacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pacmacs"; sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy"; name = "pacmacs"; }; @@ -41969,7 +42571,7 @@ sha256 = "0mqd18w98p6z0i08xx7jga10ljh9360x6sqfyvfq6bjfi2jvxdbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; @@ -41990,7 +42592,7 @@ sha256 = "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pager"; sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl"; name = "pager"; }; @@ -42011,7 +42613,7 @@ sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pager-default-keybindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pager-default-keybindings"; sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci"; name = "pager-default-keybindings"; }; @@ -42029,7 +42631,7 @@ sha256 = "1qnv84y0s437xcsjxh0gs9rb36pydba3qfrihvz5pqs9g9w7m94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/palette"; sha256 = "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0"; name = "palette"; }; @@ -42050,7 +42652,7 @@ sha256 = "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/palimpsest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/palimpsest"; sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk"; name = "palimpsest"; }; @@ -42071,7 +42673,7 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; @@ -42084,15 +42686,15 @@ pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "pandoc-mode"; - version = "20160204.340"; + version = "20160210.600"; src = fetchFromGitHub { owner = "joostkremers"; repo = "pandoc-mode"; - rev = "db7d7a6e887ec3d50e1f94a5743b5ef4c3af2914"; - sha256 = "1q3r0vhch3yb0kjnp7l3x5ma39w6ir9rini4i0c7jfh54abyf78r"; + rev = "60d3abea189467e04b5ce7dbe38d8b76ce5686cf"; + sha256 = "0g2iab5fmz85z532102lqn2wp1wgqy07bxkca95azi2gkbg0kbmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; @@ -42113,7 +42715,7 @@ sha256 = "01zc2cvkyfx80snwrm3cs8cbwgxmd56rgvvbsyq53r4q3zhdk1li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; @@ -42134,7 +42736,7 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; @@ -42151,11 +42753,11 @@ src = fetchFromGitHub { owner = "Malabarba"; repo = "paradox"; - rev = "8eca9880ed52d0d53d7d5e28858ec95987fa22e1"; - sha256 = "1vc59n9jmsn5d15v2m9xl64564h3q0c78pv4a4n3dhd1iz797l3x"; + rev = "ecc0190cef9f6edb11c602374126054bcf8615f0"; + sha256 = "1s1lmnrnwm2sq4kdw1byyn03k2qzjkb9fgngn2rrc2vm4wbmx8l7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; @@ -42174,7 +42776,7 @@ sha256 = "34dd7d8c07c697b54ea943566e6967012f7366d6f5a21e31e3d768716bc4928f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit"; sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; name = "paredit"; }; @@ -42195,7 +42797,7 @@ sha256 = "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; @@ -42216,7 +42818,7 @@ sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paredit-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit-menu"; sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p"; name = "paredit-menu"; }; @@ -42237,7 +42839,7 @@ sha256 = "0fds9s16c0dgq6ah98x4pv5bgwbikqwiikcxjzmk9g1m3s232fl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paren-completer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paren-completer"; sha256 = "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x"; name = "paren-completer"; }; @@ -42258,7 +42860,7 @@ sha256 = "0ggpb58dw4dv9i0czj064a8fdcalgjqgl4cm5zsk7hcvjcmal9af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; @@ -42279,7 +42881,7 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; @@ -42300,7 +42902,7 @@ sha256 = "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/parse-csv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parse-csv"; sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz"; name = "parse-csv"; }; @@ -42321,7 +42923,7 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; @@ -42334,15 +42936,15 @@ pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }: melpaBuild { pname = "pass"; - version = "20151109.603"; + version = "20160214.435"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "pass"; - rev = "f43f6ada151a81f0bca4397b78382e4f6160d0ad"; - sha256 = "14zpkxnwvwdi7wnjw4827lzzn6kw8wmwr2whavpi4rlkq8ix6dv2"; + rev = "2e1b08e7e4620e6abbb9151a27601405bbd2e480"; + sha256 = "0npm5kv00fcnb5ajj76jp1dc84zxp7fgrkn472yxdq4hppvx0ixv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; @@ -42363,7 +42965,7 @@ sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; @@ -42384,7 +42986,7 @@ sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/password-generator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-generator"; sha256 = "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb"; name = "password-generator"; }; @@ -42400,11 +43002,11 @@ version = "20151027.1649"; src = fetchgit { url = "http://git.zx2c4.com/password-store"; - rev = "bffca1ee21a38f1e808fa83e5df2fcf0f808cb9f"; - sha256 = "9c3ee0155b9d6b96acacaab8e799b23e92550ef136ffa2c07880029af3061733"; + rev = "0b2f803fe61992af02b8820c400984b1f615a299"; + sha256 = "36b4cf6025f52ac74daa0026f712951ee7a45c63401cce7f2286fd533e3f9885"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; @@ -42425,7 +43027,7 @@ sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/password-vault"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-vault"; sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a"; name = "password-vault"; }; @@ -42443,7 +43045,7 @@ sha256 = "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pastebin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastebin"; sha256 = "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj"; name = "pastebin"; }; @@ -42464,7 +43066,7 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; @@ -42485,7 +43087,7 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; @@ -42505,7 +43107,7 @@ sha256 = "c53b4f2c7449bf74648c091f249c33da3ddd8f621474a8901745b4e985cb26ab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pastels-on-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastels-on-dark-theme"; sha256 = "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh"; name = "pastels-on-dark-theme"; }; @@ -42526,7 +43128,7 @@ sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/path-headerline-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/path-headerline-mode"; sha256 = "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337"; name = "path-headerline-mode"; }; @@ -42547,7 +43149,7 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; @@ -42568,7 +43170,7 @@ sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pbcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pbcopy"; sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q"; name = "pbcopy"; }; @@ -42589,7 +43191,7 @@ sha256 = "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pc-bufsw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pc-bufsw"; sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5"; name = "pc-bufsw"; }; @@ -42610,7 +43212,7 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; @@ -42631,7 +43233,7 @@ sha256 = "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcmpl-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-args"; sha256 = "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr"; name = "pcmpl-args"; }; @@ -42652,7 +43254,7 @@ sha256 = "0pspxgicc0mkypp94r0jydmkjr3ngv8y4w1xpj93kp79hnvyls0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcmpl-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-git"; sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk"; name = "pcmpl-git"; }; @@ -42673,7 +43275,7 @@ sha256 = "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcmpl-homebrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-homebrew"; sha256 = "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly"; name = "pcmpl-homebrew"; }; @@ -42694,7 +43296,7 @@ sha256 = "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcmpl-pip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-pip"; sha256 = "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778"; name = "pcmpl-pip"; }; @@ -42715,7 +43317,7 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; @@ -42732,11 +43334,11 @@ src = fetchFromGitHub { owner = "joddie"; repo = "pcre2el"; - rev = "57ee828d07953329fd85ff85d6a4f27a0ce512a1"; - sha256 = "0ymbximchjfllrglkwv4lwb2sqprvva77vfbjb6n6kzni0ix70s3"; + rev = "166a10472002010692dbc35f323ffb8110a294c5"; + sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcre2el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcre2el"; sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; name = "pcre2el"; }; @@ -42757,7 +43359,7 @@ sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; @@ -42778,7 +43380,7 @@ sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pdb-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pdb-mode"; sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy"; name = "pdb-mode"; }; @@ -42799,7 +43401,7 @@ sha256 = "1cj489dv8dw7qkczwib47n7zsdw4k53jkxcqm57a2jpv42bhxz4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; @@ -42820,7 +43422,7 @@ sha256 = "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/peacock-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peacock-theme"; sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9"; name = "peacock-theme"; }; @@ -42841,7 +43443,7 @@ sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/peek-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peek-mode"; sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4"; name = "peek-mode"; }; @@ -42862,7 +43464,7 @@ sha256 = "1qi9qzcvclyw9wiamsw0z8q09hs0mfhaj2giny42nd6sqacvfr7m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/peep-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peep-dired"; sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735"; name = "peep-dired"; }; @@ -42883,7 +43485,7 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; @@ -42903,7 +43505,7 @@ sha256 = "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; @@ -42924,7 +43526,7 @@ sha256 = "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/perl-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perl-completion"; sha256 = "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b"; name = "perl-completion"; }; @@ -42945,7 +43547,7 @@ sha256 = "11fs78b7ssz18wr35vxf6h4zpfj4l4vsikfzayq6hyqjnchv7b45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/perl6-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perl6-mode"; sha256 = "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv"; name = "perl6-mode"; }; @@ -42966,7 +43568,7 @@ sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/perlbrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perlbrew"; sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8"; name = "perlbrew"; }; @@ -42987,7 +43589,7 @@ sha256 = "0h05j55y3csq91a5m2fg99y4rzsh7zca7hnifb6kic5zb3nahi00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; @@ -43008,7 +43610,7 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; @@ -43021,15 +43623,15 @@ persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persp-mode"; - version = "20160129.655"; + version = "20160221.655"; src = fetchFromGitHub { owner = "Bad-ptr"; repo = "persp-mode.el"; - rev = "fe239586593c9f7884d4a105ce21038ab464e251"; - sha256 = "0ah2zimbs59ivg7mvnz5zv3q4lx3ms43ip49l2zyf8jf2dnmhpn0"; + rev = "d38deb4f09be1c945862e37d673e236bf948107b"; + sha256 = "0p18290a79ccnv7dmfqy69jhdayj3fj2q82w5y9dzv0ln641rgxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; @@ -43050,7 +43652,7 @@ sha256 = "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persp-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persp-projectile"; sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm"; name = "persp-projectile"; }; @@ -43063,15 +43665,15 @@ perspective = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perspective"; - version = "20151211.1654"; + version = "20160219.1822"; src = fetchFromGitHub { owner = "nex3"; repo = "perspective-el"; - rev = "b6f4f05951d3f0d16a503bf462f136c689ede4df"; - sha256 = "1ajmyl3bg01a3gkhay4qibgk9a0r6s8rhf1cc1678w3cm0w6yvmd"; + rev = "add79422bf742c2d605137ba5fa02f1ec9bad9e2"; + sha256 = "1acbhnqnajk21jz0m575yq4fvdxfwjbq90nvwp7ikz690nhvjb0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; @@ -43092,7 +43694,7 @@ sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pg"; sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji"; name = "pg"; }; @@ -43113,7 +43715,7 @@ sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pgdevenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pgdevenv"; sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w"; name = "pgdevenv"; }; @@ -43134,7 +43736,7 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; @@ -43155,7 +43757,7 @@ sha256 = "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phabricator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phabricator"; sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c"; name = "phabricator"; }; @@ -43176,7 +43778,7 @@ sha256 = "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-autopair"; sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4"; name = "phi-autopair"; }; @@ -43197,7 +43799,7 @@ sha256 = "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-grep"; sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj"; name = "phi-grep"; }; @@ -43218,7 +43820,7 @@ sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-rectangle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-rectangle"; sha256 = "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy"; name = "phi-rectangle"; }; @@ -43239,7 +43841,7 @@ sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search"; sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g"; name = "phi-search"; }; @@ -43260,7 +43862,7 @@ sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-search-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-dired"; sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p"; name = "phi-search-dired"; }; @@ -43281,7 +43883,7 @@ sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; @@ -43302,7 +43904,7 @@ sha256 = "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-search-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-migemo"; sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6"; name = "phi-search-migemo"; }; @@ -43323,7 +43925,7 @@ sha256 = "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phoenix-dark-mono-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phoenix-dark-mono-theme"; sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939"; name = "phoenix-dark-mono-theme"; }; @@ -43344,7 +43946,7 @@ sha256 = "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phoenix-dark-pink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phoenix-dark-pink-theme"; sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr"; name = "phoenix-dark-pink-theme"; }; @@ -43365,7 +43967,7 @@ sha256 = "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; @@ -43386,7 +43988,7 @@ sha256 = "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-boris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-boris"; sha256 = "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g"; name = "php-boris"; }; @@ -43407,7 +44009,7 @@ sha256 = "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-boris-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-boris-minor-mode"; sha256 = "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl"; name = "php-boris-minor-mode"; }; @@ -43428,7 +44030,7 @@ sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-eldoc"; sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j"; name = "php-eldoc"; }; @@ -43449,7 +44051,7 @@ sha256 = "0206jv7rz9gm016lpfdwh2l0z6da25szc6hfxgcz2qvkzjpvrlr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; @@ -43470,7 +44072,7 @@ sha256 = "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php+-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php+-mode"; sha256 = "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik"; name = "php-plus--mode"; }; @@ -43491,7 +44093,7 @@ sha256 = "163albjkq7ldc9fki368540m7nl58qa70wfpff08gx3gsvywfnyi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-refactor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-refactor-mode"; sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s"; name = "php-refactor-mode"; }; @@ -43512,7 +44114,7 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; @@ -43533,7 +44135,7 @@ sha256 = "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; @@ -43554,7 +44156,7 @@ sha256 = "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pianobar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pianobar"; sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn"; name = "pianobar"; }; @@ -43575,7 +44177,7 @@ sha256 = "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/picolisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/picolisp-mode"; sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5"; name = "picolisp-mode"; }; @@ -43596,7 +44198,7 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pig-mode"; sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x"; name = "pig-mode"; }; @@ -43617,7 +44219,7 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pig-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pig-snippets"; sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2"; name = "pig-snippets"; }; @@ -43638,7 +44240,7 @@ sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pillar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pillar"; sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; name = "pillar"; }; @@ -43659,7 +44261,7 @@ sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pinboard-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinboard-api"; sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0"; name = "pinboard-api"; }; @@ -43680,7 +44282,7 @@ sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pinot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinot"; sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i"; name = "pinot"; }; @@ -43701,7 +44303,7 @@ sha256 = "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; @@ -43722,7 +44324,7 @@ sha256 = "0j4h6q1s2s9dw1pp22xsajchwg8nh3x4x5qxbzf19i1xbpcghw7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; @@ -43743,7 +44345,7 @@ sha256 = "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pivotal-tracker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pivotal-tracker"; sha256 = "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2"; name = "pivotal-tracker"; }; @@ -43764,7 +44366,7 @@ sha256 = "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pixie-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pixie-mode"; sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8"; name = "pixie-mode"; }; @@ -43777,15 +44379,15 @@ pixiv-novel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pixiv-novel-mode"; - version = "20150110.54"; + version = "20160220.821"; src = fetchFromGitHub { owner = "zonuexe"; repo = "pixiv-novel-mode.el"; - rev = "65809cf31816257d8c6c92868af6c30abf7b2043"; - sha256 = "14gn2qd72x3zfqzh2cngxcjpdiibyki1g4d1vdav5v9vcbglgm5d"; + rev = "0d1ca524d92b91f20a7105402a773bc21779b434"; + sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; @@ -43806,7 +44408,7 @@ sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; @@ -43827,7 +44429,7 @@ sha256 = "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; @@ -43848,7 +44450,7 @@ sha256 = "0rpiyp95k14fsc5hdbnj4hs3snh0vm8a2skcplsdwkmb5j9547w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plan9-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plan9-theme"; sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc"; name = "plan9-theme"; }; @@ -43869,7 +44471,7 @@ sha256 = "0q4zdw58yawqp9rhx04lhq0v7iaf61ydbw19gpw4an85j2hxrkzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/planet-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/planet-theme"; sha256 = "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9"; name = "planet-theme"; }; @@ -43890,7 +44492,7 @@ sha256 = "0jvs051ncpv7pwx2kr14fm1wqakabwc031xcv7lba0mx7shxzqdg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plantuml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plantuml-mode"; sha256 = "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264"; name = "plantuml-mode"; }; @@ -43911,7 +44513,7 @@ sha256 = "1k3bqv5y2xp1jl2hpf8qhs11yzhcl8k40fxqjzv7mvc0ysq9y6wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/platformio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/platformio-mode"; sha256 = "022l20sfyfkvp6kmmqxr7gcmcdx6b1dgsakjjnx8fknrpxr5kyps"; name = "platformio-mode"; }; @@ -43932,7 +44534,7 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; @@ -43953,7 +44555,7 @@ sha256 = "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plim-mode"; sha256 = "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi"; name = "plim-mode"; }; @@ -43974,7 +44576,7 @@ sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; @@ -43995,7 +44597,7 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; @@ -44013,7 +44615,7 @@ sha256 = "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsql"; sha256 = "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1"; name = "plsql"; }; @@ -44032,7 +44634,7 @@ sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pmdm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pmdm"; sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b"; name = "pmdm"; }; @@ -44053,7 +44655,7 @@ sha256 = "1p1j2kfwj7gzir7q5ls34k8764kwbnb6d0dhlw4zb4kvwlidp6c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/point-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/point-stack"; sha256 = "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch"; name = "point-stack"; }; @@ -44071,7 +44673,7 @@ sha256 = "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/point-undo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/point-undo"; sha256 = "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k"; name = "point-undo"; }; @@ -44092,7 +44694,7 @@ sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pointback"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pointback"; sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4"; name = "pointback"; }; @@ -44105,15 +44707,15 @@ polymode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "polymode"; - version = "20151216.733"; + version = "20160217.1428"; src = fetchFromGitHub { owner = "vitoshka"; repo = "polymode"; - rev = "af589492a49b4703d390a7a91b281cf0d10d91a7"; - sha256 = "0dlgmp1vmpvfjx19jz52xjmpg0fi1d0gy3zz7rsyjdkdw8dmr1v6"; + rev = "e90497a1e44adb95ec3cd761a95a47e4775849ee"; + sha256 = "0cg7pgzd19pq9m6gbj6pl2cnaq2impjbnss2w177i3ahkfm4rl4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/polymode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/polymode"; sha256 = "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4"; name = "polymode"; }; @@ -44134,7 +44736,7 @@ sha256 = "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pomodoro"; sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8"; name = "pomodoro"; }; @@ -44155,7 +44757,7 @@ sha256 = "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pony-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pony-mode"; sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl"; name = "pony-mode"; }; @@ -44168,15 +44770,15 @@ pony-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "pony-snippets"; - version = "20160126.2307"; + version = "20160204.2211"; src = fetchFromGitHub { owner = "seantallen"; repo = "pony-snippets"; - rev = "91c17c8af222f8177df12122d36399ea1ec6e8b4"; - sha256 = "139j696lvwpx5kwmk37xhaklid3zs431lyqyml2hy8wbz316jrra"; + rev = "a6615ab0693f17fc47ec45753202010238157810"; + sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pony-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pony-snippets"; sha256 = "06rrzfg20kzpscnqr2lin9jvrcydq4wnrv7nj1d0lm6988qz88jx"; name = "pony-snippets"; }; @@ -44197,7 +44799,7 @@ sha256 = "0jlycv0ck5kbszwc0v2gbka6k5h39nz8763ws0v8jada7zzmyvxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; @@ -44218,7 +44820,7 @@ sha256 = "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; @@ -44239,7 +44841,7 @@ sha256 = "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/poporg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/poporg"; sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8"; name = "poporg"; }; @@ -44260,7 +44862,7 @@ sha256 = "19sbdxs6l66nflfb4kmx4lb6z0shwpfq79b5h9hhi0xr70xacd4b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; @@ -44281,7 +44883,7 @@ sha256 = "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; @@ -44294,15 +44896,15 @@ popup-imenu = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup }: melpaBuild { pname = "popup-imenu"; - version = "20160108.923"; + version = "20160214.1104"; src = fetchFromGitHub { owner = "ancane"; repo = "popup-imenu"; - rev = "81a47cb6ffa5082fcb1165835040228057474c48"; - sha256 = "0fvj61n0kriniz1v96lxbdb9x6gbx00xwkcg83ajqv7f18j3m6wh"; + rev = "29ac87726987ab5d451e04251336fd8c2a782450"; + sha256 = "07gwfmp53gwk2zpip5m1vrn3i36c22c71z3grn65hm3k3ykl2a1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; @@ -44323,7 +44925,7 @@ sha256 = "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-kill-ring"; sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip"; name = "popup-kill-ring"; }; @@ -44344,7 +44946,7 @@ sha256 = "19c916bz354di7p4md8456xhf3i72db86mwlk2wrq0d4kx16dh0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-switcher"; sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1"; name = "popup-switcher"; }; @@ -44365,7 +44967,7 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; @@ -44386,7 +44988,7 @@ sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/portage-navi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/portage-navi"; sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg"; name = "portage-navi"; }; @@ -44407,7 +45009,7 @@ sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; @@ -44417,6 +45019,27 @@ license = lib.licenses.free; }; }) {}; + pov-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pov-mode"; + version = "20120825.916"; + src = fetchFromGitHub { + owner = "melmothx"; + repo = "pov-mode"; + rev = "e60e497f84a310814ccf97b056da77dd0f42394f"; + sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pov-mode"; + sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9"; + name = "pov-mode"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/pov-mode"; + license = lib.licenses.free; + }; + }) {}; pow = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pow"; @@ -44428,7 +45051,7 @@ sha256 = "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pow"; sha256 = "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn"; name = "pow"; }; @@ -44449,7 +45072,7 @@ sha256 = "0dq7fqlv72p72hbshzbwz5k40mqfdw10v9hsd1m18s2rf7082570"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; @@ -44470,7 +45093,7 @@ sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/powerline-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powerline-evil"; sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr"; name = "powerline-evil"; }; @@ -44483,15 +45106,15 @@ powershell = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "powershell"; - version = "20160127.2323"; + version = "20160210.2058"; src = fetchFromGitHub { owner = "jschaf"; repo = "powershell.el"; - rev = "7feddfc9ea073b374575c67a10692b7bfc35907b"; - sha256 = "096dks3wib5x29k722d7qkgr61n3qk29gw3rzkwsrid23zhvgnkn"; + rev = "0e51db56fddcafcfe0611142ea939969673c2b58"; + sha256 = "1ym373mjyk3vfbw2c918zgaf9m35j8bkrpcj9d8m9drf4h7a8d3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; @@ -44509,7 +45132,7 @@ sha256 = "10gsdjdr8qngimqh57qxcljjnypbf38asxqb3zlfwc2ls52fc19q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pp-c-l"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pp-c-l"; sha256 = "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v"; name = "pp-c-l"; }; @@ -44527,7 +45150,7 @@ sha256 = "0zlmcrg8gx812gm04cil7p2z0g4814c158yv1ghmrbxshn8p45fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pp+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pp+"; sha256 = "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq"; name = "pp-plus"; }; @@ -44548,7 +45171,7 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; @@ -44569,7 +45192,7 @@ sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/preproc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/preproc-font-lock"; sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4"; name = "preproc-font-lock"; }; @@ -44590,7 +45213,7 @@ sha256 = "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/preseed-generic-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/preseed-generic-mode"; sha256 = "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j"; name = "preseed-generic-mode"; }; @@ -44608,7 +45231,7 @@ sha256 = "1fn24399wsn12453py0hw2vbbkrkakiwi06cjvjzsdk7g3326ma4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pretty-lambdada"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-lambdada"; sha256 = "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6"; name = "pretty-lambdada"; }; @@ -44629,7 +45252,7 @@ sha256 = "0ccqym98c6zdyrparj5n97bpp9rspxb3z5lqfcrjypp0kn04z1ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; @@ -44650,7 +45273,7 @@ sha256 = "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pretty-sha-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-sha-path"; sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq"; name = "pretty-sha-path"; }; @@ -44671,7 +45294,7 @@ sha256 = "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-symbols"; sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb"; name = "pretty-symbols"; }; @@ -44692,7 +45315,7 @@ sha256 = "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/private"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/private"; sha256 = "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g"; name = "private"; }; @@ -44713,7 +45336,7 @@ sha256 = "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/private-diary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/private-diary"; sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1"; name = "private-diary"; }; @@ -44734,7 +45357,7 @@ sha256 = "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/proc-net"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/proc-net"; sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv"; name = "proc-net"; }; @@ -44755,7 +45378,7 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; @@ -44776,7 +45399,7 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; @@ -44797,7 +45420,7 @@ sha256 = "18j0jwp8z4ff7xfiijyh09cvb14mbjfaygin2qjp6bxgx3c1mpin"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; @@ -44818,7 +45441,7 @@ sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/professional-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/professional-theme"; sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5"; name = "professional-theme"; }; @@ -44839,7 +45462,7 @@ sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prognth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prognth"; sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm"; name = "prognth"; }; @@ -44860,7 +45483,7 @@ sha256 = "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/programmer-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/programmer-dvorak"; sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv"; name = "programmer-dvorak"; }; @@ -44881,7 +45504,7 @@ sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; @@ -44900,7 +45523,7 @@ sha256 = "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-local-variables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-local-variables"; sha256 = "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl"; name = "project-local-variables"; }; @@ -44921,7 +45544,7 @@ sha256 = "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; @@ -44942,7 +45565,7 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; @@ -44962,7 +45585,7 @@ sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; @@ -44975,15 +45598,15 @@ projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "projectile"; - version = "20160130.657"; + version = "20160221.240"; src = fetchFromGitHub { owner = "bbatsov"; repo = "projectile"; - rev = "543841e3f6dc4d46c75755cf227b22acc1bfad48"; - sha256 = "17w0nlr7h8dga8fl48lfb22i898cbgnqmxrqa7cah212yqyn4fp0"; + rev = "7c484a56ef2cce5034f759185f53e47f827b91c2"; + sha256 = "1lvkpwy17c0d2yqvrf3b6cawzk65k7mwi0qrk30bmbz9mxq3337w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; @@ -45004,7 +45627,7 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-codesearch"; sha256 = "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk"; name = "projectile-codesearch"; }; @@ -45017,15 +45640,15 @@ projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: melpaBuild { pname = "projectile-rails"; - version = "20160204.1003"; + version = "20160211.1640"; src = fetchFromGitHub { owner = "asok"; repo = "projectile-rails"; - rev = "21ce05e412b0efebfeab9f84d38c679758ddbf76"; - sha256 = "0f0siz230xsv20h8wmwa1i8wdsp964y6qmb2i3l485yh03bz1x95"; + rev = "7fa21453f97801eb44ed45b92e14d6b665387970"; + sha256 = "1x9jp5bb14gc08irq3dhcn2j6a4kqfp0h3vpriz939dianz580ih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; @@ -45046,7 +45669,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; @@ -45067,7 +45690,7 @@ sha256 = "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-speedbar"; sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp"; name = "projectile-speedbar"; }; @@ -45088,7 +45711,7 @@ sha256 = "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projector"; sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf"; name = "projector"; }; @@ -45109,7 +45732,7 @@ sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; @@ -45130,7 +45753,7 @@ sha256 = "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projmake-mode"; sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882"; name = "projmake-mode"; }; @@ -45151,7 +45774,7 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; @@ -45172,7 +45795,7 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; @@ -45193,7 +45816,7 @@ sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/propfont-mixed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/propfont-mixed"; sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y"; name = "propfont-mixed"; }; @@ -45214,7 +45837,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prosjekt"; sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck"; name = "prosjekt"; }; @@ -45231,11 +45854,11 @@ src = fetchFromGitHub { owner = "google"; repo = "protobuf"; - rev = "bd8a476510d17d3841ff2509fbd67b7f4b543c1c"; - sha256 = "0x6419waryq14y1q8v53riwjnqfw6azf4sfpsik9qjsznzmlgxx9"; + rev = "32daf513ced8d51e8de6cc8d800cfc972c4df5d6"; + sha256 = "03mi6g58y9j9pqrh8qjygcv20f3q58cry4phv5q6807rxj4q2hpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; @@ -45256,7 +45879,7 @@ sha256 = "0awlkvbll2cxc9rzzm1ln5qhp05jikihcay1wz74dkwzwlfjlp17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psc-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psc-ide"; sha256 = "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9"; name = "psc-ide"; }; @@ -45277,7 +45900,7 @@ sha256 = "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; @@ -45298,7 +45921,7 @@ sha256 = "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; @@ -45319,7 +45942,7 @@ sha256 = "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psvn"; sha256 = "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n"; name = "psvn"; }; @@ -45340,7 +45963,7 @@ sha256 = "1q8fk25qwnnm9z1zcf9f1k3b060lk6g6f16c8db90psp6za0xdwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psysh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psysh"; sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5"; name = "psysh"; }; @@ -45361,7 +45984,7 @@ sha256 = "0ca8j7xlqxbidqfz2iarwn7qq4v12pwvsq6vzj2473n2g1c09xzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; @@ -45382,7 +46005,7 @@ sha256 = "024g793y6vqhk5h6vqjv5hljvfyb0j6b6j51fjhijgdxmqhlk9vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; @@ -45403,7 +46026,7 @@ sha256 = "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; @@ -45424,7 +46047,7 @@ sha256 = "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; @@ -45445,7 +46068,7 @@ sha256 = "11mkf9gvjz63szdvhwlqnd6j2r9ij2fh8l6zkf7hl2zlwyyivcmp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; @@ -45466,7 +46089,7 @@ sha256 = "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; @@ -45487,7 +46110,7 @@ sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/purple-haze-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purple-haze-theme"; sha256 = "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m"; name = "purple-haze-theme"; }; @@ -45508,7 +46131,7 @@ sha256 = "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/purty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purty-mode"; sha256 = "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m"; name = "purty-mode"; }; @@ -45529,7 +46152,7 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; @@ -45550,7 +46173,7 @@ sha256 = "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/px"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/px"; sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44"; name = "px"; }; @@ -45571,7 +46194,7 @@ sha256 = "1iw94m1bvsmadlj16f8ymwx0q6f9lqysy7by76hkpiwqqhd2i8rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; @@ -45592,7 +46215,7 @@ sha256 = "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-gnitset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-gnitset"; sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r"; name = "py-gnitset"; }; @@ -45613,7 +46236,7 @@ sha256 = "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-import-check"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-import-check"; sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k"; name = "py-import-check"; }; @@ -45634,7 +46257,7 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; @@ -45655,7 +46278,7 @@ sha256 = "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-smart-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-smart-operator"; sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4"; name = "py-smart-operator"; }; @@ -45676,7 +46299,7 @@ sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-test"; sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb"; name = "py-test"; }; @@ -45697,7 +46320,7 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; @@ -45718,7 +46341,7 @@ sha256 = "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; @@ -45739,7 +46362,7 @@ sha256 = "1q9fmdrnsqmisykndxzy9bvjl6n1rsmfgvh3h8fkg6b44ypcyyw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pydoc"; sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n"; name = "pydoc"; }; @@ -45759,7 +46382,7 @@ sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pydoc-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pydoc-info"; sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf"; name = "pydoc-info"; }; @@ -45772,15 +46395,15 @@ pyenv-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic }: melpaBuild { pname = "pyenv-mode"; - version = "20151105.441"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "pyenv-mode"; - rev = "93ddeb2c0fabc224496cdf5ff688243a208376c4"; - sha256 = "0017xk95293sc37127hg9bbbh5glq34sdc1b6bx6ykzny6g49fd3"; + rev = "560614d47e3b0331f5c0e136763be69ef052048d"; + sha256 = "049wgwygdaa0p8p4pl37wkc06nam9ph17i9gzcg7w0hfwghjrc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; @@ -45801,7 +46424,7 @@ sha256 = "1sclhzv3w9fg54dg4qhlfbc0p1z5clyr8phrckhypvlwfgbar4b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyenv-mode-auto"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyenv-mode-auto"; sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd"; name = "pyenv-mode-auto"; }; @@ -45822,7 +46445,7 @@ sha256 = "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyfmt"; sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6"; name = "pyfmt"; }; @@ -45843,7 +46466,7 @@ sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyimpsort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyimpsort"; sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k"; name = "pyimpsort"; }; @@ -45860,11 +46483,11 @@ src = fetchFromGitHub { owner = "PyCQA"; repo = "pylint"; - rev = "41f335f5942ba28c7e006d20b62a7a5e68a55a50"; - sha256 = "1biqzjyrqkb2whscqz1h4x82h6jhvafbzx174apirc6h1vd1jhhq"; + rev = "b3f6242886a82f5723f584e6743f3c3e188e0c32"; + sha256 = "0vl60jr7zfv74psngin95qq0ykx0zxxzsdqi78ankarylzzxb0wp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pylint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pylint"; sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx"; name = "pylint"; }; @@ -45885,7 +46508,7 @@ sha256 = "1nlybqvy64lc0c65j9wbk4lx932lz0b8hxw8zm1vgmqppqcyn0p5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pytest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pytest"; sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh"; name = "pytest"; }; @@ -45906,7 +46529,7 @@ sha256 = "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-cell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-cell"; sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf"; name = "python-cell"; }; @@ -45927,7 +46550,7 @@ sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-django"; sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k"; name = "python-django"; }; @@ -45940,15 +46563,15 @@ python-docstring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-docstring"; - version = "20150907.1504"; + version = "20160210.1759"; src = fetchFromGitHub { owner = "glyph"; repo = "python-docstring-mode"; - rev = "263879fb339b18ee55d9463697d6f0a73171ee78"; - sha256 = "1a2019172ycw7sdfjrxpyrg41ky9cp09mx30x6cr2qkc1w9pkyrv"; + rev = "711d07aef05218495625b696c2a281beac48537c"; + sha256 = "07nnj2rkpcfad8m9pynai1a3w5k9zazl1xpgm2mldy162snrwpql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-docstring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-docstring"; sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw"; name = "python-docstring"; }; @@ -45969,7 +46592,7 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; @@ -45990,7 +46613,7 @@ sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-info"; sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy"; name = "python-info"; }; @@ -46003,15 +46626,15 @@ python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-mode"; - version = "20160131.1407"; + version = "20160217.708"; src = fetchFromGitLab { owner = "python-mode-devs"; repo = "python-mode"; - rev = "ec3d421056af3fd88be31834e73b187c5a92422e"; - sha256 = "00j0niji9764g933s484k7bz20kzkim3vafwb6cbadhiag74xicv"; + rev = "3e3ef05f0533647bf21ccd9826b8dc61848c48ff"; + sha256 = "0mf0w4jx3w91b57q989fi06f0r9km8nypsgbmqx03ljxv5i3pdhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-mode"; sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k"; name = "python-mode"; }; @@ -46024,15 +46647,15 @@ python-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, folding, lib, melpaBuild, python ? null }: melpaBuild { pname = "python-x"; - version = "20151229.1148"; + version = "20160219.956"; src = fetchFromGitHub { owner = "wavexx"; repo = "python-x.el"; - rev = "b158c3925f212336b1bc1a95263700e47753e4ed"; - sha256 = "1254ng5fgmbfbn62wpjwmsx8y9j4vs3xcxpyqjb8s3npjjmv4kd8"; + rev = "8b7446fb30c9f217e3e7cca06a20c3dac63b7824"; + sha256 = "0hzx7v49j1xvn2k1hpql455i63s2rcd6nyjr1ni2ns5vi0pgb6ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; @@ -46053,7 +46676,7 @@ sha256 = "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python3-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python3-info"; sha256 = "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3"; name = "python3-info"; }; @@ -46066,15 +46689,15 @@ pythonic = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pythonic"; - version = "20160202.245"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "pythonic"; - rev = "9377f1c33d7ef21afb571211f60bf90ac7ffc2cd"; - sha256 = "0p0pz88wf5vcva77vskz4picj8c3drbnz3jzi6yysgp7zw3friwm"; + rev = "0279cbc8e7fba8900060da0d1be4fae7404109b8"; + sha256 = "16sp3mg5jzx89lgr3kr61fqw1p9gc5zxq2mi9rpgqi5hkkcpnpgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; @@ -46095,7 +46718,7 @@ sha256 = "1llm8vlmwkhdnr07xgcjx59d4na96kkhmfncww6rqkfc5i6zfarm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; @@ -46116,7 +46739,7 @@ sha256 = "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; @@ -46137,7 +46760,7 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; @@ -46158,7 +46781,7 @@ sha256 = "0q7krn16dja0ifnc8h587lh5nilwbixxgsh5179clx5l57naix62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quack"; sha256 = "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii"; name = "quack"; }; @@ -46179,7 +46802,7 @@ sha256 = "09vw8nf9yj3v2ks25n39fbn2qk1fld0hmaq1dpzaqsavsbd4dwc1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; @@ -46192,15 +46815,15 @@ quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }: melpaBuild { pname = "quelpa"; - version = "20151203.305"; + version = "20160220.919"; src = fetchFromGitHub { owner = "quelpa"; repo = "quelpa"; - rev = "e011b4fa916a8b6057225f3e7ee6befc8928d443"; - sha256 = "0v5fcbjf7ndmywjsq9di3cwxsh2csv5pj3mqgqb340i2yp77r9wy"; + rev = "a5349ea2d11c046b1834b7bae29e90b26b2003d2"; + sha256 = "1gmxyhv47yjyaik7bkxl8ndziz2ls5qpij8nz18ynx7s521hm3hj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quelpa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quelpa"; sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs"; name = "quelpa"; }; @@ -46221,7 +46844,7 @@ sha256 = "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quelpa-use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quelpa-use-package"; sha256 = "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9"; name = "quelpa-use-package"; }; @@ -46242,7 +46865,7 @@ sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quick-buffer-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quick-buffer-switch"; sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40"; name = "quick-buffer-switch"; }; @@ -46263,7 +46886,7 @@ sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quick-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quick-preview"; sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9"; name = "quick-preview"; }; @@ -46284,7 +46907,7 @@ sha256 = "1i7qqpqdwifd6vxpyyxyzq0b3wc82r7pqcw07bj0x2lhrjnqrxby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quickref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quickref"; sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1"; name = "quickref"; }; @@ -46297,16 +46920,16 @@ quickrun = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quickrun"; - version = "20160202.2041"; + version = "20160216.816"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-quickrun"; - rev = "ffd92ae15d9a4ffd8d0a4379a166c8a8a867bb45"; - sha256 = "1l0l9rsjw49s1qmw70fm9a66wd1mlhka5cfvggsqpp56if0j8yyc"; + rev = "fe23f324b0198f8827cc0768e8507a02194eec68"; + sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quickrun"; - sha256 = "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quickrun"; + sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; packageRequires = [ cl-lib emacs ]; @@ -46326,7 +46949,7 @@ sha256 = "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; @@ -46347,7 +46970,7 @@ sha256 = "197llsjhxjvk5wp6iz3siyv3911y82r08s9bavma3dgzj2s978s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; @@ -46360,15 +46983,15 @@ racket-mode = callPackage ({ emacs, faceup, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "racket-mode"; - version = "20160201.1957"; + version = "20160213.1104"; src = fetchFromGitHub { owner = "greghendershott"; repo = "racket-mode"; - rev = "77473387fb693ece0aebf83d4f8547aace87efd2"; - sha256 = "1sywpgp6a1syp2rgba0969xj01f5988l7fgf8j07i06i3drydadj"; + rev = "dbdffd0bdd3d2deec3a6ea213e7f19be23d84112"; + sha256 = "1clpwjnph2ygmkn4r98wv3nxkvw4hg6nc01xph517lc7n15a3vri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/racket-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/racket-mode"; sha256 = "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb"; name = "racket-mode"; }; @@ -46389,7 +47012,7 @@ sha256 = "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/railgun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/railgun"; sha256 = "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0"; name = "railgun"; }; @@ -46410,7 +47033,7 @@ sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rails-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rails-log-mode"; sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0"; name = "rails-log-mode"; }; @@ -46431,7 +47054,7 @@ sha256 = "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rails-new"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rails-new"; sha256 = "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h"; name = "rails-new"; }; @@ -46452,7 +47075,7 @@ sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/railscasts-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/railscasts-theme"; sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r"; name = "railscasts-theme"; }; @@ -46473,7 +47096,7 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; @@ -46494,7 +47117,7 @@ sha256 = "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; @@ -46515,7 +47138,7 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; @@ -46536,7 +47159,7 @@ sha256 = "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; @@ -46557,7 +47180,7 @@ sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rand-theme"; sha256 = "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h"; name = "rand-theme"; }; @@ -46578,7 +47201,7 @@ sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/random-splash-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/random-splash-image"; sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik"; name = "random-splash-image"; }; @@ -46599,7 +47222,7 @@ sha256 = "0dm5k0g39dlwag3rqyiq8vzsg2z6ypajicjs7g5lcd88nypjl461"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; @@ -46620,7 +47243,7 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; @@ -46641,7 +47264,7 @@ sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; @@ -46662,7 +47285,7 @@ sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rbt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rbt"; sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm"; name = "rbt"; }; @@ -46683,7 +47306,7 @@ sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-alert"; sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a"; name = "rcirc-alert"; }; @@ -46704,7 +47327,7 @@ sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-alertify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-alertify"; sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws"; name = "rcirc-alertify"; }; @@ -46725,7 +47348,7 @@ sha256 = "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-color"; sha256 = "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5"; name = "rcirc-color"; }; @@ -46746,7 +47369,7 @@ sha256 = "0d99x7dfw5xrn62knvs65lvn6xyy7399xwqyy47bs4n81v25aqbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-groups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-groups"; sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx"; name = "rcirc-groups"; }; @@ -46767,7 +47390,7 @@ sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-notify"; sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v"; name = "rcirc-notify"; }; @@ -46780,15 +47403,15 @@ rcirc-styles = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-styles"; - version = "20160110.1650"; + version = "20160206.2050"; src = fetchFromGitHub { owner = "aaron-em"; repo = "rcirc-styles.el"; - rev = "d0547eda261d0885951b283e5622345f999d2083"; - sha256 = "0yhmdkvswnn5rga5xzysfpivbz9wdkzbm49licilc2fp1dgcvd6i"; + rev = "f313bf6a7470bed314b27c7a40558cb787d7bc67"; + sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; @@ -46809,7 +47432,7 @@ sha256 = "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; @@ -46830,7 +47453,7 @@ sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rdp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rdp"; sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz"; name = "rdp"; }; @@ -46851,7 +47474,7 @@ sha256 = "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/react-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/react-snippets"; sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73"; name = "react-snippets"; }; @@ -46872,7 +47495,7 @@ sha256 = "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/readability"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/readability"; sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv"; name = "readability"; }; @@ -46893,7 +47516,7 @@ sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/readline-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/readline-complete"; sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277"; name = "readline-complete"; }; @@ -46914,7 +47537,7 @@ sha256 = "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; @@ -46927,15 +47550,15 @@ realgud = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, load-relative, loc-changes, melpaBuild, test-simple }: melpaBuild { pname = "realgud"; - version = "20160110.1640"; + version = "20160217.2022"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-dbgr"; - rev = "8c8f9f13d6dcfa8c1db9726064ccc6da17ebee55"; - sha256 = "0v02kf8dcxrl09g72d1s8akn8qifvdwgxgnwrbdc1z6n53pi07z5"; + rev = "74ee75c3b7b74ae173374592ce82ad3a58b35424"; + sha256 = "089hyydlhnlawa7wflnf0mph4h96npxvr8czyffsyng88jy46cqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/realgud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/realgud"; sha256 = "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s"; name = "realgud"; }; @@ -46956,7 +47579,7 @@ sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rebox2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rebox2"; sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw"; name = "rebox2"; }; @@ -46974,7 +47597,7 @@ sha256 = "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/recentf-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recentf-ext"; sha256 = "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq"; name = "recentf-ext"; }; @@ -46995,7 +47618,7 @@ sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/recompile-on-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recompile-on-save"; sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn"; name = "recompile-on-save"; }; @@ -47016,7 +47639,7 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; @@ -47037,7 +47660,7 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; @@ -47058,7 +47681,7 @@ sha256 = "14ysbjdndsmcc4j3zhc3nfjxhdm9310jx237mrp98ancxdhsh4q9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; @@ -47079,7 +47702,7 @@ sha256 = "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/recursive-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recursive-narrow"; sha256 = "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f"; name = "recursive-narrow"; }; @@ -47100,7 +47723,7 @@ sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/redis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redis"; sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a"; name = "redis"; }; @@ -47118,7 +47741,7 @@ sha256 = "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/redo+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redo+"; sha256 = "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2"; name = "redo-plus"; }; @@ -47139,7 +47762,7 @@ sha256 = "0s38mi9w1dm9fzhd3l8xvq9x33rkb5vvd66jibza50dhn9dmakax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; @@ -47159,7 +47782,7 @@ sha256 = "5547c5db0caa147ae2fa0099b9c58a8629b47bf4facb6c5cc72cee45e84be392"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/redshank"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redshank"; sha256 = "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b"; name = "redshank"; }; @@ -47180,7 +47803,7 @@ sha256 = "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/refheap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/refheap"; sha256 = "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk"; name = "refheap"; }; @@ -47201,7 +47824,7 @@ sha256 = "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/regex-dsl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/regex-dsl"; sha256 = "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr"; name = "regex-dsl"; }; @@ -47222,7 +47845,7 @@ sha256 = "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/regex-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/regex-tool"; sha256 = "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v"; name = "regex-tool"; }; @@ -47243,7 +47866,7 @@ sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/region-bindings-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/region-bindings-mode"; sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69"; name = "region-bindings-mode"; }; @@ -47264,7 +47887,7 @@ sha256 = "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/region-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/region-state"; sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x"; name = "region-state"; }; @@ -47285,7 +47908,7 @@ sha256 = "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/register-channel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/register-channel"; sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr"; name = "register-channel"; }; @@ -47298,15 +47921,15 @@ relative-buffers = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "relative-buffers"; - version = "20150115.1301"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "relative-buffers"; - rev = "7e37e118cc231c8581891bef0e4b5bb775920070"; - sha256 = "023fwcqyy5gg234m772vpws751pharjwn3b0433i2sszna2z6xrf"; + rev = "88c24259ed62b85adff6850e34bbbe844caddccf"; + sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/relative-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relative-buffers"; sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i"; name = "relative-buffers"; }; @@ -47327,7 +47950,7 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; @@ -47348,7 +47971,7 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; @@ -47369,7 +47992,7 @@ sha256 = "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/remark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/remark-mode"; sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0"; name = "remark-mode"; }; @@ -47390,7 +48013,7 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; @@ -47411,7 +48034,7 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; @@ -47430,7 +48053,7 @@ sha256 = "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/replace-from-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-from-region"; sha256 = "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb"; name = "replace-from-region"; }; @@ -47440,6 +48063,27 @@ license = lib.licenses.free; }; }) {}; + replace-pairs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "replace-pairs"; + version = "20160207.651"; + src = fetchFromGitHub { + owner = "davidshepherd7"; + repo = "replace-pairs"; + rev = "ef6f2719aab7714f6cb209fd3dd6d2e720681b3c"; + sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-pairs"; + sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb"; + name = "replace-pairs"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/replace-pairs"; + license = lib.licenses.free; + }; + }) {}; replace-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-plus"; version = "20151231.1749"; @@ -47448,7 +48092,7 @@ sha256 = "1af4sdhkzxknqzdkzc5gpm5j3s5k776j293hqq7cqzk533fdh4iz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/replace+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace+"; sha256 = "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn"; name = "replace-plus"; }; @@ -47469,7 +48113,7 @@ sha256 = "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; @@ -47490,7 +48134,7 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; @@ -47511,7 +48155,7 @@ sha256 = "05a88r2jp169x99abz9wrr1i8ch0bg3dlmaalxwqfmlzci0lksx2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; @@ -47532,7 +48176,7 @@ sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/request"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request"; sha256 = "09gxfy34a13wr0agmhn0nldxaiyc72rx9xi56jirsvji4dg5j6mm"; name = "request"; }; @@ -47553,7 +48197,7 @@ sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/request-deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request-deferred"; sha256 = "19s8q9a01v0g897s9ass1mr5wbzy82rrfcnqpvcvp05q4y787dn9"; name = "request-deferred"; }; @@ -47574,7 +48218,7 @@ sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; @@ -47595,7 +48239,7 @@ sha256 = "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/requirejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/requirejs-mode"; sha256 = "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r"; name = "requirejs-mode"; }; @@ -47616,7 +48260,7 @@ sha256 = "055km3g4bwl73kca6ky3qzzmy103w0mqcfscj33ppdhg2n7m94n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; @@ -47637,7 +48281,7 @@ sha256 = "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; @@ -47658,7 +48302,7 @@ sha256 = "08j4m70j9xdl731bwa4vh656lji0w0f9mm1aki0qqd5msglw6kvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/restclient"; sha256 = "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc"; name = "restclient"; }; @@ -47679,7 +48323,7 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; @@ -47697,7 +48341,7 @@ sha256 = "1h27kg2k8f6smbqxandmvg859qk66jydbbbiwwjmk7316k66w8qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/reveal-next"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reveal-next"; sha256 = "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2"; name = "reveal-next"; }; @@ -47718,8 +48362,8 @@ sha256 = "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/reverse-theme"; - sha256 = "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reverse-theme"; + sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; packageRequires = []; @@ -47739,7 +48383,7 @@ sha256 = "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/review-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/review-mode"; sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n"; name = "review-mode"; }; @@ -47760,7 +48404,7 @@ sha256 = "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/revive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/revive"; sha256 = "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5"; name = "revive"; }; @@ -47781,7 +48425,7 @@ sha256 = "0zmby92mjszh77r5wh8sccqv3a5bb9sfhac8g55nasavw8hfplvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/reykjavik-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reykjavik-theme"; sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35"; name = "reykjavik-theme"; }; @@ -47799,7 +48443,7 @@ sha256 = "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rfringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rfringe"; sha256 = "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6"; name = "rfringe"; }; @@ -47820,7 +48464,7 @@ sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rhtml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rhtml-mode"; sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35"; name = "rhtml-mode"; }; @@ -47841,7 +48485,7 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; @@ -47862,7 +48506,7 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; @@ -47883,7 +48527,7 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; @@ -47904,7 +48548,7 @@ sha256 = "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rings"; sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7"; name = "rings"; }; @@ -47925,7 +48569,7 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; @@ -47946,7 +48590,7 @@ sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; @@ -47967,7 +48611,7 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; @@ -47980,15 +48624,15 @@ rope-read-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rope-read-mode"; - version = "20160110.1233"; + version = "20160208.1710"; src = fetchFromGitHub { owner = "marcowahl"; repo = "rope-read-mode"; - rev = "3d8ba4999dbdbf025197ee43dfd7a9ee9c25e78e"; - sha256 = "0k88zjz4v2qllz9bkrhza91ckw5xx4aimgmcqpzcq3zl5py36h4l"; + rev = "a763ebdbc9876cddf00794b08566ff6b87364064"; + sha256 = "07jvk55asxn9lqqzgfl16zxgj2s30jqkygiha067rasbh4hs1ihi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; @@ -48001,15 +48645,15 @@ rotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rotate"; - version = "20140123.316"; + version = "20160215.118"; src = fetchFromGitHub { owner = "daic-h"; repo = "emacs-rotate"; - rev = "04b64c6e20c465102ecafe0e099986b0808582bf"; - sha256 = "0spgpq2cmckpl7j2193axy5yqws5dwrhik69d0bv0ylwzxp3npvg"; + rev = "868122fa807db32762a68defcf69654a28a5a39f"; + sha256 = "13xrjd5p2zq0r8ifbqbrgjfm0jj09nyxcbhk262jr6f171rf0y2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rotate"; sha256 = "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx"; name = "rotate"; }; @@ -48030,7 +48674,7 @@ sha256 = "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/roy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/roy-mode"; sha256 = "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g"; name = "roy-mode"; }; @@ -48051,7 +48695,7 @@ sha256 = "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rpm-spec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rpm-spec-mode"; sha256 = "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd"; name = "rpm-spec-mode"; }; @@ -48072,7 +48716,7 @@ sha256 = "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rpn-calc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rpn-calc"; sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs"; name = "rpn-calc"; }; @@ -48093,7 +48737,7 @@ sha256 = "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; @@ -48114,7 +48758,7 @@ sha256 = "1zbpp9n35l589i7yla4l93nvp5ngwsj9p44glhz9jxzlkjwig9a1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; @@ -48127,15 +48771,15 @@ rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtags"; - version = "20160204.136"; + version = "20160221.1307"; src = fetchFromGitHub { owner = "Andersbakken"; repo = "rtags"; - rev = "b40a299bbd0b96d25680fe1fe24e3d512afc2673"; - sha256 = "1bs4ylnkzkj6ckhhhbna2ah3y570zm1wh5wy77m425gji8fgsph6"; + rev = "9f912e5ca5e1f8bfd53b76031be76c20141f8871"; + sha256 = "0bkjqqmr3zc4wq2j1afpvnrsdhmp33kl9dbw5169xja6znn4sn92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; @@ -48156,7 +48800,7 @@ sha256 = "1gqvp0h5zy2023gdzf7pw28rl27lzml87vpbi1zaw4bmj82zgh3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rtm"; sha256 = "1ni2610svxziq1gq6s6igkhqyafvgn02gnw7jbm3ir7ks4w2imzf"; name = "rtm"; }; @@ -48177,7 +48821,7 @@ sha256 = "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; @@ -48193,11 +48837,11 @@ version = "20091002.545"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "53740"; + rev = "53886"; sha256 = "0wrjx25qg1dpgw0gih7fd679fv3q78cwaqyrf5dh1kq8g8cr5xhs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-additional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-additional"; sha256 = "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w"; name = "ruby-additional"; }; @@ -48215,7 +48859,7 @@ sha256 = "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-block"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-block"; sha256 = "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm"; name = "ruby-block"; }; @@ -48236,7 +48880,7 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; @@ -48257,7 +48901,7 @@ sha256 = "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-dev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-dev"; sha256 = "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh"; name = "ruby-dev"; }; @@ -48273,11 +48917,11 @@ version = "20150424.952"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "53740"; + rev = "53886"; sha256 = "0wrjx25qg1dpgw0gih7fd679fv3q78cwaqyrf5dh1kq8g8cr5xhs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-electric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-electric"; sha256 = "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056"; name = "ruby-electric"; }; @@ -48298,7 +48942,7 @@ sha256 = "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-end"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-end"; sha256 = "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis"; name = "ruby-end"; }; @@ -48319,7 +48963,7 @@ sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-factory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-factory"; sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37"; name = "ruby-factory"; }; @@ -48340,7 +48984,7 @@ sha256 = "080hmrh7pgpaj33w1rkhcqb1yp70w4cap0rq9hsxaaajj0sn47z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-guard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-guard"; sha256 = "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr"; name = "ruby-guard"; }; @@ -48361,7 +49005,7 @@ sha256 = "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; @@ -48382,7 +49026,7 @@ sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-interpolation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-interpolation"; sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp"; name = "ruby-interpolation"; }; @@ -48395,15 +49039,15 @@ ruby-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "ruby-refactor"; - version = "20151208.1207"; + version = "20160214.1050"; src = fetchFromGitHub { owner = "ajvargo"; repo = "ruby-refactor"; - rev = "8be821e89dac15fa402dba211a27b843147e4d17"; - sha256 = "0dk9vkrjncawf4j4y5dky215m0hgl266d9w6mr7g0rgy6m7wfcyq"; + rev = "e6b7125878a08518bffec6942df0c606f748e9ee"; + sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-refactor"; sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby"; name = "ruby-refactor"; }; @@ -48424,7 +49068,7 @@ sha256 = "06fhrn04whqb3n40wkzrwmzbzv7b1m48rd18rx8zpgxhbw8v7rdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; @@ -48445,7 +49089,7 @@ sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-tools"; sha256 = "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y"; name = "ruby-tools"; }; @@ -48466,7 +49110,7 @@ sha256 = "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/runner"; sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; name = "runner"; }; @@ -48487,7 +49131,7 @@ sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/runtests"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/runtests"; sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb"; name = "runtests"; }; @@ -48500,15 +49144,15 @@ rust-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rust-mode"; - version = "20160116.1355"; + version = "20160216.1934"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-mode"; - rev = "fa5b38feac9c5b4da7427b97832b813e20b8e276"; - sha256 = "0m8ywaa9hccsss4gp1gr6v8faj503gr8l9a6gsdnvf3m5g9wxm6v"; + rev = "b1cca0fa73633dcee5704423d9421bfccf12385d"; + sha256 = "0124w1br75aldnlsavd7r06y7k7q7cc1szmza8f6mwbpfzy038sr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rust-mode"; sha256 = "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33"; name = "rust-mode"; }; @@ -48521,15 +49165,15 @@ rustfmt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rustfmt"; - version = "20151124.1311"; + version = "20160217.742"; src = fetchFromGitHub { owner = "fbergroth"; repo = "emacs-rustfmt"; - rev = "b54e77b2287bfc558c0b4dbfa8908b4face48320"; - sha256 = "0i2r14ifpqjcxcflhl38iayk53920vl616y770lwf77zvhnxrmm9"; + rev = "45efd68ee602d9ed7a07ff0ef045d78cacd57e89"; + sha256 = "0c22cxa4f6plz67vxmp1zgaylkfrky313cj0zybn9akrbcxpbc34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rustfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rustfmt"; sha256 = "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl"; name = "rustfmt"; }; @@ -48550,7 +49194,7 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; @@ -48571,7 +49215,7 @@ sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; @@ -48592,7 +49236,7 @@ sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/s-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/s-buffer"; sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m"; name = "s-buffer"; }; @@ -48613,7 +49257,7 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; @@ -48626,15 +49270,15 @@ sage-shell-mode = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sage-shell-mode"; - version = "20151024.313"; + version = "20160220.2028"; src = fetchFromGitHub { owner = "stakemori"; repo = "sage-shell-mode"; - rev = "ad78c168c1fb702eebc74f30eba830adc3fe0079"; - sha256 = "060xvh5qwqbvvb5ykyflwps2p2by9p1mm5dz7gkxla5zq0a73vmx"; + rev = "30461322fc8530b8be87d873aafff5a7c5044c24"; + sha256 = "1z171hrm6fscrdw9z1b2wh0br6axg53r853n2mdk33k3yvwyd6z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; @@ -48655,7 +49299,7 @@ sha256 = "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/salt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/salt-mode"; sha256 = "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp"; name = "salt-mode"; }; @@ -48676,7 +49320,7 @@ sha256 = "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sane-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sane-term"; sha256 = "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8"; name = "sane-term"; }; @@ -48697,7 +49341,7 @@ sha256 = "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; @@ -48718,7 +49362,7 @@ sha256 = "0y6a0z2ydc5li3990mfhcgz5mrb89sj8s8dvdgmnv8pgdhn1xmb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; @@ -48736,7 +49380,7 @@ sha256 = "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/save-load-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/save-load-path"; sha256 = "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi"; name = "save-load-path"; }; @@ -48746,27 +49390,6 @@ license = lib.licenses.free; }; }) {}; - save-sexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "save-sexp"; - version = "20150731.1046"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "save-sexp"; - rev = "31bd739269e14df70f9519417370ba69a53e540d"; - sha256 = "0jdsndq9nqqqfn821qy66y5x3yvmxca9zfk9j9q4a9sbbychqc9c"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/save-sexp"; - sha256 = "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66"; - name = "save-sexp"; - }; - packageRequires = []; - meta = { - homepage = "http://melpa.org/#/save-sexp"; - license = lib.licenses.free; - }; - }) {}; save-visited-files = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "save-visited-files"; @@ -48778,7 +49401,7 @@ sha256 = "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/save-visited-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/save-visited-files"; sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd"; name = "save-visited-files"; }; @@ -48796,7 +49419,7 @@ sha256 = "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/savekill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/savekill"; sha256 = "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i"; name = "savekill"; }; @@ -48809,15 +49432,15 @@ sbt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scala-mode2 }: melpaBuild { pname = "sbt-mode"; - version = "20160201.1059"; + version = "20160219.448"; src = fetchFromGitHub { owner = "ensime"; repo = "emacs-sbt-mode"; - rev = "cc166f2407ea9dfde5d24273298a73cfdd35d579"; - sha256 = "1dsdafb6mavdb14qjf8q0723gxdfxra823f0rn31vak2klwq8zdj"; + rev = "fc4fa63c8f788625030092c4450112ec67ae27ed"; + sha256 = "16ckzn2pv8lh16xna9wqisiflhrk0f6kj5zgrygbmsl86kc0rk2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; @@ -48830,15 +49453,15 @@ scad-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scad-mode"; - version = "20150330.2229"; + version = "20160205.1243"; src = fetchFromGitHub { owner = "openscad"; repo = "openscad"; - rev = "be4fd23dc6b9f4de44c5a4c5cee94894dc139393"; - sha256 = "0v0gffwcn70kyhpvbgdzrsx7f97ksza1han794wx5v9plxj366ld"; + rev = "a2fc2044a9302332427315decc4b925e0b0ad310"; + sha256 = "0ckns5sqpjlw4ndgyl3bij5pidlm6xjc534fxzwz2s2h2bqbz9q8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scad-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scad-mode"; sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k"; name = "scad-mode"; }; @@ -48851,15 +49474,15 @@ scad-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scad-mode }: melpaBuild { pname = "scad-preview"; - version = "20150818.824"; + version = "20160206.736"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scad-preview"; - rev = "a444532126bdec3dec9cacf55bc183780decf040"; - sha256 = "1mx5bg4mbgj828mwjd9nlxli4ibcrgpzn9i6ns2g9zpgm932zlbc"; + rev = "fee011589671cc8f1296cb6aa81553e5bb699819"; + sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scad-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scad-preview"; sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z"; name = "scad-preview"; }; @@ -48880,7 +49503,7 @@ sha256 = "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-mode"; sha256 = "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm"; name = "scala-mode"; }; @@ -48901,7 +49524,7 @@ sha256 = "07928cll5n3s7xx75nfbil73zilrhdfh19hp4s75c7hh8sdwmig6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scala-mode2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-mode2"; sha256 = "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch"; name = "scala-mode2"; }; @@ -48922,7 +49545,7 @@ sha256 = "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scala-outline-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-outline-popup"; sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7"; name = "scala-outline-popup"; }; @@ -48943,7 +49566,7 @@ sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scf-mode"; sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0"; name = "scf-mode"; }; @@ -48963,7 +49586,7 @@ sha256 = "13pym1kwi8ah3h2l557pvbg4lgpp5lhldj3qxyg7gyvgkwr91a7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scheme-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scheme-complete"; sha256 = "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm"; name = "scheme-complete"; }; @@ -48984,7 +49607,7 @@ sha256 = "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scheme-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scheme-here"; sha256 = "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv"; name = "scheme-here"; }; @@ -49005,7 +49628,7 @@ sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scion"; sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d"; name = "scion"; }; @@ -49026,7 +49649,7 @@ sha256 = "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sclang-extensions"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sclang-extensions"; sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn"; name = "sclang-extensions"; }; @@ -49047,7 +49670,7 @@ sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sclang-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sclang-snippets"; sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2"; name = "sclang-snippets"; }; @@ -49068,7 +49691,7 @@ sha256 = "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; @@ -49089,7 +49712,7 @@ sha256 = "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch"; sha256 = "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d"; name = "scratch"; }; @@ -49110,7 +49733,7 @@ sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scratch-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-ext"; sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y"; name = "scratch-ext"; }; @@ -49131,7 +49754,7 @@ sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scratch-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-log"; sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69"; name = "scratch-log"; }; @@ -49152,7 +49775,7 @@ sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scratch-palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-palette"; sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs"; name = "scratch-palette"; }; @@ -49173,7 +49796,7 @@ sha256 = "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scratch-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-pop"; sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1"; name = "scratch-pop"; }; @@ -49194,7 +49817,7 @@ sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scratches"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratches"; sha256 = "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy"; name = "scratches"; }; @@ -49212,7 +49835,7 @@ sha256 = "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/screenshot"; sha256 = "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs"; name = "screenshot"; }; @@ -49233,7 +49856,7 @@ sha256 = "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; @@ -49254,7 +49877,7 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; @@ -49275,7 +49898,7 @@ sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/searchq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/searchq"; sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr"; name = "searchq"; }; @@ -49296,7 +49919,7 @@ sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/seclusion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seclusion-mode"; sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m"; name = "seclusion-mode"; }; @@ -49314,7 +49937,7 @@ sha256 = "143vg6z3aa0znmsx88r675vv5g2c13giz25dcbzazsp4wcr46wvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/second-sel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/second-sel"; sha256 = "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr"; name = "second-sel"; }; @@ -49335,7 +49958,7 @@ sha256 = "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/seeing-is-believing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seeing-is-believing"; sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb"; name = "seeing-is-believing"; }; @@ -49356,7 +49979,7 @@ sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/seethru"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seethru"; sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v"; name = "seethru"; }; @@ -49377,7 +50000,7 @@ sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; @@ -49387,6 +50010,27 @@ license = lib.licenses.free; }; }) {}; + select-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "select-themes"; + version = "20160220.1906"; + src = fetchFromGitHub { + owner = "jasonm23"; + repo = "emacs-select-themes"; + rev = "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe"; + sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/select-themes"; + sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; + name = "select-themes"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/select-themes"; + license = lib.licenses.free; + }; + }) {}; selectric-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "selectric-mode"; @@ -49398,7 +50042,7 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; @@ -49411,15 +50055,15 @@ semi = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }: melpaBuild { pname = "semi"; - version = "20150525.619"; + version = "20160211.255"; src = fetchFromGitHub { owner = "wanderlust"; repo = "semi"; - rev = "35c9ff77db07ace4b7178189c1fe45118ebf9a65"; - sha256 = "1s1wjk2ba5spqc0vhj8kmfsm8vzmza06pnjkwal084v8dnwz0zz3"; + rev = "33289fb506d22d639351e8a867fc7f34a1b86ff0"; + sha256 = "17w6mf9khcmja7ikl0c895dv7s7g7pqm15svv7spfcb1p30lrh39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/semi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/semi"; sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25"; name = "semi"; }; @@ -49440,7 +50084,7 @@ sha256 = "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sensitive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sensitive"; sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3"; name = "sensitive"; }; @@ -49459,7 +50103,7 @@ sha256 = "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sentence-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sentence-highlight"; sha256 = "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m"; name = "sentence-highlight"; }; @@ -49480,7 +50124,7 @@ sha256 = "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sentence-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sentence-navigation"; sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m"; name = "sentence-navigation"; }; @@ -49501,7 +50145,7 @@ sha256 = "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/seoul256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seoul256-theme"; sha256 = "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp"; name = "seoul256-theme"; }; @@ -49522,7 +50166,7 @@ sha256 = "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sequences"; sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh"; name = "sequences"; }; @@ -49541,7 +50185,7 @@ sha256 = "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sequential-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sequential-command"; sha256 = "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1"; name = "sequential-command"; }; @@ -49562,7 +50206,7 @@ sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/servant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/servant"; sha256 = "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h"; name = "servant"; }; @@ -49583,7 +50227,7 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; @@ -49604,7 +50248,7 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; @@ -49625,7 +50269,7 @@ sha256 = "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/seti-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seti-theme"; sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z"; name = "seti-theme"; }; @@ -49646,7 +50290,7 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; @@ -49667,7 +50311,7 @@ sha256 = "1nfvb2vmbdqfyj25hvwrz7ajb4ilxgrvd3rbf3im3mb3skic1wn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; @@ -49688,7 +50332,7 @@ sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shadchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shadchen"; sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4"; name = "shadchen"; }; @@ -49709,7 +50353,7 @@ sha256 = "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shader-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shader-mode"; sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g"; name = "shader-mode"; }; @@ -49719,27 +50363,6 @@ license = lib.licenses.free; }; }) {}; - shadow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "shadow"; - version = "20110507.224"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "shadow.el"; - rev = "eafc93b090895102ac299220a84ec99244f633af"; - sha256 = "1i1a0jsrrimfxv8xm37cihb3w7fc3l0872c8gnx9gb4876if3sxw"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/shadow"; - sha256 = "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k"; - name = "shadow"; - }; - packageRequires = []; - meta = { - homepage = "http://melpa.org/#/shadow"; - license = lib.licenses.free; - }; - }) {}; shakespeare-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shakespeare-mode"; @@ -49751,7 +50374,7 @@ sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shakespeare-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shakespeare-mode"; sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; name = "shakespeare-mode"; }; @@ -49772,7 +50395,7 @@ sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; @@ -49790,7 +50413,7 @@ sha256 = "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-command"; sha256 = "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl"; name = "shell-command"; }; @@ -49811,7 +50434,7 @@ sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-current-directory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-current-directory"; sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd"; name = "shell-current-directory"; }; @@ -49832,7 +50455,7 @@ sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-here"; sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh"; name = "shell-here"; }; @@ -49850,7 +50473,7 @@ sha256 = "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-history"; sha256 = "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7"; name = "shell-history"; }; @@ -49863,15 +50486,15 @@ shell-pop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-pop"; - version = "20151121.830"; + version = "20160208.348"; src = fetchFromGitHub { owner = "kyagi"; repo = "shell-pop-el"; - rev = "4531d234ca471ed80458252cba0ed005a0720b27"; - sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5"; + rev = "272ed7dba1a32a900339167e02fbe052513b9a6c"; + sha256 = "0pnj11cba3g3kmnp0sr0gd085pzqwcpzmg3wyywpbinrr5ilagwp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; @@ -49892,7 +50515,7 @@ sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; @@ -49913,7 +50536,7 @@ sha256 = "1bcrxq43a45alv6x0wms4d4nykiqz2mzk04kwk5lmf5pw3dqm900"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; @@ -49934,7 +50557,7 @@ sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; @@ -49955,7 +50578,7 @@ sha256 = "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; @@ -49976,7 +50599,7 @@ sha256 = "1ns2w7zhbi96a3gilmzs69187jngqhcvik17ylsjdfrk42hw5s6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; @@ -49997,7 +50620,7 @@ sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shift-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shift-text"; sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i"; name = "shift-text"; }; @@ -50018,7 +50641,7 @@ sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shimbun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shimbun"; sha256 = "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh"; name = "shimbun"; }; @@ -50031,15 +50654,15 @@ shm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shm"; - version = "20160204.414"; + version = "20160211.1354"; src = fetchFromGitHub { owner = "chrisdone"; repo = "structured-haskell-mode"; - rev = "e34d4d9b1b6c4fd18e726da1dd5b73f64bb883e9"; - sha256 = "1xjkcdxyz3q17jr036gc4zjryc497dbhi4g89y4zkfc68c4m89xy"; + rev = "84c8464232fa49a36c4fe897afd22ad28ab2e196"; + sha256 = "0xs19xpadxdl1wgapqj6xrscnb4ch6kj1qm3h93kj95x51427afz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; @@ -50060,7 +50683,7 @@ sha256 = "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shoulda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shoulda"; sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk"; name = "shoulda"; }; @@ -50070,22 +50693,22 @@ license = lib.licenses.free; }; }) {}; - show-css = callPackage ({ doom, fetchFromGitHub, fetchurl, lib, melpaBuild }: + show-css = callPackage ({ doom, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "show-css"; - version = "20160121.1004"; + version = "20160210.808"; src = fetchFromGitHub { owner = "smmcg"; repo = "showcss-mode"; - rev = "1c0fe0aa8ece480f63d0a516c9d6a35f0406c570"; - sha256 = "15v2cr1dmk5iha3brikbhxnsfi84b9jdnrbnaqy9xyxbdw7cs0r5"; + rev = "771daeddd4df7a7c10f66419a837145649bab63b"; + sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/show-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/show-css"; sha256 = "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7"; name = "show-css"; }; - packageRequires = [ doom ]; + packageRequires = [ doom s ]; meta = { homepage = "http://melpa.org/#/show-css"; license = lib.licenses.free; @@ -50102,7 +50725,7 @@ sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/show-marks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/show-marks"; sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb"; name = "show-marks"; }; @@ -50120,7 +50743,7 @@ sha256 = "0pq88kz5h0hzgfk8fyf3lppxalmadg5czbik824bpykp9l9gnf1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/showkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/showkey"; sha256 = "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv"; name = "showkey"; }; @@ -50138,7 +50761,7 @@ sha256 = "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/showtip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/showtip"; sha256 = "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8"; name = "showtip"; }; @@ -50159,7 +50782,7 @@ sha256 = "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; @@ -50180,7 +50803,7 @@ sha256 = "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; @@ -50201,7 +50824,7 @@ sha256 = "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; @@ -50222,7 +50845,7 @@ sha256 = "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sibilant-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sibilant-mode"; sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq"; name = "sibilant-mode"; }; @@ -50243,7 +50866,7 @@ sha256 = "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sicp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sicp"; sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz"; name = "sicp"; }; @@ -50264,7 +50887,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; @@ -50285,7 +50908,7 @@ sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/signature"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/signature"; sha256 = "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q"; name = "signature"; }; @@ -50295,6 +50918,27 @@ license = lib.licenses.free; }; }) {}; + silkworm-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "silkworm-theme"; + version = "20160217.709"; + src = fetchFromGitHub { + owner = "mswift42"; + repo = "silkworm-theme"; + rev = "53e0614660d653d146a4d36ceab169f6e4bb3554"; + sha256 = "0vzkgrc54j4a3g90jxc7vxkqwqi3047gnn7gng65pfar0i76lzlb"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/silkworm-theme"; + sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13"; + name = "silkworm-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/silkworm-theme"; + license = lib.licenses.free; + }; + }) {}; simp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simp"; @@ -50306,7 +50950,7 @@ sha256 = "1m8azyb4nxxdh6pwik9qb0zqp4z8z4vk3dlpfgklsq9rss8gwbaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simp"; sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c"; name = "simp"; }; @@ -50327,7 +50971,7 @@ sha256 = "09blcc1aj1lbqr1jcjm8dlq13s3plrg1qbp9vr3sp4dxyhjpimjj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple-call-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-call-tree"; sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl"; name = "simple-call-tree"; }; @@ -50348,7 +50992,7 @@ sha256 = "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple-httpd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-httpd"; sha256 = "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59"; name = "simple-httpd"; }; @@ -50369,7 +51013,7 @@ sha256 = "1bnc3ykgf727lc0ajxa8qsx616baljdgav78fkz57irm65dqr18q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple-mpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-mpc"; sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r"; name = "simple-mpc"; }; @@ -50388,7 +51032,7 @@ sha256 = "01fdk790jlpxy95y67yv6944ws4zjh7gs6ymnj1yflf19ccsdsnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple+"; sha256 = "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra"; name = "simple-plus"; }; @@ -50409,7 +51053,7 @@ sha256 = "15y1kxck6gxqs6pv4qxz8rrc61bsk73pzbz6f30f5l0r0750i1rm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-rtm"; sha256 = "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271"; name = "simple-rtm"; }; @@ -50430,7 +51074,7 @@ sha256 = "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-screen"; sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0"; name = "simple-screen"; }; @@ -50451,7 +51095,7 @@ sha256 = "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; @@ -50472,7 +51116,7 @@ sha256 = "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simplenote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplenote"; sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j"; name = "simplenote"; }; @@ -50493,7 +51137,7 @@ sha256 = "1a0l0f6by1nmnnq0n52la9g3d357bmwak4qgy6p8g66qb9rx6rzv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; @@ -50514,7 +51158,7 @@ sha256 = "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; @@ -50535,7 +51179,7 @@ sha256 = "1v7xn0a1x4036spmzrfi6syhpbm6bg9a22h6ybzmvzmbp90cs25a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sisyphus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sisyphus"; sha256 = "08400jazj7w63l8g9ypy6w9dj8r0xh4d2yg3nfwqqf5lhfnj9bnj"; name = "sisyphus"; }; @@ -50556,7 +51200,7 @@ sha256 = "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; @@ -50577,7 +51221,7 @@ sha256 = "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; @@ -50598,7 +51242,7 @@ sha256 = "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; @@ -50619,7 +51263,7 @@ sha256 = "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skewer-reload-stylesheets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-reload-stylesheets"; sha256 = "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm"; name = "skewer-reload-stylesheets"; }; @@ -50640,7 +51284,7 @@ sha256 = "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skype"; sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl"; name = "skype"; }; @@ -50661,7 +51305,7 @@ sha256 = "184hc4wvm3y33g6ka8m90ysh1s8cdynsnni5abf2lzmgl4jgpcpl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slack"; sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp"; name = "slack"; }; @@ -50682,7 +51326,7 @@ sha256 = "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; @@ -50703,7 +51347,7 @@ sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; @@ -50724,7 +51368,7 @@ sha256 = "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; @@ -50737,15 +51381,15 @@ slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: melpaBuild { pname = "slime"; - version = "20160202.1146"; + version = "20160219.1320"; src = fetchFromGitHub { owner = "slime"; repo = "slime"; - rev = "837ffe761f24ab612c0523ff3bb5b17efa2d3b1e"; - sha256 = "0hik0idwn24mrfgp9ki3wp80w79bdklg5xz2gn08g4bqiavxbrld"; + rev = "899b5ca7e1ce8173cb8ce4b7609dd88d05a050c9"; + sha256 = "07gfd8k0gbzylr9y8asp35p9139w79c36pbnixp4y2fimgbfri2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; @@ -50766,7 +51410,7 @@ sha256 = "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-annot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-annot"; sha256 = "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n"; name = "slime-annot"; }; @@ -50783,11 +51427,11 @@ src = fetchFromGitHub { owner = "anwyn"; repo = "slime-company"; - rev = "cf03a862c3aa2393eb151af9e5bc032aa6b6f154"; - sha256 = "1yi89hmnawf1pf9nv3f6i8a168wvri3zc40wgbbgnda8hxrcqkjx"; + rev = "a50e8f02df03f37bee3cbaafae1a6891f02c847b"; + sha256 = "0cc8xb2p1j2vs00h4sq6x0mwwrxkidqj4l7kg3n3150bj37v55rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; @@ -50797,6 +51441,27 @@ license = lib.licenses.free; }; }) {}; + slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: + melpaBuild { + pname = "slime-docker"; + version = "20160221.1715"; + src = fetchFromGitHub { + owner = "daewok"; + repo = "slime-docker"; + rev = "61bed969887c8556299ee643d1bab567ef36d926"; + sha256 = "0jrsilyvzdi3xdmkm6gsniw4zdg9zsxb4i6k3fm5byxvhpbwd3k4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-docker"; + sha256 = "18v62y4f613d7mpqpb8sc8hzvyhcgzrbqrc0k7w9pqf00jnl192h"; + name = "slime-docker"; + }; + packageRequires = [ cl-lib docker-tramp emacs slime ]; + meta = { + homepage = "http://melpa.org/#/slime-docker"; + license = lib.licenses.free; + }; + }) {}; slime-ritz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-ritz"; @@ -50808,7 +51473,7 @@ sha256 = "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; @@ -50829,7 +51494,7 @@ sha256 = "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-theme"; sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00"; name = "slime-theme"; }; @@ -50850,7 +51515,7 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; @@ -50871,7 +51536,7 @@ sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slirm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slirm"; sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7"; name = "slirm"; }; @@ -50892,7 +51557,7 @@ sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slovak-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slovak-holidays"; sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg"; name = "slovak-holidays"; }; @@ -50905,15 +51570,15 @@ sly = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sly"; - version = "20160122.424"; + version = "20160218.402"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly"; - rev = "adadc9ca765bf8804a8de93c444a1e83cd1b9212"; - sha256 = "16h4xkaa1cdnal7ydsv0rdj1ldyb1ax0776x9a3abj5n9zf3pwxm"; + rev = "ead2144dd581cbabf11b326f5f482a277225110f"; + sha256 = "0brb6h19j28jypvrdwsi45qkgjrx5ssbvcyj0samwncrlbjfp9rk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; @@ -50926,15 +51591,15 @@ sly-company = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-company"; - version = "20151126.222"; + version = "20160219.338"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-company"; - rev = "21248bd852c9520ec27692f286c5f43b50892b12"; - sha256 = "0qpw345ch5b9dbznk916f6h9f9dnf03wfyvpgnzdf30ffvf4q01w"; + rev = "0ad0b12874dae2289c990db20b3d31146d6e80eb"; + sha256 = "1dga7y06p0j5iq478g857i6xa06j9zpgbjx3a1sqyhk16m1v7ssi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; @@ -50955,7 +51620,7 @@ sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly-hello-world"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-hello-world"; sha256 = "03ybjgczp6ssk4hmwd486vshlk7ql27k1lyhmvk26gmrf554z90n"; name = "sly-hello-world"; }; @@ -50976,7 +51641,7 @@ sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly-macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-macrostep"; sha256 = "1i004mb0bg13j3zhdsjz1795dh0ry8winzvdghr1wardc9np60h7"; name = "sly-macrostep"; }; @@ -50997,7 +51662,7 @@ sha256 = "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly-named-readtables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-named-readtables"; sha256 = "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9"; name = "sly-named-readtables"; }; @@ -51007,6 +51672,27 @@ license = lib.licenses.free; }; }) {}; + sly-repl-ansi-color = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: + melpaBuild { + pname = "sly-repl-ansi-color"; + version = "20160214.218"; + src = fetchFromGitHub { + owner = "PuercoPop"; + repo = "sly-repl-ansi-color"; + rev = "505d162d52219654b57a455e26c9e02c7254a8f2"; + sha256 = "194bdibpxpqsag86h583b62ybmfqmq4442a0czbijqwngbgjpj3l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-repl-ansi-color"; + sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi"; + name = "sly-repl-ansi-color"; + }; + packageRequires = [ cl-lib sly ]; + meta = { + homepage = "http://melpa.org/#/sly-repl-ansi-color"; + license = lib.licenses.free; + }; + }) {}; smart-compile = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-compile"; version = "20150519.1147"; @@ -51015,7 +51701,7 @@ sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-compile"; sha256 = "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3"; name = "smart-compile"; }; @@ -51036,7 +51722,7 @@ sha256 = "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-cursor-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-cursor-color"; sha256 = "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx"; name = "smart-cursor-color"; }; @@ -51057,7 +51743,7 @@ sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-forward"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-forward"; sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c"; name = "smart-forward"; }; @@ -51078,7 +51764,7 @@ sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-indent-rigidly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-indent-rigidly"; sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x"; name = "smart-indent-rigidly"; }; @@ -51099,7 +51785,7 @@ sha256 = "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mark"; sha256 = "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v"; name = "smart-mark"; }; @@ -51120,7 +51806,7 @@ sha256 = "0jr0yvaih5d2a5fkwszhf25cyk3q0fqfbgybb3nbrbkcf0mja22q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; @@ -51141,7 +51827,7 @@ sha256 = "0jr0yvaih5d2a5fkwszhf25cyk3q0fqfbgybb3nbrbkcf0mja22q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; @@ -51162,7 +51848,7 @@ sha256 = "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-newline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-newline"; sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w"; name = "smart-newline"; }; @@ -51183,7 +51869,7 @@ sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-region"; sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc"; name = "smart-region"; }; @@ -51204,7 +51890,7 @@ sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-shift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-shift"; sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3"; name = "smart-shift"; }; @@ -51225,7 +51911,7 @@ sha256 = "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-tab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-tab"; sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5"; name = "smart-tab"; }; @@ -51246,7 +51932,7 @@ sha256 = "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; @@ -51267,7 +51953,7 @@ sha256 = "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-window"; sha256 = "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m"; name = "smart-window"; }; @@ -51280,15 +51966,15 @@ smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartparens"; - version = "20160108.1603"; + version = "20160221.739"; src = fetchFromGitHub { owner = "Fuco1"; repo = "smartparens"; - rev = "444c89a555b0ca25ff8d06e74665fbbc3a45a8b7"; - sha256 = "1h9z7b10ihva6sg0p40xs4kv4dh5apd72zzqayns8jd9zasw4grm"; + rev = "dc7f7e17eff62c716638ea6a96ffaa60868a3ee9"; + sha256 = "034rmng04q1ralj16pxygscn13fswz5vm77lgj29hqrgizb72jnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; @@ -51309,7 +51995,7 @@ sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; @@ -51330,7 +52016,7 @@ sha256 = "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; @@ -51351,7 +52037,7 @@ sha256 = "1qfa6i59zhi8d6175py8id8gq7b3hdaqq4naa86r1rb7x8ringff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartwin"; sha256 = "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif"; name = "smartwin"; }; @@ -51372,7 +52058,7 @@ sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smarty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smarty-mode"; sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v"; name = "smarty-mode"; }; @@ -51393,7 +52079,7 @@ sha256 = "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; @@ -51414,7 +52100,7 @@ sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; @@ -51434,7 +52120,7 @@ sha256 = "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sml-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sml-modeline"; sha256 = "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd"; name = "sml-modeline"; }; @@ -51455,7 +52141,7 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; @@ -51476,7 +52162,7 @@ sha256 = "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; @@ -51497,7 +52183,7 @@ sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smotitah"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smotitah"; sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2"; name = "smotitah"; }; @@ -51510,15 +52196,15 @@ smtpmail-multi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smtpmail-multi"; - version = "20130921.2242"; + version = "20160218.1749"; src = fetchFromGitHub { owner = "vapniks"; repo = "smtpmail-multi"; - rev = "21885f6f7ec46facb64fafc2caa2be01caa4b6db"; - sha256 = "0rhpnijp72jsl4gzhwz0z387f55vv3fp0zwki0fi5jlkzjamnnqg"; + rev = "81eabfe56f620ee044ff9dd52fa8b6148d0a9f30"; + sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smtpmail-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smtpmail-multi"; sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss"; name = "smtpmail-multi"; }; @@ -51539,7 +52225,7 @@ sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smyx-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smyx-theme"; sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61"; name = "smyx-theme"; }; @@ -51552,15 +52238,15 @@ snakemake-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "snakemake-mode"; - version = "20160117.1551"; + version = "20160209.2027"; src = fetchFromGitHub { owner = "kyleam"; repo = "snakemake-mode"; - rev = "fac9683e73ec1a068ac2bd03269494f137ef9606"; - sha256 = "01kixhbl2q7qd173zv6prgr81gnmhf95bjyraysw45wza72amkqk"; + rev = "0ad1db40d996e9ab15b01cbbaf971d508556a4bc"; + sha256 = "1q3v4izah7j5n0ln44f1g1idl1rwd2jar975d5rza4pcy9c875x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; @@ -51581,7 +52267,7 @@ sha256 = "17nbm8692ihrlcikihspdqg8wvp80ryq4h06da34d0awqm0w027m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/snapshot-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snapshot-timemachine"; sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p"; name = "snapshot-timemachine"; }; @@ -51602,7 +52288,7 @@ sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/snippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snippet"; sha256 = "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j"; name = "snippet"; }; @@ -51623,7 +52309,7 @@ sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/soft-charcoal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soft-charcoal-theme"; sha256 = "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a"; name = "soft-charcoal-theme"; }; @@ -51644,7 +52330,7 @@ sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/soft-morning-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soft-morning-theme"; sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr"; name = "soft-morning-theme"; }; @@ -51665,7 +52351,7 @@ sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/soft-stone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soft-stone-theme"; sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v"; name = "soft-stone-theme"; }; @@ -51686,7 +52372,7 @@ sha256 = "1vkrl8xvr5la8rj5gmafamzlqr0q2l1immyfnmfzf3r4n14kdywk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; @@ -51707,7 +52393,7 @@ sha256 = "0drb237750lry18arbfx37drf16znwz8fhx5fawxy1q4z7bl7z5n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/solidity-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/solidity-mode"; sha256 = "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx"; name = "solidity-mode"; }; @@ -51728,7 +52414,7 @@ sha256 = "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sonic-pi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sonic-pi"; sha256 = "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp"; name = "sonic-pi"; }; @@ -51749,7 +52435,7 @@ sha256 = "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/soothe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soothe-theme"; sha256 = "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3"; name = "soothe-theme"; }; @@ -51770,7 +52456,7 @@ sha256 = "16x039imyf4p5d4rn92nlqcsvb5vlvdgq1m5g856b9dzwa89x733"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; @@ -51791,7 +52477,7 @@ sha256 = "0wl21pgjf9p6cf4d51cd2z974m6ph1cjspi3vdbf91pd13b72sdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sotclojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sotclojure"; sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; name = "sotclojure"; }; @@ -51812,7 +52498,7 @@ sha256 = "027jmqx4240hym2is9q1iyjdws9ijyyck8dnsbm9xc5lhpsdrl69"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; @@ -51833,7 +52519,7 @@ sha256 = "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; @@ -51854,7 +52540,7 @@ sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soundcloud"; sha256 = "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph"; name = "soundcloud"; }; @@ -51871,22 +52557,22 @@ license = lib.licenses.free; }; }) {}; - soundklaus = callPackage ({ cl-lib ? null, dash, deferred, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: + soundklaus = callPackage ({ cl-lib ? null, dash, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: melpaBuild { pname = "soundklaus"; - version = "20150102.1521"; + version = "20160210.1517"; src = fetchFromGitHub { owner = "r0man"; repo = "soundklaus.el"; - rev = "830f2b5f4dd4bd110db23a71494b92bb8fe5b058"; - sha256 = "1ipg4vvh6vgf0az8p31br1xkb8ndjmd6fybcx11r3c479sg0y6k7"; + rev = "4e69c5521f3196bd2dac81f683eb91885f614317"; + sha256 = "1dj48i0s521x81sdm7sg76q2pz04jsdxi63l8j9qbhn0l08q66fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/soundklaus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soundklaus"; sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb"; name = "soundklaus"; }; - packageRequires = [ cl-lib dash deferred emacs emms pkg-info s ]; + packageRequires = [ cl-lib dash emacs emms pkg-info s ]; meta = { homepage = "http://melpa.org/#/soundklaus"; license = lib.licenses.free; @@ -51903,7 +52589,7 @@ sha256 = "18iv7jhy08smpdksplngj1mxcm2mm9gvbylimgr3211l8jr9gq8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcegraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcegraph"; sha256 = "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz"; name = "sourcegraph"; }; @@ -51924,7 +52610,7 @@ sha256 = "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; @@ -51945,7 +52631,7 @@ sha256 = "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; @@ -51966,7 +52652,7 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; @@ -51987,7 +52673,7 @@ sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spacegray-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spacegray-theme"; sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx"; name = "spacegray-theme"; }; @@ -52008,7 +52694,7 @@ sha256 = "1ncwv6sqm1ch396qi1c8276dc910rnm0f3m8xjkskplv3cjaq0ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; @@ -52021,15 +52707,15 @@ spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spacemacs-theme"; - version = "20160121.1443"; + version = "20160219.1206"; src = fetchFromGitHub { owner = "nashamri"; repo = "spacemacs-theme"; - rev = "6b49a05e7aed1318f7680984a5d21827026013fa"; - sha256 = "01ylny2kfdlc73qmyy3xp5pwir459jryg0ci9k1qbzb7vb38v8vj"; + rev = "3402e5cbeebcabc70ea1ce084f479752140121a3"; + sha256 = "0dp8zrljwfdkfp3vwx0y902di02893n56bz1l32iah72kapws4xa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spacemacs-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spacemacs-theme"; sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992"; name = "spacemacs-theme"; }; @@ -52050,7 +52736,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spaces"; sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06"; name = "spaces"; }; @@ -52071,7 +52757,7 @@ sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; @@ -52092,7 +52778,7 @@ sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; @@ -52110,7 +52796,7 @@ sha256 = "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/speck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speck"; sha256 = "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg"; name = "speck"; }; @@ -52131,7 +52817,7 @@ sha256 = "05qx3wqsqs9lxv5lgpaw1wsd6qb5hh599ggi3c17ig5663q7pjsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; @@ -52151,7 +52837,7 @@ sha256 = "2c1bff3e5a182b8150c6ba6c3be7e70ab2b733cac0a758521c0b941dff215c32"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/speechd-el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speechd-el"; sha256 = "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0"; name = "speechd-el"; }; @@ -52172,7 +52858,7 @@ sha256 = "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/speed-type"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speed-type"; sha256 = "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g"; name = "speed-type"; }; @@ -52193,7 +52879,7 @@ sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; @@ -52214,7 +52900,7 @@ sha256 = "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sphinx-frontend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sphinx-frontend"; sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag"; name = "sphinx-frontend"; }; @@ -52235,7 +52921,7 @@ sha256 = "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; @@ -52256,7 +52942,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/splitter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/splitter"; sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2"; name = "splitter"; }; @@ -52277,7 +52963,7 @@ sha256 = "1f0dl2zzxnqsyic87jl9wbg6lf42d8g61sj4d9fb3yhxy6jf07jv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; @@ -52298,7 +52984,7 @@ sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spotlight"; sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p"; name = "spotlight"; }; @@ -52319,7 +53005,7 @@ sha256 = "0fvywcwn0zd06yy4b6cxpasiwfbps17jz9dy3jr0y0mdx5lzfxa9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spray"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spray"; sha256 = "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4"; name = "spray"; }; @@ -52340,7 +53026,7 @@ sha256 = "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/springboard"; sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib"; name = "springboard"; }; @@ -52361,7 +53047,7 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; @@ -52382,7 +53068,7 @@ sha256 = "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sproto-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sproto-mode"; sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma"; name = "sproto-mode"; }; @@ -52403,7 +53089,7 @@ sha256 = "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sql-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sql-indent"; sha256 = "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g"; name = "sql-indent"; }; @@ -52424,7 +53110,7 @@ sha256 = "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlite"; sha256 = "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1"; name = "sqlite"; }; @@ -52442,7 +53128,7 @@ sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sqlplus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlplus"; sha256 = "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz"; name = "sqlplus"; }; @@ -52463,7 +53149,7 @@ sha256 = "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sqlup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlup-mode"; sha256 = "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7"; name = "sqlup-mode"; }; @@ -52481,7 +53167,7 @@ sha256 = "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sr-speedbar"; sha256 = "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23"; name = "sr-speedbar"; }; @@ -52502,7 +53188,7 @@ sha256 = "1n5p51iy79z60fnhxklc03pp0jbs5rgyb02z3wndbyzy73bhfh7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; @@ -52523,7 +53209,7 @@ sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh"; sha256 = "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g"; name = "ssh"; }; @@ -52544,7 +53230,7 @@ sha256 = "0076g1yb8xvn6s8gz5jxiz8mn448fmab574yizgakbxaxd91s1dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ssh-agency"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh-agency"; sha256 = "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8"; name = "ssh-agency"; }; @@ -52565,7 +53251,7 @@ sha256 = "1v6srqiqq5xsjiw4d3kfgp218dks8mm6f9i88ngjri6sb3slpfb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ssh-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh-config-mode"; sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; name = "ssh-config-mode"; }; @@ -52586,7 +53272,7 @@ sha256 = "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ssh-tunnels"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh-tunnels"; sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj"; name = "ssh-tunnels"; }; @@ -52607,7 +53293,7 @@ sha256 = "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stack-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stack-mode"; sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf"; name = "stack-mode"; }; @@ -52628,7 +53314,7 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stan-mode"; sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy"; name = "stan-mode"; }; @@ -52649,7 +53335,7 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stan-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stan-snippets"; sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85"; name = "stan-snippets"; }; @@ -52670,7 +53356,7 @@ sha256 = "09gjhg923jck35c1nvcdfk4dc0r559myzmfbcd9jvjamzh50ngcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/standoff-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/standoff-mode"; sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp"; name = "standoff-mode"; }; @@ -52691,7 +53377,7 @@ sha256 = "1v3rzy842mfzm850vs273ssr4hg00q1wz2rpky8lk3wbbw2qq3f0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/start-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/start-menu"; sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv"; name = "start-menu"; }; @@ -52712,7 +53398,7 @@ sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; @@ -52733,7 +53419,7 @@ sha256 = "1b17v4xghmki0g9yr5855891mlcrrbkr68xc3qyals5xw0dhb3xb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/state"; sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2"; name = "state"; }; @@ -52754,7 +53440,7 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; @@ -52775,7 +53461,7 @@ sha256 = "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; @@ -52796,7 +53482,7 @@ sha256 = "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stem"; sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq"; name = "stem"; }; @@ -52815,7 +53501,7 @@ sha256 = "c5d424f34ca33d2c19e3888a9dc249d0398203e5199bf2b4bdd9e604390b500b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; @@ -52833,7 +53519,7 @@ sha256 = "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sticky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sticky"; sha256 = "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w"; name = "sticky"; }; @@ -52854,7 +53540,7 @@ sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stickyfunc-enhance"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stickyfunc-enhance"; sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks"; name = "stickyfunc-enhance"; }; @@ -52875,7 +53561,7 @@ sha256 = "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stock-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stock-ticker"; sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi"; name = "stock-ticker"; }; @@ -52885,22 +53571,22 @@ license = lib.licenses.free; }; }) {}; - strie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + strie = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "strie"; - version = "20140109.812"; + version = "20160211.1622"; src = fetchFromGitHub { owner = "hackscience"; repo = "strie.el"; - rev = "066e72c39ed51162d7d7892c7451a6cac28581b7"; - sha256 = "1xgsdr75p52vg34s1gm16ffkr3s7gdsln56xjxpdirnwr78glbmw"; + rev = "eb7efb0cccc127c414f6a64db11454869d9c10a8"; + sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/strie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/strie"; sha256 = "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl"; name = "strie"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { homepage = "http://melpa.org/#/strie"; license = lib.licenses.free; @@ -52917,7 +53603,7 @@ sha256 = "0nx303bdi8mq18isgf79y8f1cjhqnxv3g3ynm09llrg73qr7r4zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; @@ -52938,7 +53624,7 @@ sha256 = "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/string-inflection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-inflection"; sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2"; name = "string-inflection"; }; @@ -52959,7 +53645,7 @@ sha256 = "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; @@ -52977,7 +53663,7 @@ sha256 = "1sa6wd2z2qkcnjprkkm9b945qz8d0l702sv9w15wl0lngbhw84na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/strings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/strings"; sha256 = "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk"; name = "strings"; }; @@ -52998,7 +53684,7 @@ sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; @@ -53018,7 +53704,7 @@ sha256 = "3547616b9e5694fd09014bbbf29458ee0dea828428b6bf7a6231670aacfb8271"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; @@ -53038,7 +53724,7 @@ sha256 = "242b90e4c403fbcadd40777cd98899c96aab78b84dea88dfa97583b734c9876b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stupid-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stupid-indent-mode"; sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p"; name = "stupid-indent-mode"; }; @@ -53059,7 +53745,7 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; @@ -53080,7 +53766,7 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; @@ -53101,7 +53787,7 @@ sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subatomic256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subatomic256-theme"; sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy"; name = "subatomic256-theme"; }; @@ -53122,7 +53808,7 @@ sha256 = "10pirwc7g9vii5cyk4vg6m5g5hlap0yg9w4qy257744c67jmaxvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; @@ -53143,7 +53829,7 @@ sha256 = "0lhbmcpzpxlqvw4mgh79v9y2f0xqjd1m36dbxcvhb67rwq6nrw3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sublime-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sublime-themes"; sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj"; name = "sublime-themes"; }; @@ -53164,7 +53850,7 @@ sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sublimity"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sublimity"; sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw"; name = "sublimity"; }; @@ -53182,7 +53868,7 @@ sha256 = "1xxf8kgxzcwwjm96isj4zg31vw63ahivr6xch5dw8wsvk0mjks9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subr+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subr+"; sha256 = "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs"; name = "subr-plus"; }; @@ -53203,7 +53889,7 @@ sha256 = "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; @@ -53224,7 +53910,7 @@ sha256 = "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; @@ -53242,7 +53928,7 @@ sha256 = "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sudo-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sudo-ext"; sha256 = "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3"; name = "sudo-ext"; }; @@ -53260,7 +53946,7 @@ sha256 = "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/summarye"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/summarye"; sha256 = "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65"; name = "summarye"; }; @@ -53281,7 +53967,7 @@ sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sunny-day-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sunny-day-theme"; sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw"; name = "sunny-day-theme"; }; @@ -53302,7 +53988,7 @@ sha256 = "1x3ivhwyapxw7v3ygam3bn2i9djrsp9mcd5zdn8q84c583ppanll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sunshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sunshine"; sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv"; name = "sunshine"; }; @@ -53323,7 +54009,7 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; @@ -53336,15 +54022,15 @@ super-save = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "super-save"; - version = "20160131.418"; + version = "20160211.456"; src = fetchFromGitHub { owner = "bbatsov"; repo = "super-save"; - rev = "cf7a60afc6173ba59627f920ecaf6e69942071b8"; - sha256 = "0jbij0wnw6rylchnhihl82harg29275ljpdh3nmcjnjhk6za60vc"; + rev = "73397501fa5b01c02b9ae94f82a8cb37d1ed105f"; + sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; @@ -53365,7 +54051,7 @@ sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/supergenpass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/supergenpass"; sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95"; name = "supergenpass"; }; @@ -53378,15 +54064,15 @@ suscolors-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "suscolors-theme"; - version = "20160201.1004"; + version = "20160217.1234"; src = fetchFromGitHub { owner = "TheSuspiciousWombat"; repo = "suscolors-emacs"; - rev = "d6e7b1a7ac7ee98a9e958702f15bcfb96463aa51"; - sha256 = "0bwmgmc12rlhcicdy6fhsq96wsvd3hdnz8w545ykiwb5wci52j0m"; + rev = "f186aab5d21d1cfb8bb0722332388cfdcb45c052"; + sha256 = "0hwlp1zwfi0qkzzxkqxxjjshgl2h5i5jjn13ky51zb733bazpifx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/suscolors-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/suscolors-theme"; sha256 = "08sh20lmhqzpxb55nmqwsfv4xd6sjirh592in7s6vl52r3hl0jkh"; name = "suscolors-theme"; }; @@ -53407,7 +54093,7 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; @@ -53428,7 +54114,7 @@ sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swap-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swap-buffers"; sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw"; name = "swap-buffers"; }; @@ -53446,7 +54132,7 @@ sha256 = "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swbuff-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swbuff-x"; sha256 = "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y"; name = "swbuff-x"; }; @@ -53467,7 +54153,7 @@ sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; @@ -53488,7 +54174,7 @@ sha256 = "08397a8y8hgyzwny4z9f6kgwy8d37h0iypcjps3l6lhnk35mshv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; @@ -53501,16 +54187,16 @@ swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swiper"; - version = "20160204.837"; + version = "20160221.235"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "00f08f74f1568b6f835abadecff32cd7c9a7a556"; - sha256 = "0hnqw1mhaa7ybldd6mvz9lyv32yspn3x2bgx3fsrh8rhsmns06qh"; + rev = "4af5c2e4e83f51da91675b0de7301b09c4b24b2c"; + sha256 = "0ra5sa0dfrh1bv1q3r81r92i6xzazvw3lzz5n5qfbxcpnf8lygzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swiper"; - sha256 = "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper"; + sha256 = "1hsj6vh0vldnvwg2qmszdi0p2ig7l63vgq2kn5nv883239bxpziz"; name = "swiper"; }; packageRequires = [ emacs ]; @@ -53530,7 +54216,7 @@ sha256 = "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; @@ -53551,7 +54237,7 @@ sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; @@ -53572,7 +54258,7 @@ sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swoop"; sha256 = "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g"; name = "swoop"; }; @@ -53593,7 +54279,7 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; @@ -53614,7 +54300,7 @@ sha256 = "0d0c2i8hh0wrz8vnhxpxzwj7vlrjx6lrb3cx56pn4ny9qyqfzmw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; @@ -53635,7 +54321,7 @@ sha256 = "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/symon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/symon"; sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz"; name = "symon"; }; @@ -53656,7 +54342,7 @@ sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/symon-lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/symon-lingr"; sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1"; name = "symon-lingr"; }; @@ -53677,7 +54363,7 @@ sha256 = "00lx6081h1nzwga5jg4cik4h667vfkn128yvnhkd0vw7b5g4ji5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sync-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sync-recentf"; sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c"; name = "sync-recentf"; }; @@ -53698,7 +54384,7 @@ sha256 = "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/synonymous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synonymous"; sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5"; name = "synonymous"; }; @@ -53716,7 +54402,7 @@ sha256 = "01l7z6l9pdxzvh851pbq2fn62r28gzwldibffb69jkdln47bph50"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/synonyms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synonyms"; sha256 = "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0"; name = "synonyms"; }; @@ -53737,7 +54423,7 @@ sha256 = "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/synosaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synosaurus"; sha256 = "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg"; name = "synosaurus"; }; @@ -53758,7 +54444,7 @@ sha256 = "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; @@ -53771,14 +54457,14 @@ syntax-subword = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syntax-subword"; - version = "20150415.1426"; + version = "20160205.1554"; src = fetchhg { url = "https://bitbucket.com/jpkotta/syntax-subword"; - rev = "a1e0accb754d"; - sha256 = "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h"; + rev = "88e9bf1d4874"; + sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; @@ -53799,7 +54485,7 @@ sha256 = "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/syslog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syslog-mode"; sha256 = "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19"; name = "syslog-mode"; }; @@ -53820,7 +54506,7 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; @@ -53841,7 +54527,7 @@ sha256 = "1z7zi0wcms55x0ar9jv02g7gbzsn4k887aigpgv4xghbdiyp7lp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/systemd"; sha256 = "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir"; name = "systemd"; }; @@ -53862,7 +54548,7 @@ sha256 = "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/systemtap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/systemtap-mode"; sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz"; name = "systemtap-mode"; }; @@ -53883,7 +54569,7 @@ sha256 = "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; @@ -53904,7 +54590,7 @@ sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tab-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tab-group"; sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9"; name = "tab-group"; }; @@ -53925,7 +54611,7 @@ sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tab-jump-out"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tab-jump-out"; sha256 = "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n"; name = "tab-jump-out"; }; @@ -53946,7 +54632,7 @@ sha256 = "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tabbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabbar"; sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9"; name = "tabbar"; }; @@ -53959,15 +54645,15 @@ tabbar-ruler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }: melpaBuild { pname = "tabbar-ruler"; - version = "20160124.2028"; + version = "20160216.2132"; src = fetchFromGitHub { owner = "mattfidler"; repo = "tabbar-ruler.el"; - rev = "605bf3b755f228f7a22e440e54a2224ffc06e2e4"; - sha256 = "1xb9g1qzpsliprcdazr4bk05kfk9dnjazx5hxiv74h33ph1xg4a6"; + rev = "5f3bb41436b00298e494c74701f0609569840a58"; + sha256 = "1d0nf6mf5vkz7mx0iwn6bgrzsf96h55khd04wf3iv39v1x4gwc6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; @@ -53988,7 +54674,7 @@ sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; @@ -54009,7 +54695,7 @@ sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tabula-rasa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabula-rasa"; sha256 = "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi"; name = "tabula-rasa"; }; @@ -54030,7 +54716,7 @@ sha256 = "00hjc6ax4659ww6vygpzzsb3zzr2ddz2z33mkp5j6hmj2s4g2viy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; @@ -54051,7 +54737,7 @@ sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/take-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/take-off"; sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar"; name = "take-off"; }; @@ -54071,7 +54757,7 @@ sha256 = "7342a670559cd296dba4b676607641a05d6203255951b17473ccdda4e35713d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tango-2-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tango-2-theme"; sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6"; name = "tango-2-theme"; }; @@ -54092,7 +54778,7 @@ sha256 = "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tango-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tango-plus-theme"; sha256 = "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5"; name = "tango-plus-theme"; }; @@ -54109,11 +54795,11 @@ src = fetchFromGitHub { owner = "juba"; repo = "color-theme-tangotango"; - rev = "92a94756080577c0446b2fc7f06d43d7b76b2005"; - sha256 = "00v2y2gfb44kmzfdbp6f4nmxlwn8gf6y3hvgqzggmlbqb5m8hg8d"; + rev = "08c3b9270547970dbce2cb1e35e66f6ae380c8b2"; + sha256 = "11xb7xpmxvgv7mrjd2vlbjz3h5fa541aydv6bdxngjq6y3qn6wsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tangotango-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tangotango-theme"; sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2"; name = "tangotango-theme"; }; @@ -54134,7 +54820,7 @@ sha256 = "1zhr6vrzf511mxrj4fkc9k8wfr1hixn733f5g28j4qzykr4zl2mh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tao-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tao-theme"; sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a"; name = "tao-theme"; }; @@ -54155,7 +54841,7 @@ sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tbx2org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tbx2org"; sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8"; name = "tbx2org"; }; @@ -54176,7 +54862,7 @@ sha256 = "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tc"; sha256 = "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s"; name = "tc"; }; @@ -54197,7 +54883,7 @@ sha256 = "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tco"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tco"; sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f"; name = "tco"; }; @@ -54218,7 +54904,7 @@ sha256 = "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tdd-status-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tdd-status-mode-line"; sha256 = "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq"; name = "tdd-status-mode-line"; }; @@ -54239,7 +54925,7 @@ sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tea-time"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tea-time"; sha256 = "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld"; name = "tea-time"; }; @@ -54260,7 +54946,7 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; @@ -54281,7 +54967,7 @@ sha256 = "0mg870s60by22ripxhqrgxjx16506n4llj9nnxlqgr4mdsi77cf5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; @@ -54302,7 +54988,7 @@ sha256 = "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-alert"; sha256 = "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n"; name = "term-alert"; }; @@ -54315,15 +55001,15 @@ term-cmd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-cmd"; - version = "20141114.1514"; + version = "20160221.627"; src = fetchFromGitHub { owner = "CallumCameron"; repo = "term-cmd"; - rev = "fc2ae638409af99c4788563ef54847636f2e23e0"; - sha256 = "11xk11i99d17x5bl7glrwj2dhvl3f54slipj034dbf07dd5b2jih"; + rev = "f478328fd225d146ca8979245724302e976f4e53"; + sha256 = "15fcl5amivjdcwprj3dwrkn17z8a0q0zl8smyryjcqpkw66xrb7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-cmd"; sha256 = "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy"; name = "term-cmd"; }; @@ -54344,7 +55030,7 @@ sha256 = "1ayr34smxf94c09ssdwl4hyhzgahsmbj7j4h25cdm6wcwii2br86"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term+"; sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8"; name = "term-plus"; }; @@ -54365,7 +55051,7 @@ sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term+key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term+key-intercept"; sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb"; name = "term-plus-key-intercept"; }; @@ -54386,7 +55072,7 @@ sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term+mux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term+mux"; sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh"; name = "term-plus-mux"; }; @@ -54407,7 +55093,7 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; @@ -54428,7 +55114,7 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; @@ -54445,11 +55131,11 @@ src = fetchFromGitHub { owner = "marijnh"; repo = "tern"; - rev = "5d9d95f976402604db161a40103e34ea90665ef0"; - sha256 = "1lnfibvs2v7byk6l1vpz7nr8jkg3fbs0ijviwxmfjqpjbaglnksv"; + rev = "adf9dac372d3521a06d01d35fda254554c154e8b"; + sha256 = "0fxaibs7kizlxh73vlv7mn4wa8sxbx67gl17rcfhm14lnk63nvcw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern"; sha256 = "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif"; name = "tern"; }; @@ -54466,11 +55152,11 @@ src = fetchFromGitHub { owner = "marijnh"; repo = "tern"; - rev = "5d9d95f976402604db161a40103e34ea90665ef0"; - sha256 = "1lnfibvs2v7byk6l1vpz7nr8jkg3fbs0ijviwxmfjqpjbaglnksv"; + rev = "adf9dac372d3521a06d01d35fda254554c154e8b"; + sha256 = "0fxaibs7kizlxh73vlv7mn4wa8sxbx67gl17rcfhm14lnk63nvcw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tern-auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-auto-complete"; sha256 = "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1"; name = "tern-auto-complete"; }; @@ -54483,15 +55169,15 @@ tern-django = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }: melpaBuild { pname = "tern-django"; - version = "20150121.1327"; + version = "20160221.1323"; src = fetchFromGitHub { owner = "proofit404"; repo = "tern-django"; - rev = "18cbf415fba5109e311aadb4a6b9d8b12507daa3"; - sha256 = "061mkj5vhyhl4fav7q0r2yxidh0jcyajznb76slkakk6n2wmv7q0"; + rev = "856fc98dc5e7cb4c8bc200f99150cc6187c82861"; + sha256 = "15jzqwfr1958s21qzimvv87kckqyq01bimqgawb51b6xi9ib3biv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; @@ -54512,7 +55198,7 @@ sha256 = "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; @@ -54533,7 +55219,7 @@ sha256 = "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; @@ -54554,7 +55240,7 @@ sha256 = "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; @@ -54575,7 +55261,7 @@ sha256 = "0h2g02r1spj8vbwgvjn3dddyj89j1qcqzdf2kdggvyyisssj81s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; @@ -54596,7 +55282,7 @@ sha256 = "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/textile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textile-mode"; sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf"; name = "textile-mode"; }; @@ -54617,7 +55303,7 @@ sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; @@ -54638,7 +55324,7 @@ sha256 = "1idhhfp0jhnykyms7dp3lfk6imddg6a315pfklbjpcys4y3fdz89"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; @@ -54656,7 +55342,7 @@ sha256 = "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tfs"; sha256 = "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0"; name = "tfs"; }; @@ -54677,7 +55363,7 @@ sha256 = "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; @@ -54698,7 +55384,7 @@ sha256 = "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/theme-looper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/theme-looper"; sha256 = "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5"; name = "theme-looper"; }; @@ -54719,7 +55405,7 @@ sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/therapy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/therapy"; sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh"; name = "therapy"; }; @@ -54737,7 +55423,7 @@ sha256 = "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thesaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thesaurus"; sha256 = "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h"; name = "thesaurus"; }; @@ -54756,7 +55442,7 @@ sha256 = "1nclwxb63ffbc4wsga9ngkfcxsw88za0c4663fh9x64rl4db4hn8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thing-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thing-cmds"; sha256 = "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw"; name = "thing-cmds"; }; @@ -54774,7 +55460,7 @@ sha256 = "0ijz0mj095wycpc3as5fiikrwazljk0c04rh089ch0mzc95g3vqq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thingatpt+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thingatpt+"; sha256 = "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa"; name = "thingatpt-plus"; }; @@ -54795,7 +55481,7 @@ sha256 = "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thingopt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thingopt"; sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y"; name = "thingopt"; }; @@ -54816,7 +55502,7 @@ sha256 = "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thread-dump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thread-dump"; sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2"; name = "thread-dump"; }; @@ -54833,11 +55519,11 @@ src = fetchFromGitHub { owner = "apache"; repo = "thrift"; - rev = "c1a78ba6d5ff0c015768a5b0969112895b4e7723"; - sha256 = "1dq9a26vvv3a9nkdf7yb42a4dklg91g2wpnh3yv1zdcxh8hk2nx5"; + rev = "33de26cf658450513ef5731ac55b635addb4d43d"; + sha256 = "1893s2sn6gmyd4s8slzh3hc6rffh6x17wvhlgfm4xlgzk4wyd1rj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; @@ -54856,7 +55542,7 @@ sha256 = "0nyp1sp55l3mlhlxw8kyp6hxan3rbgwc4fmfs174n6hlj3zr5vg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thumb-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thumb-frm"; sha256 = "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c"; name = "thumb-frm"; }; @@ -54877,7 +55563,7 @@ sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thumb-through"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thumb-through"; sha256 = "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln"; name = "thumb-through"; }; @@ -54890,15 +55576,15 @@ tide = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }: melpaBuild { pname = "tide"; - version = "20160130.243"; + version = "20160221.142"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "tide"; - rev = "a68c70c3eebaa15394d96978019186b4d0a6aac2"; - sha256 = "1qgnmsvslyqip0x8k6yd7cl47c9biyxwqk69hnsvpjjbsv2l3y8j"; + rev = "20e4748f2fa002b4cd53caf426b52734e51254c1"; + sha256 = "1g530aq7vflnpigw7cii9z86263kxjv6f78dyiy7zvab6rzc9vyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tide"; sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1"; name = "tide"; }; @@ -54916,7 +55602,7 @@ sha256 = "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tidy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tidy"; sha256 = "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m"; name = "tidy"; }; @@ -54934,7 +55620,7 @@ sha256 = "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/time-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/time-ext"; sha256 = "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk"; name = "time-ext"; }; @@ -54955,7 +55641,7 @@ sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; @@ -54976,7 +55662,7 @@ sha256 = "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; @@ -54997,7 +55683,7 @@ sha256 = "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tinkerer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tinkerer"; sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd"; name = "tinkerer"; }; @@ -55018,7 +55704,7 @@ sha256 = "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tiny"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tiny"; sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy"; name = "tiny"; }; @@ -55039,7 +55725,7 @@ sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tinysegmenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tinysegmenter"; sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6"; name = "tinysegmenter"; }; @@ -55056,11 +55742,11 @@ src = fetchFromGitHub { owner = "katspaugh"; repo = "tj-mode"; - rev = "8d60bcbe264275c76a2284fbc84ba80e0ac8e767"; - sha256 = "1wr8m7yivz4z8rsiiqdlvdv3s2i0japvbpsz3x7nxr1y75fax2mz"; + rev = "361f5b0baa90f9d0b3fd92a3d9d557a1224b4308"; + sha256 = "1zvykanmn065rlk9hlv85vary1l6y52bsnaa51fkpckpr6dicmcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tj-mode"; sha256 = "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf"; name = "tj-mode"; }; @@ -55073,15 +55759,15 @@ tldr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tldr"; - version = "20160203.1020"; + version = "20160221.811"; src = fetchFromGitHub { owner = "kuanyui"; repo = "tldr.el"; - rev = "56b0cefcbc0e81f94652f8e17b34b0dfadc8e7c4"; - sha256 = "1qwd84fmgifs12xw02mlrpkyvmxa58c0xfk0zjsnxb7nldfmbbj7"; + rev = "79e1e37214d5a8cce829eec3db43154fb78cf2ff"; + sha256 = "1bkv3wm8nfn1pa6v9s79ckv7pn8g2fdd43vac4mfii94wmvz0zaj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tldr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tldr"; sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9"; name = "tldr"; }; @@ -55100,7 +55786,7 @@ sha256 = "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tmmofl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tmmofl"; sha256 = "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8"; name = "tmmofl"; }; @@ -55121,7 +55807,7 @@ sha256 = "0gzv45yxjy0bkdnx9kki0svmc7gxrdaarblvi1pyvl7id31ssw70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toc-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toc-org"; sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs"; name = "toc-org"; }; @@ -55139,7 +55825,7 @@ sha256 = "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/todochiku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/todochiku"; sha256 = "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96"; name = "todochiku"; }; @@ -55160,7 +55846,7 @@ sha256 = "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/todotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/todotxt"; sha256 = "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr"; name = "todotxt"; }; @@ -55181,7 +55867,7 @@ sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/todotxt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/todotxt-mode"; sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k"; name = "todotxt-mode"; }; @@ -55202,7 +55888,7 @@ sha256 = "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/togetherly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/togetherly"; sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f"; name = "togetherly"; }; @@ -55223,7 +55909,7 @@ sha256 = "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle"; sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq"; name = "toggle"; }; @@ -55244,7 +55930,7 @@ sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toggle-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle-quotes"; sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp"; name = "toggle-quotes"; }; @@ -55265,7 +55951,7 @@ sha256 = "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toggle-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle-test"; sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1"; name = "toggle-test"; }; @@ -55286,7 +55972,7 @@ sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toggle-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle-window"; sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g"; name = "toggle-window"; }; @@ -55307,7 +55993,7 @@ sha256 = "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tomatinho"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tomatinho"; sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz"; name = "tomatinho"; }; @@ -55328,7 +56014,7 @@ sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toml"; sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b"; name = "toml"; }; @@ -55349,7 +56035,7 @@ sha256 = "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toml-mode"; sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l"; name = "toml-mode"; }; @@ -55370,7 +56056,7 @@ sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tommyh-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tommyh-theme"; sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4"; name = "tommyh-theme"; }; @@ -55388,7 +56074,7 @@ sha256 = "1sqflxj3hzxdlwn5qmpqm4dwik5vsyp7lypkvshcghdplxymb38a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tool-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tool-bar+"; sha256 = "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d"; name = "tool-bar-plus"; }; @@ -55406,7 +56092,7 @@ sha256 = "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/top-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/top-mode"; sha256 = "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx"; name = "top-mode"; }; @@ -55427,7 +56113,7 @@ sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tornado-template-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tornado-template-mode"; sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h"; name = "tornado-template-mode"; }; @@ -55448,7 +56134,7 @@ sha256 = "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/totd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/totd"; sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0"; name = "totd"; }; @@ -55469,7 +56155,7 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; @@ -55489,7 +56175,7 @@ sha256 = "0hfzbrw9ik3yxdwmgsm80k0n045z6az6pgvxc1nqcjmiwh80h9mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/toxi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toxi-theme"; sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; name = "toxi-theme"; }; @@ -55510,7 +56196,7 @@ sha256 = "1yh9dxf986dl74sgn71qxwxsg67lr0yg1z7b9h2254lmxq0mgni6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/traad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/traad"; sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf"; name = "traad"; }; @@ -55533,11 +56219,11 @@ src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "35618a1e890dfff7bc3c879e4f0e23868d00bf85"; - sha256 = "1qw8ax3a1v1053qh9i41ci93hc4034ghlcwq8hldr3amsz344fhj"; + rev = "ca3e957f41e47afa05f73962c1ad72f401666384"; + sha256 = "0gwkm8c9g501g80rvqlzmn24q4ylkb94bklsf173yiinqmz1jhkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; @@ -55558,7 +56244,7 @@ sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tracwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tracwiki-mode"; sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0"; name = "tracwiki-mode"; }; @@ -55579,7 +56265,7 @@ sha256 = "057a3z42j4s0npl35p5rl6n767s2wq0a3c49wii3f1w8p40fh7qc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tramp-hdfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tramp-hdfs"; sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b"; name = "tramp-hdfs"; }; @@ -55600,7 +56286,7 @@ sha256 = "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tramp-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tramp-term"; sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy"; name = "tramp-term"; }; @@ -55613,15 +56299,15 @@ transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "transmission"; - version = "20160202.1601"; + version = "20160215.2255"; src = fetchFromGitHub { owner = "holomorph"; repo = "transmission"; - rev = "ee474457b249b0ec86cb3c222ae9368887bbf483"; - sha256 = "1fqcqbs4pdbbn8ldn4rsc9akgd9sr8ckqkin2vr7dzhxm8ds5b9k"; + rev = "1c6f3ca3f07d8364f7514e27f5808d97cf984854"; + sha256 = "05cq0gbhfrd91fd625hq2qyk5dpjzc1jgph80slm7b6c45vdll4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; @@ -55639,7 +56325,7 @@ sha256 = "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/transpose-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transpose-frame"; sha256 = "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5"; name = "transpose-frame"; }; @@ -55660,7 +56346,7 @@ sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/transpose-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transpose-mark"; sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv"; name = "transpose-mark"; }; @@ -55681,7 +56367,7 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; @@ -55699,7 +56385,7 @@ sha256 = "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tree-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tree-mode"; sha256 = "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24"; name = "tree-mode"; }; @@ -55720,7 +56406,7 @@ sha256 = "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/trident-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/trident-mode"; sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd"; name = "trident-mode"; }; @@ -55741,7 +56427,7 @@ sha256 = "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tronesque-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tronesque-theme"; sha256 = "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j"; name = "tronesque-theme"; }; @@ -55762,7 +56448,7 @@ sha256 = "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; @@ -55783,7 +56469,7 @@ sha256 = "1i2bw3d834ibk3aj16rcs8g81r7n5qa37g8k7lgpl255mfpyfzlq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/try"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/try"; sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n"; name = "try"; }; @@ -55804,7 +56490,7 @@ sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; @@ -55825,7 +56511,7 @@ sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tt-mode"; sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf"; name = "tt-mode"; }; @@ -55846,7 +56532,7 @@ sha256 = "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; @@ -55867,7 +56553,7 @@ sha256 = "0knp7nbzhzahkn97zs2aw0ly7x40cbh8m5xb4rk1ynw0n09zq3d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; @@ -55888,7 +56574,7 @@ sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; @@ -55909,7 +56595,7 @@ sha256 = "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tumblesocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tumblesocks"; sha256 = "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9"; name = "tumblesocks"; }; @@ -55930,7 +56616,7 @@ sha256 = "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; @@ -55951,7 +56637,7 @@ sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/turnip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/turnip"; sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps"; name = "turnip"; }; @@ -55972,7 +56658,7 @@ sha256 = "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twig-mode"; sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n"; name = "twig-mode"; }; @@ -55993,7 +56679,7 @@ sha256 = "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; @@ -56014,7 +56700,7 @@ sha256 = "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twilight-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-bright-theme"; sha256 = "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d"; name = "twilight-bright-theme"; }; @@ -56035,7 +56721,7 @@ sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twilight-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-theme"; sha256 = "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7"; name = "twilight-theme"; }; @@ -56048,15 +56734,15 @@ twittering-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twittering-mode"; - version = "20150906.1203"; + version = "20160207.356"; src = fetchFromGitHub { owner = "hayamiz"; repo = "twittering-mode"; - rev = "97197cdd3cc005000dc2599f67c754d74fab5972"; - sha256 = "02c9z229ayqnmlvja5a2fz3vk8914v9v8akin57q8a0gyzn2bli5"; + rev = "17c2c0dacea31c81b03d1f27bce6aa6f0d327cca"; + sha256 = "0kg27nl9lg6zrx18glkwbgfxbclzw5fmvhldkkbs388ghp53mxar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; @@ -56077,7 +56763,7 @@ sha256 = "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; @@ -56098,7 +56784,7 @@ sha256 = "17q7f433x8i484scwdbfsd0vh8lshzkwjlarhqw6ic53mzakgjiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typescript-mode"; sha256 = "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha"; name = "typescript-mode"; }; @@ -56116,7 +56802,7 @@ sha256 = "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typing"; sha256 = "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3"; name = "typing"; }; @@ -56137,7 +56823,7 @@ sha256 = "0i5pipciwsl6cj3inxiz6ybkv5jglacjwhcyqdfzi4mrbic7g848"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typing-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typing-game"; sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2"; name = "typing-game"; }; @@ -56158,7 +56844,7 @@ sha256 = "0bn1bvs334wb64bli9h613zf1vzjyi0pz8bgyq1wy12qmbwwmfwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; @@ -56179,7 +56865,7 @@ sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; @@ -56197,7 +56883,7 @@ sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ucs-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ucs-cmds"; sha256 = "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1"; name = "ucs-cmds"; }; @@ -56218,7 +56904,7 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; @@ -56239,7 +56925,7 @@ sha256 = "19qvn1vzal5k86pqn6a4ins869qmp2i586qqbl97z84szn8mn7j3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/uimage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uimage"; sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd"; name = "uimage"; }; @@ -56260,7 +56946,7 @@ sha256 = "0cryprvns1qdnp2qif2g187lj15810w472m7nwrfiwgvqv4v3p1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ujelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ujelly-theme"; sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw"; name = "ujelly-theme"; }; @@ -56281,7 +56967,7 @@ sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ukrainian-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ukrainian-holidays"; sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf"; name = "ukrainian-holidays"; }; @@ -56299,7 +56985,7 @@ sha256 = "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unbound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unbound"; sha256 = "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x"; name = "unbound"; }; @@ -56320,7 +57006,7 @@ sha256 = "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/uncrustify-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uncrustify-mode"; sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd"; name = "uncrustify-mode"; }; @@ -56333,15 +57019,15 @@ undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }: melpaBuild { pname = "undercover"; - version = "20150817.1210"; + version = "20160221.304"; src = fetchFromGitHub { owner = "sviridov"; repo = "undercover.el"; - rev = "7b38281c21a0ed9f7260d58aca6b4b2471672cfd"; - sha256 = "1qm6fzgmrdzhkajd60l4l890dlbxll96x41kx36wm97h4gz7aiyw"; + rev = "e72b8c924272f65d7cc6e884478e26d0b1e1e4e8"; + sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; @@ -56362,7 +57048,7 @@ sha256 = "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; @@ -56382,7 +57068,7 @@ sha256 = "1ef5db7cf476dd37348fd1f11dd199613a89a2351dc583a42afd9d35a53d8ae2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/undo-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undo-tree"; sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr"; name = "undo-tree"; }; @@ -56403,7 +57089,7 @@ sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/undohist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undohist"; sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn"; name = "undohist"; }; @@ -56424,7 +57110,7 @@ sha256 = "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; @@ -56445,7 +57131,7 @@ sha256 = "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-emoticons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-emoticons"; sha256 = "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn"; name = "unicode-emoticons"; }; @@ -56466,7 +57152,7 @@ sha256 = "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -56493,7 +57179,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -56519,7 +57205,7 @@ sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-input"; sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8"; name = "unicode-input"; }; @@ -56540,7 +57226,7 @@ sha256 = "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; @@ -56561,7 +57247,7 @@ sha256 = "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-troll-stopper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-troll-stopper"; sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5"; name = "unicode-troll-stopper"; }; @@ -56582,7 +57268,7 @@ sha256 = "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; @@ -56603,7 +57289,7 @@ sha256 = "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unidecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unidecode"; sha256 = "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1"; name = "unidecode"; }; @@ -56624,7 +57310,7 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; @@ -56645,7 +57331,7 @@ sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unipoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unipoint"; sha256 = "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7"; name = "unipoint"; }; @@ -56666,7 +57352,7 @@ sha256 = "0l8h084xkbjvx2vbg67hxmg4hb9175k858z3k3c93d2b6x2kh7ni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unison-mode"; sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl"; name = "unison-mode"; }; @@ -56687,7 +57373,7 @@ sha256 = "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; @@ -56708,7 +57394,7 @@ sha256 = "118c23dsfgkhwhv65dx3wbg2dn7qyrd80d78cykl732c68d6wvi0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/url-shortener"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/url-shortener"; sha256 = "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys"; name = "url-shortener"; }; @@ -56729,7 +57415,7 @@ sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/urlenc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/urlenc"; sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh"; name = "urlenc"; }; @@ -56747,7 +57433,7 @@ sha256 = "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/usage-memo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/usage-memo"; sha256 = "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95"; name = "usage-memo"; }; @@ -56760,15 +57446,15 @@ use-package = callPackage ({ bind-key, diminish, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "use-package"; - version = "20160204.1300"; + version = "20160209.1833"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; - rev = "a29e0328c0076cc927e5fd3d8db1878c0f978ace"; - sha256 = "0s4qmqgym12gk8kiz90ck5yi7icz8dydyks0psfam1nza89cbfys"; + rev = "6b1956813f0f0e553a7eb6923ff846f9c3556146"; + sha256 = "13yzxlxkykv3qkaaifn3pf0y94dgqysxz5p7vh71jpqxi6d7jmgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; @@ -56789,7 +57475,7 @@ sha256 = "05lhxbrgwbyz0nkb19yln9a46jh91ic685943hd58cn91lxsw3al"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/use-package-chords"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/use-package-chords"; sha256 = "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass"; name = "use-package-chords"; }; @@ -56806,11 +57492,11 @@ src = fetchFromGitHub { owner = "diml"; repo = "utop"; - rev = "fd7c663264c29438249d7f6cdad9494f57086e69"; - sha256 = "1kf8aa4m8622nm52n6nrsa7zhlnfwi9ldvpj9fjvypbm07ai6i03"; + rev = "2f48c9f512c36e195dfe26c57ff3373fc6463507"; + sha256 = "1fzs9y0k1cl6jda0vhra1v20cmdf9z8cp6yha6iv7f2d1l2srggd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; @@ -56831,7 +57517,7 @@ sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/uuid"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uuid"; sha256 = "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw"; name = "uuid"; }; @@ -56852,7 +57538,7 @@ sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/uuidgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uuidgen"; sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48"; name = "uuidgen"; }; @@ -56873,7 +57559,7 @@ sha256 = "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; @@ -56894,7 +57580,7 @@ sha256 = "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; @@ -56915,7 +57601,7 @@ sha256 = "1xslw0whxmqsd79jwxgz1k7h55shffq3985im96pdzf4iivkr3ln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vagrant-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vagrant-tramp"; sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5"; name = "vagrant-tramp"; }; @@ -56936,7 +57622,7 @@ sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vala-mode"; sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p"; name = "vala-mode"; }; @@ -56957,7 +57643,7 @@ sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vala-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vala-snippets"; sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy"; name = "vala-snippets"; }; @@ -56978,7 +57664,7 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; @@ -56999,7 +57685,7 @@ sha256 = "09h7yg44hbxv3pyazfypkvk8j3drlwz0zn8x1wj0kbsviksl1wxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vc-auto-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-auto-commit"; sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk"; name = "vc-auto-commit"; }; @@ -57020,7 +57706,7 @@ sha256 = "0icc4kqfpimxlja4jgcy9gjj4myc8y84vbvacyf79lxixygpaxi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vc-check-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-check-status"; sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi"; name = "vc-check-status"; }; @@ -57030,6 +57716,27 @@ license = lib.licenses.free; }; }) {}; + vc-darcs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "vc-darcs"; + version = "20151225.1428"; + src = fetchFromGitHub { + owner = "velkyel"; + repo = "vc-darcs"; + rev = "f9b4cd89ed7eff91009ce27d9e1d2fb555a5efff"; + sha256 = "1zpvinbc3nrnjm931fgzrlkl31xcsg9ikh041s1fkfjkhfq0h82h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-darcs"; + sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m"; + name = "vc-darcs"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/vc-darcs"; + license = lib.licenses.free; + }; + }) {}; vc-osc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-osc"; @@ -57041,7 +57748,7 @@ sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vc-osc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-osc"; sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz"; name = "vc-osc"; }; @@ -57062,7 +57769,7 @@ sha256 = "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vcl-mode"; sha256 = "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5"; name = "vcl-mode"; }; @@ -57083,7 +57790,7 @@ sha256 = "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; @@ -57104,7 +57811,7 @@ sha256 = "1lh8nv0ayl9ipl2aqc8npzz84g5q7w6v60l14v61mmk34fc23lnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; @@ -57125,7 +57832,7 @@ sha256 = "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; @@ -57146,7 +57853,7 @@ sha256 = "0vlkg77a0h5z36f370phl2xdzykz9h9in3vng68zn1pfhx2allyx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/verify-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/verify-url"; sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2"; name = "verify-url"; }; @@ -57167,7 +57874,7 @@ sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vertica"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vertica"; sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng"; name = "vertica"; }; @@ -57188,7 +57895,7 @@ sha256 = "0v884gbqq5vrx5gwg9dqn97kaqgnzhrqv8kam8dy9g7hx4fm6b2l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vertigo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vertigo"; sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; name = "vertigo"; }; @@ -57209,7 +57916,7 @@ sha256 = "0ba22j368w6jac94hwmy27bhm3h1r7kpiwdzy8ggfxfzwn0sd4dy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; @@ -57230,7 +57937,7 @@ sha256 = "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vi-tilde-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vi-tilde-fringe"; sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp"; name = "vi-tilde-fringe"; }; @@ -57248,7 +57955,7 @@ sha256 = "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/viewer"; sha256 = "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf"; name = "viewer"; }; @@ -57265,11 +57972,11 @@ src = fetchFromGitHub { owner = "jmickelin"; repo = "vim-empty-lines-mode"; - rev = "442a29b0ba1635a3b352c9dd1faf9ce99656d048"; - sha256 = "09x857vbx35rpyc5x1322ajby613gva090x4vawaczk22idq65h4"; + rev = "d4a5034ca8ea0c962ad6e92c86c0fa2a74d2964b"; + sha256 = "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vim-empty-lines-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vim-empty-lines-mode"; sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb"; name = "vim-empty-lines-mode"; }; @@ -57290,7 +57997,7 @@ sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; @@ -57311,7 +58018,7 @@ sha256 = "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; @@ -57332,7 +58039,7 @@ sha256 = "0rl9pcw1dcqpivmcrwpbsd11ym643zccp4sh5k11rmal77gb36sl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; @@ -57353,7 +58060,7 @@ sha256 = "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vimrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimrc-mode"; sha256 = "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp"; name = "vimrc-mode"; }; @@ -57374,7 +58081,7 @@ sha256 = "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/virtualenv"; sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl"; name = "virtualenv"; }; @@ -57391,11 +58098,11 @@ src = fetchFromGitHub { owner = "porterjamesj"; repo = "virtualenvwrapper.el"; - rev = "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2"; - sha256 = "1a0x4dsyavqcl7xibn3g90fxvh1fnb6k0mpjm5mjvzc168p939kc"; + rev = "e6b78e56c204ba6aea17c934e0a0a86b14bac832"; + sha256 = "0gywi1irsmgrhxb76k5nnycb66l6xpkql195w4h90x1q4lx34dk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/virtualenvwrapper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/virtualenvwrapper"; sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i"; name = "virtualenvwrapper"; }; @@ -57416,7 +58123,7 @@ sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/visible-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visible-mark"; sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; name = "visible-mark"; }; @@ -57437,7 +58144,7 @@ sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/visual-ascii-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-ascii-mode"; sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g"; name = "visual-ascii-mode"; }; @@ -57458,7 +58165,7 @@ sha256 = "126qm63ik1n1agvcp4mgk1gr7dnnyjif8zbw0l336q74d5cy6h6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; @@ -57479,7 +58186,7 @@ sha256 = "04wds01yzhia508852gm18rp7dkg0838j0w8cr1l1qmc8p0jjsz9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/visual-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-regexp"; sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z"; name = "visual-regexp"; }; @@ -57500,7 +58207,7 @@ sha256 = "03jggsnz5j0c36inxqa16vrdwlzn3wrniyl2i9b8c5bx7az7210m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/visual-regexp-steroids"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-regexp-steroids"; sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr"; name = "visual-regexp-steroids"; }; @@ -57521,7 +58228,7 @@ sha256 = "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vkill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vkill"; sha256 = "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm"; name = "vkill"; }; @@ -57542,7 +58249,7 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; @@ -57560,7 +58267,7 @@ sha256 = "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vline"; sha256 = "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp"; name = "vline"; }; @@ -57581,7 +58288,7 @@ sha256 = "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; @@ -57594,15 +58301,15 @@ volatile-highlights = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "volatile-highlights"; - version = "20141005.40"; + version = "20160221.412"; src = fetchFromGitHub { owner = "k-talo"; repo = "volatile-highlights.el"; - rev = "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24"; - sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf"; + rev = "a5dccb026232733f72c98ce394d836b2e5cd42ac"; + sha256 = "1yrpqlpxnw7jckhhc18i058vcpi12y687181h0azcwb0wq9p2c26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; @@ -57623,7 +58330,7 @@ sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/volume"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/volume"; sha256 = "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i"; name = "volume"; }; @@ -57641,7 +58348,7 @@ sha256 = "0vb5ss30mz0kqq8cscjckw647vqn6xprp2sfjcbpg2fx59z4agma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/w32-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/w32-browser"; sha256 = "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6"; name = "w32-browser"; }; @@ -57660,7 +58367,7 @@ sha256 = "0nyara81bnd0rvgyljqrrbvjvndkngdc7qzf6scl5iz3vlglfgy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/w32browser-dlgopen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/w32browser-dlgopen"; sha256 = "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39"; name = "w32browser-dlgopen"; }; @@ -57681,7 +58388,7 @@ sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/w3m"; sha256 = "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw"; name = "w3m"; }; @@ -57702,7 +58409,7 @@ sha256 = "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; @@ -57723,7 +58430,7 @@ sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/waher-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/waher-theme"; sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5"; name = "waher-theme"; }; @@ -57744,7 +58451,7 @@ sha256 = "1bcdvk5bg5yi0qq0wd3w9wl38s0brrafz52bzsracj3wffswjg1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wakatime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wakatime-mode"; sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8"; name = "wakatime-mode"; }; @@ -57765,7 +58472,7 @@ sha256 = "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wand"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wand"; sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l"; name = "wand"; }; @@ -57786,7 +58493,7 @@ sha256 = "114f7sqwq6whbdsidg6wlzjayy6dla06h7fmg1gjkhkbdqq4h94d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wandbox"; sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; name = "wandbox"; }; @@ -57799,15 +58506,15 @@ wanderlust = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, semi }: melpaBuild { pname = "wanderlust"; - version = "20160116.733"; + version = "20160129.1736"; src = fetchFromGitHub { owner = "wanderlust"; repo = "wanderlust"; - rev = "5dba92992d54ae5403b19b7143ab3f7770cacec8"; - sha256 = "0q1a2ihrz7g08sqv55dx9ki3qb75rrg2dnzdy7kyv60cdz4gcz33"; + rev = "154d38e6a7d2355483087f6ddd2ce075a6cfe3a1"; + sha256 = "0pa7657zzd0hpf9wsrmvh396nyfp8458s6gh4852ajiyj5pfpvdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wanderlust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wanderlust"; sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9"; name = "wanderlust"; }; @@ -57828,7 +58535,7 @@ sha256 = "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/warm-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/warm-night-theme"; sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29"; name = "warm-night-theme"; }; @@ -57849,7 +58556,7 @@ sha256 = "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/watch-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/watch-buffer"; sha256 = "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5"; name = "watch-buffer"; }; @@ -57870,7 +58577,7 @@ sha256 = "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wavefront-obj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wavefront-obj-mode"; sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk"; name = "wavefront-obj-mode"; }; @@ -57891,7 +58598,7 @@ sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; @@ -57909,7 +58616,7 @@ sha256 = "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wc-mode"; sha256 = "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s"; name = "wc-mode"; }; @@ -57922,15 +58629,15 @@ wcheck-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wcheck-mode"; - version = "20160130.1221"; + version = "20160208.1336"; src = fetchFromGitHub { owner = "tlikonen"; repo = "wcheck-mode"; - rev = "adb9dd9f39cb0bd0000d140d6e778c4864dfde08"; - sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l"; + rev = "e07dd1d0c3e034360d08c3856471496273a340da"; + sha256 = "0irw76inj3gdmi88hiayplv6fzjjjsvvvmr121ahh3p73mb14cjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; @@ -57951,7 +58658,7 @@ sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; @@ -57972,7 +58679,7 @@ sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web"; sha256 = "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a"; name = "web"; }; @@ -57993,7 +58700,7 @@ sha256 = "0ky2rg16xrbnsvqc6gcfhgi69fdzbx6jlsq73n8hr0n4562czhzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web-beautify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-beautify"; sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; name = "web-beautify"; }; @@ -58014,7 +58721,7 @@ sha256 = "12j8ql9v9mrg8hlsminpm3ydcacc2fbdjsfw7l604sc3qvgza1lm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; @@ -58027,15 +58734,15 @@ web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-mode"; - version = "20160202.117"; + version = "20160212.738"; src = fetchFromGitHub { owner = "fxbois"; repo = "web-mode"; - rev = "594f00bf31815d39caefef75ae2ee11356afed58"; - sha256 = "0psk1k1jryljkw4vj04d7ay424fwq212729fmqsziqzmjfjvsl0l"; + rev = "e82d71b4bf21da2f00120c4e00dddab9d741f35a"; + sha256 = "1ai3chja063my6lh2q5gfsphdxhwp41jjgpsqnqh0p5dy2f1kvhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; @@ -58056,7 +58763,7 @@ sha256 = "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-server"; sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3"; name = "web-server"; }; @@ -58076,7 +58783,7 @@ sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; @@ -58097,7 +58804,7 @@ sha256 = "1vj10jcraxpwk896zyscpmgd55r1czzlqj1gz29skbq2zan1l042"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/websocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/websocket"; sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg"; name = "websocket"; }; @@ -58118,7 +58825,7 @@ sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wedge-ws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wedge-ws"; sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll"; name = "wedge-ws"; }; @@ -58139,7 +58846,7 @@ sha256 = "03xsh3fc7if6rkdp2s8lmrzpqm3pjakgqi3faap44y9i84q6mc6k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; @@ -58160,7 +58867,7 @@ sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; @@ -58181,7 +58888,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep"; sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; name = "wgrep"; }; @@ -58202,7 +58909,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wgrep-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-ack"; sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; name = "wgrep-ack"; }; @@ -58223,7 +58930,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wgrep-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-ag"; sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; name = "wgrep-ag"; }; @@ -58244,7 +58951,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wgrep-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-helm"; sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; name = "wgrep-helm"; }; @@ -58265,7 +58972,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wgrep-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-pt"; sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; name = "wgrep-pt"; }; @@ -58286,7 +58993,7 @@ sha256 = "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/what-the-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/what-the-commit"; sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak"; name = "what-the-commit"; }; @@ -58299,15 +59006,15 @@ which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "20160203.1414"; + version = "20160213.854"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "e7a9ebf15f30b2e8763152af4e939bfc87b9fc42"; - sha256 = "1gf2gg1n6f3fqflpav8szfkrb3g1ivx4vlxlylkgr46km826aqin"; + rev = "69a1435dffc88af1b6e1e974945102b340798141"; + sha256 = "18bq95k6zah7nn0cyjv0siyw1hrm0vpjnhh9gjmcnd2h3k8g95cc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; @@ -58328,7 +59035,7 @@ sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; @@ -58349,7 +59056,7 @@ sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/white-sand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/white-sand-theme"; sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5"; name = "white-sand-theme"; }; @@ -58370,7 +59077,7 @@ sha256 = "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; @@ -58391,7 +59098,7 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; @@ -58409,7 +59116,7 @@ sha256 = "18bnwwjk8jj4ns08sxhnznj0d8n1bxm2kj43r06nwyibh6ajpl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wid-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wid-edit+"; sha256 = "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv"; name = "wid-edit-plus"; }; @@ -58429,7 +59136,7 @@ sha256 = "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wide-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wide-column"; sha256 = "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az"; name = "wide-column"; }; @@ -58450,7 +59157,7 @@ sha256 = "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; @@ -58471,7 +59178,7 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; @@ -58492,7 +59199,7 @@ sha256 = "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wiki-summary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wiki-summary"; sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw"; name = "wiki-summary"; }; @@ -58513,7 +59220,7 @@ sha256 = "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wilt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wilt"; sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6"; name = "wilt"; }; @@ -58531,7 +59238,7 @@ sha256 = "142ql6886h418f73h3wjblhnd16qvbap7mfr4g2yv4xybh88d4x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wimpy-del"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wimpy-del"; sha256 = "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x"; name = "wimpy-del"; }; @@ -58552,7 +59259,7 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; @@ -58570,7 +59277,7 @@ sha256 = "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/windata"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/windata"; sha256 = "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5"; name = "windata"; }; @@ -58591,7 +59298,7 @@ sha256 = "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; @@ -58612,7 +59319,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-jump"; sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr"; name = "window-jump"; }; @@ -58633,7 +59340,7 @@ sha256 = "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; @@ -58651,7 +59358,7 @@ sha256 = "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-number"; sha256 = "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap"; name = "window-number"; }; @@ -58672,7 +59379,7 @@ sha256 = "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; @@ -58690,7 +59397,7 @@ sha256 = "0mqdcgk6mdxgl9if7jzgg16zqdwnsp8icrdhnygphw5m9h2dqcnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window+"; sha256 = "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j"; name = "window-plus"; }; @@ -58703,15 +59410,15 @@ window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }: melpaBuild { pname = "window-purpose"; - version = "20160203.1103"; + version = "20160217.1132"; src = fetchFromGitHub { owner = "bmag"; repo = "emacs-purpose"; - rev = "38fda8c9e4c0ad4fb0068b6b45ed0744f8d602a7"; - sha256 = "0lm16hi6v4mg9jwqk3npzzpy2gaqz1kl47rdazlgdz4yl8x133c8"; + rev = "3820ff87df683a1880f5c81427d656e51b0e2865"; + sha256 = "1m3879zr8dc73vn5l6lsmbvnz3lhial2gai4jbldjc1br9jsq1q2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; @@ -58732,7 +59439,7 @@ sha256 = "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; @@ -58753,7 +59460,7 @@ sha256 = "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/winpoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/winpoint"; sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w"; name = "winpoint"; }; @@ -58773,7 +59480,7 @@ sha256 = "16711d1ds508nmjw81jm2cfdpqzc55gc175fkhayk0f5swlvd11m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; @@ -58794,7 +59501,7 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; @@ -58815,7 +59522,7 @@ sha256 = "0dymhkbkzicjw0379bdzbb594x5xcjbgbn428a30i2i0jwv66pfz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; @@ -58836,7 +59543,7 @@ sha256 = "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/with-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/with-namespace"; sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i"; name = "with-namespace"; }; @@ -58857,7 +59564,7 @@ sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; @@ -58878,7 +59585,7 @@ sha256 = "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wolfram-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wolfram-mode"; sha256 = "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf"; name = "wolfram-mode"; }; @@ -58899,7 +59606,7 @@ sha256 = "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; @@ -58920,7 +59627,7 @@ sha256 = "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wordnut"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wordnut"; sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n"; name = "wordnut"; }; @@ -58941,7 +59648,7 @@ sha256 = "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; @@ -58954,15 +59661,15 @@ worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper }: melpaBuild { pname = "worf"; - version = "20160121.638"; + version = "20160207.848"; src = fetchFromGitHub { owner = "abo-abo"; repo = "worf"; - rev = "51fa0f71e49ad8b8d9c87156c724007e58d87a02"; - sha256 = "15nc9zw12jd9jb4s02sa8a3c0i2s91ijy0bn43d36qc5i48c01zs"; + rev = "f36755447b588b739b2bf6ab0fb5eb5f4d8db3df"; + sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/worf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/worf"; sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; name = "worf"; }; @@ -58983,7 +59690,7 @@ sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/workgroups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/workgroups"; sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8"; name = "workgroups"; }; @@ -59004,7 +59711,7 @@ sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/workgroups2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/workgroups2"; sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v"; name = "workgroups2"; }; @@ -59025,7 +59732,7 @@ sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/world-time-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/world-time-mode"; sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl"; name = "world-time-mode"; }; @@ -59046,7 +59753,7 @@ sha256 = "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wrap-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wrap-region"; sha256 = "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq"; name = "wrap-region"; }; @@ -59067,7 +59774,7 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; @@ -59088,7 +59795,7 @@ sha256 = "0an36zra25r0l482irxbwrq90fd3rik53yqw3gccjkgdf3lpkc4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; @@ -59109,7 +59816,7 @@ sha256 = "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; @@ -59122,15 +59829,15 @@ wsd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wsd-mode"; - version = "20160201.1551"; + version = "20160213.1417"; src = fetchFromGitHub { owner = "josteink"; repo = "wsd-mode"; - rev = "d604ee487ad426b19287bcf802c85f9026276956"; - sha256 = "09c3vhg62ppxfznpir3b33k5k9y1m8v2w41czi2f57987f64f5pz"; + rev = "6909b4ea3b82e36819f6cd42ac2330af6c8e54e6"; + sha256 = "1jxpcfslball488lcfjl5qlipwdcfbniz531i6nc87vqp9rf7q1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; @@ -59151,7 +59858,7 @@ sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wwtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wwtime"; sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic"; name = "wwtime"; }; @@ -59172,7 +59879,7 @@ sha256 = "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/x-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/x-dict"; sha256 = "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc"; name = "x-dict"; }; @@ -59193,7 +59900,7 @@ sha256 = "0lssri13f3c7drkirh3cyxzxm3lix5myfrqb9iy178nybrifgf8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; @@ -59206,15 +59913,15 @@ xah-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-elisp-mode"; - version = "20160111.1954"; + version = "20160211.1510"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-elisp-mode"; - rev = "f7bf8463b1d553c6c960f37ca44e64071261839e"; - sha256 = "1birxxr28iv70x2h9war7ibhgan6pmbghdj11jnndvxl140jclmq"; + rev = "c52e643ed1b7991211191ba4eab390019530860a"; + sha256 = "0rb4cshfcicazd35dph3lws22yfvnp6cxww2hy7yl9878m53jxak"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-elisp-mode"; sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij"; name = "xah-elisp-mode"; }; @@ -59227,15 +59934,15 @@ xah-find = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-find"; - version = "20151214.1257"; + version = "20160210.2102"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-find"; - rev = "e25eb9343fca71523ea6bf76741e6c5aab8004a4"; - sha256 = "05dvmvh81n30l56gvlgzj0bwqd2fv1d6xvhvj5ywax6kqr9piwqv"; + rev = "38471ba72684ab80d0fcb62c8fef1a79543738c5"; + sha256 = "00ydkpkdgnj9v6dkf4pw9wj5skbq2v5y71xsr37d1fqmdzsb03g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-find"; sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq"; name = "xah-find"; }; @@ -59248,15 +59955,15 @@ xah-fly-keys = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-fly-keys"; - version = "20160130.126"; + version = "20160214.205"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-fly-keys"; - rev = "9a000ae40235c960b29423bde0331df3d445a154"; - sha256 = "1kdzs5dhlrp42sgpgmybfzydr3m792ws11kn06c1d3mdfvrlkm9v"; + rev = "0300a8f05b39c61083797c504f79a454c9559202"; + sha256 = "0d6byc87bkadw8yssjpkw7mp7lm4bc290vh5skihgk5mphn8mc9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-fly-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-fly-keys"; sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs"; name = "xah-fly-keys"; }; @@ -59277,7 +59984,7 @@ sha256 = "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-get-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-get-thing"; sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg"; name = "xah-get-thing"; }; @@ -59298,7 +60005,7 @@ sha256 = "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-lookup"; sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc"; name = "xah-lookup"; }; @@ -59319,7 +60026,7 @@ sha256 = "1wsdnqpfgk7f1dbz90k6sf13hjh0x3xjjgappfkmhcy36g7sshl7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-math-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-math-input"; sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a"; name = "xah-math-input"; }; @@ -59340,7 +60047,7 @@ sha256 = "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xah-replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-replace-pairs"; sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x"; name = "xah-replace-pairs"; }; @@ -59361,7 +60068,7 @@ sha256 = "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xahk-mode"; sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9"; name = "xahk-mode"; }; @@ -59382,7 +60089,7 @@ sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; @@ -59403,7 +60110,7 @@ sha256 = "0p8cs5mh6ab6m0ff6ljs2vd1g8xx0jgc9ybh0j4aj2zcp22avz2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; @@ -59424,7 +60131,7 @@ sha256 = "0gd7ag7cqzkfk8y9rbkrjpnyjnwad5bx86a30vxamd1ql8xp57ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xkcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xkcd"; sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; name = "xkcd"; }; @@ -59437,15 +60144,15 @@ xml-plus = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-plus"; - version = "20160203.2325"; + version = "20160210.2142"; src = fetchFromGitHub { owner = "bddean"; repo = "xml-plus"; - rev = "ec9b2af03a195e3a96ffc173fb3aa48b89676b2e"; - sha256 = "1m7hpjfvpzichml8iarsqf9dv34sx7jcyh9mhj7dlka3za91snpb"; + rev = "1b728dda31dd13506aa4e1220f925bb43c93847b"; + sha256 = "0c30xh7qxg3y2p5jqkbssz5z53rx0yp64qqyy9f87qzgkcd2jd8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xml+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xml+"; sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1"; name = "xml-plus"; }; @@ -59466,7 +60173,7 @@ sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xml-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xml-quotes"; sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq"; name = "xml-quotes"; }; @@ -59487,7 +60194,7 @@ sha256 = "0kkjfg1l2wg3d5wrgkwnww4d3fca0xpd3k5z9j9gwmjnkxqd95ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xml-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xml-rpc"; sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; name = "xml-rpc"; }; @@ -59508,7 +60215,7 @@ sha256 = "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xmlgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xmlgen"; sha256 = "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383"; name = "xmlgen"; }; @@ -59529,7 +60236,7 @@ sha256 = "1k5zilvq64xjhy9lrwf9ss0y7j0v9ppg10xzcrj1hy6jbx54nn8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xmlunicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xmlunicode"; sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p"; name = "xmlunicode"; }; @@ -59550,7 +60257,7 @@ sha256 = "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xquery-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xquery-mode"; sha256 = "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql"; name = "xquery-mode"; }; @@ -59571,7 +60278,7 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; @@ -59592,7 +60299,7 @@ sha256 = "1n3biybylvq5c1lpf7zsjsgdrg7mzrhkaw251fp8qmsss0s3sv4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xresources-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xresources-theme"; sha256 = "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga"; name = "xresources-theme"; }; @@ -59613,7 +60320,7 @@ sha256 = "064fpjcj1sp8m5x106dw6zgy0p0rfd5fxcx57h533q263l7z00ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; @@ -59634,7 +60341,7 @@ sha256 = "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xterm-frobs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-frobs"; sha256 = "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf"; name = "xterm-frobs"; }; @@ -59655,7 +60362,7 @@ sha256 = "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xterm-keybinder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-keybinder"; sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz"; name = "xterm-keybinder"; }; @@ -59676,7 +60383,7 @@ sha256 = "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xterm-title"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-title"; sha256 = "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6"; name = "xterm-title"; }; @@ -59697,7 +60404,7 @@ sha256 = "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; @@ -59718,7 +60425,7 @@ sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yabin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yabin"; sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17"; name = "yabin"; }; @@ -59739,7 +60446,7 @@ sha256 = "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; @@ -59760,7 +60467,7 @@ sha256 = "0sqwz37y6mpc378pp8p6bq9fmhgwfr6rlbngiwgvsp30iq6vjsn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; @@ -59781,7 +60488,7 @@ sha256 = "030dcp5iq0jvr2m6lb5ar7bqzp1l7f835yl7d7fa8zp46fc3a6d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yahoo-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yahoo-weather"; sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0"; name = "yahoo-weather"; }; @@ -59802,7 +60509,7 @@ sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yalinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yalinum"; sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf"; name = "yalinum"; }; @@ -59815,15 +60522,15 @@ yaml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaml-mode"; - version = "20160101.1121"; + version = "20160220.540"; src = fetchFromGitHub { owner = "yoshiki"; repo = "yaml-mode"; - rev = "49668547e1891cb68d2bbbc650acbfa208012f2b"; - sha256 = "1cngxwn7m3qxn0dm7l9vd4lb5sw5i4aqn5rkr7pacskl0giikhfb"; + rev = "c7573962216f79e93642b91e7aa8552f7be46b41"; + sha256 = "1l60zz9yii5z6aqhysjccmsdw0zaxpdwxlz57mkrggh54p1jnazv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; @@ -59844,7 +60551,7 @@ sha256 = "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yaml-tomato"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaml-tomato"; sha256 = "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2"; name = "yaml-tomato"; }; @@ -59865,7 +60572,7 @@ sha256 = "17ymdqi19bs9xn0pxylzv7m99f7cn14hx73xljm6bg0qfb8m53f3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yandex-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yandex-weather"; sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md"; name = "yandex-weather"; }; @@ -59883,7 +60590,7 @@ sha256 = "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yaoddmuse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaoddmuse"; sha256 = "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54"; name = "yaoddmuse"; }; @@ -59904,7 +60611,7 @@ sha256 = "06mjjxa0blgxd8dbahgyni3b1rscbwjpxby5abrgfbb0fvs2bnfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yard-mode"; sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx"; name = "yard-mode"; }; @@ -59925,7 +60632,7 @@ sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yari"; sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h"; name = "yari"; }; @@ -59946,7 +60653,7 @@ sha256 = "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; @@ -59967,7 +60674,7 @@ sha256 = "0vpsicap1sk2i78y4ysszhksinh6qvic709n3gbzaz2d4mm0bsya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; @@ -59988,7 +60695,7 @@ sha256 = "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; @@ -60007,7 +60714,7 @@ sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; @@ -60028,7 +60735,7 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; @@ -60049,7 +60756,7 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ycm"; sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc"; name = "ycm"; }; @@ -60059,22 +60766,22 @@ license = lib.licenses.free; }; }) {}; - ycmd = callPackage ({ dash, deferred, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: + ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "ycmd"; - version = "20160202.235"; + version = "20160215.144"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "c64684df763411249985159ee33b10d948b9fc91"; - sha256 = "12jwqhzqskdp2l6h60rich19rddzjcl94zaf72ljnq8h0mqc3xy0"; + rev = "61601543ca9b70f6a92a87fb9057af6143ba5ed1"; + sha256 = "10j8zv5m36400wwkwbncqnsm616v59ww0bbkhrxcf6mn56iq8162"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ycmd"; sha256 = "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q"; name = "ycmd"; }; - packageRequires = [ dash deferred emacs f popup ]; + packageRequires = [ cl-lib dash deferred emacs f popup ]; meta = { homepage = "http://melpa.org/#/ycmd"; license = lib.licenses.free; @@ -60091,7 +60798,7 @@ sha256 = "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; @@ -60112,7 +60819,7 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; @@ -60133,7 +60840,7 @@ sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/z3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/z3-mode"; sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd"; name = "z3-mode"; }; @@ -60154,7 +60861,7 @@ sha256 = "16k8hha798hrs0qfdwqdr6n7y13ffgm6jj3msrk0zl8117jhaany"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zeal-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zeal-at-point"; sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw"; name = "zeal-at-point"; }; @@ -60174,7 +60881,7 @@ sha256 = "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zeitgeist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zeitgeist"; sha256 = "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk"; name = "zeitgeist"; }; @@ -60195,7 +60902,7 @@ sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zen-and-art-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zen-and-art-theme"; sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2"; name = "zen-and-art-theme"; }; @@ -60216,7 +60923,7 @@ sha256 = "0xihq1bpgckv9jcs6xdnhn8l4hbxywh1krk8ydv099l56r4w1269"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; @@ -60237,7 +60944,7 @@ sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zencoding-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zencoding-mode"; sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7"; name = "zencoding-mode"; }; @@ -60250,15 +60957,15 @@ zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zerodark-theme"; - version = "20160115.1710"; + version = "20160216.911"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "zerodark-theme"; - rev = "d89e721dcda9a36670759bad433a02d0eb89f935"; - sha256 = "1byzw9k8g7inwr5icci9i1iar0y6w9zgs91nj04431j003l10xfs"; + rev = "4d5cc77642164c925f5d0f46bb9c2ef2dafc578f"; + sha256 = "11ym5kx4rkm7ylyx51dlxh165mj350kfxm1qikavy3bqysh7cqrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; @@ -60279,7 +60986,7 @@ sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zlc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zlc"; sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0"; name = "zlc"; }; @@ -60300,7 +61007,7 @@ sha256 = "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/znc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/znc"; sha256 = "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz"; name = "znc"; }; @@ -60321,7 +61028,7 @@ sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zombie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zombie"; sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv"; name = "zombie"; }; @@ -60342,7 +61049,7 @@ sha256 = "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; @@ -60363,7 +61070,7 @@ sha256 = "1zg8fiv62bz7zmalczmfkbgjc6km7n66pzvidivc0p9b9sfxslkp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; @@ -60384,7 +61091,7 @@ sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zone-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-rainbow"; sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j"; name = "zone-rainbow"; }; @@ -60405,7 +61112,7 @@ sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zone-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-select"; sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz"; name = "zone-select"; }; @@ -60426,7 +61133,7 @@ sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zone-sl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-sl"; sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3"; name = "zone-sl"; }; @@ -60438,13 +61145,13 @@ }) {}; zones = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "zones"; - version = "20151231.1825"; + version = "20160209.1120"; src = fetchurl { url = "http://www.emacswiki.org/emacs/download/zones.el"; - sha256 = "1dgadarqz1fvijf9cch24ngkn223jjp08njsfa52qk16k8pdpc12"; + sha256 = "1g6dpyihwaz28ppndhkw3jzmph6pmcnfhaff926j0zr1j701sqdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zones"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zones"; sha256 = "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w"; name = "zones"; }; @@ -60465,7 +61172,7 @@ sha256 = "0ls9x2r12z9ki2fy3cbf05mp28x4ws2gk3knacvw7gvvg4sjdq5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zonokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zonokai-theme"; sha256 = "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29"; name = "zonokai-theme"; }; @@ -60484,7 +61191,7 @@ sha256 = "1whpd97yjby5zbcr4fcn0nxhqvn6k3jn8k2d15i6ss579kziwdqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zoom-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zoom-frm"; sha256 = "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk"; name = "zoom-frm"; }; @@ -60505,7 +61212,7 @@ sha256 = "1kl01dlggsrffvakmwixw9j8cncdmlsw805wvzls6l1711r1zjwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; @@ -60518,15 +61225,15 @@ zop-to-char = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zop-to-char"; - version = "20160117.444"; + version = "20160212.308"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "zop-to-char"; - rev = "d2b89c72777b3ece880b50ac52f5228d7f36c34a"; - sha256 = "0ybmvn5wriyhpgxqv8xarviyxgy255vbp3yz9d330y29jhdih6zd"; + rev = "883cb9dbd12a08fba4164f16d7badf7f846c3eff"; + sha256 = "1hq5ycnj0kwqs25z5rm095d55r768458vc5h5dpjhka5n6c099p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; @@ -60547,7 +61254,7 @@ sha256 = "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zossima"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zossima"; sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb"; name = "zossima"; }; @@ -60568,7 +61275,7 @@ sha256 = "1335z1v4889njnm98pz2sjk6n7r3vncsz83bk3z6gj5i0ig7wjap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zotelo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zotelo"; sha256 = "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z"; name = "zotelo"; }; @@ -60589,7 +61296,7 @@ sha256 = "015xgsisgsv4w5h6r68f7iw3vwrqvc0az1gcdkd5dfr3nl1h4yzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zotxt"; sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; name = "zotxt"; }; @@ -60610,7 +61317,7 @@ sha256 = "1sxjpbgi7ydmrlv34l16n40qpg969wfcb6kknndrh3fgjjc3p41b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ztree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ztree"; sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20"; name = "ztree"; }; @@ -60631,7 +61338,7 @@ sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zygospore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zygospore"; sha256 = "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z"; name = "zygospore"; }; @@ -60652,7 +61359,7 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; From f5d705aa5804923974f3d066486ed81e199e945f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 21 Feb 2016 04:01:42 +0100 Subject: [PATCH 084/291] pinentry: 0.9.6 -> 0.9.7 --- pkgs/tools/security/pinentry/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/pinentry/default.nix b/pkgs/tools/security/pinentry/default.nix index 8ccf1ba7ccd..97e66a250d7 100644 --- a/pkgs/tools/security/pinentry/default.nix +++ b/pkgs/tools/security/pinentry/default.nix @@ -10,11 +10,11 @@ let in with stdenv.lib; stdenv.mkDerivation rec { - name = "pinentry-0.9.6"; + name = "pinentry-0.9.7"; src = fetchurl { url = "mirror://gnupg/pinentry/${name}.tar.bz2"; - sha256 = "0rhyw1vk28kgasjp22myf7m2q8kycw82d65pr9kgh93z17lj849a"; + sha256 = "1cp7wjqr6nx31mdclr61s2h84ijqjl0ph99kgj4vyawpjj1j1633"; }; buildInputs = [ libgpgerror libassuan libcap gtk2 ncurses qt4 ]; From 5e0105af9b5c06307c1cc015925fd86043fce4ff Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 20 Feb 2016 05:46:04 +0100 Subject: [PATCH 085/291] linux: 4.4.1 -> 4.4.2 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 18bc1192621..dff91095549 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.1"; + version = "4.4.2"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0mwaqvl7dkasidciah1al57a1djnsk46ha5mjy4psq2inj71klky"; + sha256 = "09l6y0nb8yv7l16arfwhy4i5h9pkxcbd7hlbw0015n7gm4i2mzc2"; }; kernelPatches = args.kernelPatches; From 06e37e9008c66c0aac2e41bcf8af5c8f2949e157 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 8 Feb 2016 02:19:10 +0100 Subject: [PATCH 086/291] youtube-dl: 2016.01.01 -> 2016.02.13 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 8baa5cc9174..526bd6f84ae 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -12,11 +12,11 @@ buildPythonPackage rec { name = "youtube-dl-${version}"; - version = "2016.01.01"; + version = "2016.02.13"; src = fetchurl { url = "http://yt-dl.org/downloads/${stdenv.lib.getVersion name}/${name}.tar.gz"; - sha256 = "0b0pk8h2iswdiyf65c0zcwcad9dm2hid67fnfafj7d3ikp4kfbvk"; + sha256 = "0d6ml6nas0pnp6is73fn326ayxkdmxvarzyr96qd6gyjm9icpdcb"; }; buildInputs = [ makeWrapper zip pandoc ]; From c3c5622817ea593804272b5110c27c8456d53a62 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 18 Feb 2016 03:40:15 +0100 Subject: [PATCH 087/291] gajim: Add python-axolotl for OMEMO plugin --- .../applications/networking/instant-messengers/gajim/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index fa61876bf16..b1dfee8fa90 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -59,6 +59,7 @@ stdenv.mkDerivation rec { pythonPackages.pyxdg pythonPackages.nbxmpp pythonPackages.pyopenssl pythonDBus + pythonPackages.python-axolotl ] ++ optionals enableJingle [ farstream gst_plugins_bad libnice ] ++ optional enableE2E pythonPackages.pycrypto ++ optional enableRST pythonPackages.docutils From d31f58c6889574bd2ab4b7ea3c8670d6e66f0d99 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 18 Dec 2015 11:39:45 +0100 Subject: [PATCH 088/291] tinc_pre: 2015-11-07 -> 2016-01-27 Also fixes `--version` parameter in exectuables. --- pkgs/tools/networking/tinc/pre.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/tinc/pre.nix b/pkgs/tools/networking/tinc/pre.nix index b8a58db2d1e..5473a637b6a 100644 --- a/pkgs/tools/networking/tinc/pre.nix +++ b/pkgs/tools/networking/tinc/pre.nix @@ -1,17 +1,23 @@ { stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }: stdenv.mkDerivation rec { - name = "tinc-1.1pre-2015-11-07"; + name = "tinc-${version}"; + rev = "d8ca00fe40ff4b6d87e7e64c273f536fab462356"; + version = "1.1pre-2016-01-28-${builtins.substring 0 7 rev}"; src = fetchgit { + inherit rev; url = "git://tinc-vpn.org/tinc"; - rev = "bdd84660c756437cf3bc8f64adf612055acc84ea"; - sha256 = "1vkpdn3gjlrrm0rfpbhz410mpcq16xy0ilvgkxsgifc9xgdgflmn"; + sha256 = "0wqgzbqlafbkmj71vhfrqwmp61g95amzd43py47kq3fn5aiybcqf"; }; nativeBuildInputs = [ autoreconfHook texinfo ]; buildInputs = [ ncurses readline zlib lzo openssl ]; + prePatch = '' + substituteInPlace configure.ac --replace UNKNOWN ${version} + ''; + configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" @@ -28,6 +34,6 @@ stdenv.mkDerivation rec { homepage="http://www.tinc-vpn.org/"; license = licenses.gpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington fpletz ]; }; } From 9c0121be81fa8c5e6b5f7bd23326dd76d22e5d0b Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Mon, 19 Oct 2015 09:11:12 -0600 Subject: [PATCH 089/291] all-packages: Rewrite packageOverrides to use fix'/extends This way is cleaner, slightly faster (as shown by some quick tests) and causes no rebuilds. It could cause some evaluation errors though. --- pkgs/top-level/all-packages.nix | 96 +++++++++++++++------------------ 1 file changed, 42 insertions(+), 54 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 476bdb0b9de..6f20f70855f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -64,7 +64,7 @@ let # { /* the config */ } and # { pkgs, ... } : { /* the config */ } if builtins.isFunction configExpr - then configExpr { inherit pkgs; } + then configExpr { pkgs = pkgsFinal; } else configExpr; # Allow setting the platform in the config file. Otherwise, let's use a reasonable default (pc) @@ -83,51 +83,38 @@ let platform = if platform_ != null then platform_ else config.platform or platformAuto; - # Helper functions that are exported through `pkgs'. - helperFunctions = - stdenvAdapters // - (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); + # The complete set of packages, after applying the overrides + pkgsFinal = lib.fix' (lib.extends configOverrides (lib.extends stdenvOverrides pkgsFun)); - stdenvAdapters = - import ../stdenv/adapters.nix pkgs; + stdenvOverrides = + # We don't want stdenv overrides in the case of cross-building, + # or otherwise the basic overrided packages will not be built + # with the crossStdenv adapter. + if crossSystem == null + then self: super: lib.optionalAttrs (super.stdenv ? overrides) (super.stdenv.overrides super) + else self: super: {}; - - # Allow packages to be overriden globally via the `packageOverrides' + # Packages can be overriden globally via the `packageOverrides' # configuration option, which must be a function that takes `pkgs' # as an argument and returns a set of new or overriden packages. - # The `packageOverrides' function is called with the *original* - # (un-overriden) set of packages, allowing packageOverrides - # attributes to refer to the original attributes (e.g. "foo = - # ... pkgs.foo ..."). - pkgs = applyGlobalOverrides (config.packageOverrides or (pkgs: {})); - - mkOverrides = pkgsOrig: overrides: overrides // - (lib.optionalAttrs (pkgsOrig.stdenv ? overrides && crossSystem == null) (pkgsOrig.stdenv.overrides pkgsOrig)); - - # Return the complete set of packages, after applying the overrides - # returned by the `overrider' function (see above). Warning: this - # function is very expensive! - applyGlobalOverrides = overrider: - let - # Call the overrider function. We don't want stdenv overrides - # in the case of cross-building, or otherwise the basic - # overrided packages will not be built with the crossStdenv - # adapter. - overrides = mkOverrides pkgsOrig (overrider pkgsOrig); - - # The un-overriden packages, passed to `overrider'. - pkgsOrig = pkgsFun pkgs {}; - - # The overriden, final packages. - pkgs = pkgsFun pkgs overrides; - in pkgs; - + # The recommended usage follows this snippet: + # packageOverrides = super: let self = super.pkgs in ... + # `super' is the *original* (un-overriden) set of packages, + # while `self' refers to the final (overriden) set of packages. + configOverrides = + if config ? packageOverrides && bootStdenv == null # don't apply config overrides in stdenv boot + then self: config.packageOverrides + else self: super: {}; # The package compositions. Yes, this isn't properly indented. - pkgsFun = pkgs: overrides: - with helperFunctions; - let defaultScope = pkgs // pkgs.xorg; self = self_ // overrides; - self_ = with self; helperFunctions // { + pkgsFun = pkgs: + let defaultScope = pkgs // pkgs.xorg; + helperFunctions = pkgs_.stdenvAdapters // pkgs_.trivial-builders; + pkgsRet = helperFunctions // pkgs_; + pkgs_ = with pkgs; { + # Helper functions that are exported through `pkgs'. + trivial-builders = import ../build-support/trivial-builders.nix { inherit lib; inherit stdenv; inherit (xorg) lndir; }; + stdenvAdapters = import ../stdenv/adapters.nix pkgs; # Make some arguments passed to all-packages.nix available inherit system platform; @@ -157,11 +144,7 @@ let # # The result is `pkgs' where all the derivations depending on `foo' # will use the new version. - overridePackages = f: - let - newpkgs = pkgsFun newpkgs overrides; - overrides = mkOverrides pkgs (f newpkgs pkgs); - in newpkgs; + overridePackages = f: lib.fix' (lib.extends f pkgs.__unfix__); # Override system. This is useful to build i686 packages on x86_64-linux. forceSystem = system: kernel: (import ./all-packages.nix) { @@ -183,7 +166,7 @@ let ### Helper functions. - inherit lib config stdenvAdapters; + inherit lib config; inherit (lib) lowPrio hiPrio appendToName makeOverridable; inherit (misc) versionedDerivation; @@ -214,7 +197,8 @@ let allPackages = args: import ./all-packages.nix ({ inherit config system; } // args); }; - defaultStdenv = allStdenvs.stdenv // { inherit platform; }; + # We use pkgs_ because accessing pkgs would lead to an infinite recursion in stdenvOverrides + defaultStdenv = pkgs_.allStdenvs.stdenv // { inherit platform; }; stdenvCross = lowPrio (makeStdenvCross defaultStdenv crossSystem binutilsCross gccCrossStageFinal); @@ -234,7 +218,7 @@ let }; } else - defaultStdenv; + pkgs_.defaultStdenv; forceNativeDrv = drv : if crossSystem == null then drv else (drv // { crossDrv = drv.nativeDrv; }); @@ -5927,8 +5911,8 @@ let gotty = goPackages.gotty.bin // { outputs = [ "bin" ]; }; gradleGen = callPackage ../development/tools/build-managers/gradle { }; - gradle = self.gradleGen.gradleLatest; - gradle25 = self.gradleGen.gradle25; + gradle = gradleGen.gradleLatest; + gradle25 = gradleGen.gradle25; gperf = callPackage ../development/tools/misc/gperf { }; @@ -11761,7 +11745,7 @@ let AppKit Carbon Cocoa IOKit OSAKit Quartz QuartzCore WebKit ImageCaptureCore GSS ImageIO; }); - emacs24Macport = self.emacs24Macport_24_5; + emacs24Macport = emacs24Macport_24_5; emacs25pre = lowPrio (callPackage ../applications/editors/emacs-25 { # use override to enable additional features @@ -16103,12 +16087,13 @@ let mg = callPackage ../applications/editors/mg { }; -}; # self_ = +}; +# end pkgs_ = ### Deprecated aliases - for backward compatibility -aliases = with self; rec { +aliases = with pkgs; { accounts-qt = qt5.accounts-qt; # added 2015-12-19 adobeReader = adobe-reader; arduino_core = arduino-core; # added 2015-02-04 @@ -16195,4 +16180,7 @@ tweakAlias = _n: alias: with lib; removeAttrs alias ["recurseForDerivations"] else alias; -in lib.mapAttrs tweakAlias aliases // self; in pkgs +in lib.mapAttrs tweakAlias aliases // pkgsRet; +# end pkgsFun + +in pkgsFinal From 491007d0a1c8332f6595cd5892541a3e1f6cddf3 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Mon, 22 Feb 2016 00:37:07 -0600 Subject: [PATCH 090/291] jenkins: 1.647 -> 1.649 --- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index 1427e25fb93..c2473ce754c 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.647"; + version = "1.649"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "03r0wic5y8yhpa353s5px7l6m63p7jkb56sh6k4k5dacsc4qcxsj"; + sha256 = "10lvrdd6mfgkz0rdc41hg9fai44vzxy6qlayfvkjg29xgqm0n9ya"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; From 4ec4666762ba1fdc16a9935fdf072598ed905527 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Mon, 22 Feb 2016 17:55:03 +1100 Subject: [PATCH 091/291] playerctl: init at 0.4.2 --- pkgs/tools/audio/playerctl/default.nix | 29 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/audio/playerctl/default.nix diff --git a/pkgs/tools/audio/playerctl/default.nix b/pkgs/tools/audio/playerctl/default.nix new file mode 100644 index 00000000000..0e2b11a1f06 --- /dev/null +++ b/pkgs/tools/audio/playerctl/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, libtool, which, gnome, glib, + pkgconfig, gobjectIntrospection }: + +stdenv.mkDerivation rec { + name = "playerctl"; + version = "0.4.2"; + + src = fetchFromGitHub { + owner = "acrisci"; + repo = "playerctl"; + rev = "v${version}"; + sha256 = "0dy6wc7qr00p53hlhpbg9x40w4ag95r2i7r1nsyb4ym3wzrvskzh"; + }; + + buildInputs = [ + which autoconf automake libtool gnome.gtkdoc glib pkgconfig + gobjectIntrospection + ]; + + preConfigure = "./autogen.sh"; + + meta = with stdenv.lib; { + description = "Command-line utility and library for controlling media players that implement MPRIS"; + homepage = https://github.com/acrisci/playerctl; + license = licenses.lgpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ puffnfresh ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1968298657..14de089b160 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -929,6 +929,8 @@ let pynotify = pythonPackages.notify; }; + playerctl = callPackage ../tools/audio/playerctl { }; + syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {}; syslogng = callPackage ../tools/system/syslog-ng { }; From e713765b53c930fd6ec5e3fbdeb4efe6f14335af Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 15 Feb 2016 19:08:37 +0100 Subject: [PATCH 092/291] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-10-ga610b1b using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/096bee7aef8258ca1d62544c2ddd9f82008af9e8 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/735e006a185b5a0b998e33eb7deab87cd71ef8df - LTS Haskell: https://github.com/fpco/lts-haskell/commit/bbcada892fe77b0f4cdb3efca602c85a872e888b - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/b41dbc58b210ff13eccf71b04d9ed7055aa07df3 --- .../haskell-modules/configuration-lts-0.0.nix | 18 + .../haskell-modules/configuration-lts-0.1.nix | 18 + .../haskell-modules/configuration-lts-0.2.nix | 18 + .../haskell-modules/configuration-lts-0.3.nix | 18 + .../haskell-modules/configuration-lts-0.4.nix | 18 + .../haskell-modules/configuration-lts-0.5.nix | 18 + .../haskell-modules/configuration-lts-0.6.nix | 19 + .../haskell-modules/configuration-lts-0.7.nix | 19 + .../haskell-modules/configuration-lts-1.0.nix | 19 + .../haskell-modules/configuration-lts-1.1.nix | 19 + .../configuration-lts-1.10.nix | 19 + .../configuration-lts-1.11.nix | 19 + .../configuration-lts-1.12.nix | 19 + .../configuration-lts-1.13.nix | 19 + .../configuration-lts-1.14.nix | 19 + .../configuration-lts-1.15.nix | 19 + .../haskell-modules/configuration-lts-1.2.nix | 19 + .../haskell-modules/configuration-lts-1.4.nix | 19 + .../haskell-modules/configuration-lts-1.5.nix | 19 + .../haskell-modules/configuration-lts-1.7.nix | 19 + .../haskell-modules/configuration-lts-1.8.nix | 19 + .../haskell-modules/configuration-lts-1.9.nix | 19 + .../haskell-modules/configuration-lts-2.0.nix | 21 + .../haskell-modules/configuration-lts-2.1.nix | 21 + .../configuration-lts-2.10.nix | 26 + .../configuration-lts-2.11.nix | 26 + .../configuration-lts-2.12.nix | 26 + .../configuration-lts-2.13.nix | 26 + .../configuration-lts-2.14.nix | 26 + .../configuration-lts-2.15.nix | 27 + .../configuration-lts-2.16.nix | 27 + .../configuration-lts-2.17.nix | 27 + .../configuration-lts-2.18.nix | 28 + .../configuration-lts-2.19.nix | 28 + .../haskell-modules/configuration-lts-2.2.nix | 21 + .../configuration-lts-2.20.nix | 28 + .../configuration-lts-2.21.nix | 28 + .../configuration-lts-2.22.nix | 28 + .../haskell-modules/configuration-lts-2.3.nix | 21 + .../haskell-modules/configuration-lts-2.4.nix | 22 + .../haskell-modules/configuration-lts-2.5.nix | 23 + .../haskell-modules/configuration-lts-2.6.nix | 23 + .../haskell-modules/configuration-lts-2.7.nix | 23 + .../haskell-modules/configuration-lts-2.8.nix | 23 + .../haskell-modules/configuration-lts-2.9.nix | 25 + .../haskell-modules/configuration-lts-3.0.nix | 31 + .../haskell-modules/configuration-lts-3.1.nix | 31 + .../configuration-lts-3.10.nix | 40 + .../configuration-lts-3.11.nix | 40 + .../configuration-lts-3.12.nix | 40 + .../configuration-lts-3.13.nix | 40 + .../configuration-lts-3.14.nix | 43 + .../configuration-lts-3.15.nix | 43 + .../configuration-lts-3.16.nix | 43 + .../configuration-lts-3.17.nix | 45 + .../configuration-lts-3.18.nix | 45 + .../configuration-lts-3.19.nix | 45 + .../haskell-modules/configuration-lts-3.2.nix | 32 + .../configuration-lts-3.20.nix | 45 + .../configuration-lts-3.21.nix | 47 + .../configuration-lts-3.22.nix | 47 + .../haskell-modules/configuration-lts-3.3.nix | 33 + .../haskell-modules/configuration-lts-3.4.nix | 33 + .../haskell-modules/configuration-lts-3.5.nix | 34 + .../haskell-modules/configuration-lts-3.6.nix | 36 + .../haskell-modules/configuration-lts-3.7.nix | 38 + .../haskell-modules/configuration-lts-3.8.nix | 39 + .../haskell-modules/configuration-lts-3.9.nix | 39 + .../haskell-modules/configuration-lts-4.0.nix | 61 + .../haskell-modules/configuration-lts-4.1.nix | 62 + .../haskell-modules/configuration-lts-4.2.nix | 68 + .../haskell-modules/configuration-lts-5.0.nix | 80 + .../haskell-modules/configuration-lts-5.1.nix | 83 + .../haskell-modules/configuration-lts-5.2.nix | 83 + .../haskell-modules/configuration-lts-5.3.nix | 7725 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 2502 ++++-- 76 files changed, 11949 insertions(+), 610 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.3.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 64ea9e9b6f7..7ac9c0a1283 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -734,6 +734,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2685,6 +2686,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3719,6 +3721,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3773,6 +3776,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3932,6 +3936,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4495,6 +4500,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4909,6 +4915,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5149,6 +5156,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5533,6 +5541,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5540,6 +5549,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5893,6 +5903,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6768,6 +6779,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7280,6 +7292,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7357,6 +7370,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7827,6 +7841,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7892,6 +7907,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8014,6 +8030,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8489,6 +8506,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index b2bf2ceecbb..56f08b2f1e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -734,6 +734,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2685,6 +2686,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3719,6 +3721,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3773,6 +3776,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3932,6 +3936,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4495,6 +4500,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4909,6 +4915,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5149,6 +5156,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5533,6 +5541,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5540,6 +5549,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5893,6 +5903,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6768,6 +6779,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7280,6 +7292,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7357,6 +7370,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7827,6 +7841,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7892,6 +7907,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8014,6 +8030,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8489,6 +8506,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 67982120f40..3d4c59742e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -734,6 +734,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2685,6 +2686,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3719,6 +3721,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3773,6 +3776,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3932,6 +3936,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4495,6 +4500,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4909,6 +4915,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5149,6 +5156,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5533,6 +5541,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5540,6 +5549,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5893,6 +5903,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6768,6 +6779,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7280,6 +7292,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7357,6 +7370,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7827,6 +7841,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7892,6 +7907,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8014,6 +8030,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8489,6 +8506,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index b8965141bec..52ce8fe742d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -734,6 +734,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2685,6 +2686,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3719,6 +3721,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3773,6 +3776,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3932,6 +3936,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4495,6 +4500,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4909,6 +4915,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5149,6 +5156,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5533,6 +5541,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5540,6 +5549,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5893,6 +5903,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6768,6 +6779,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7280,6 +7292,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7357,6 +7370,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7827,6 +7841,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_7_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7892,6 +7907,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8014,6 +8030,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8489,6 +8506,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 03bf57f3aa2..c5b407f3039 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -734,6 +734,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2684,6 +2685,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3718,6 +3720,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3772,6 +3775,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3929,6 +3933,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4492,6 +4497,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4906,6 +4912,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5146,6 +5153,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5530,6 +5538,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5537,6 +5546,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5890,6 +5900,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6765,6 +6776,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7276,6 +7288,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7353,6 +7366,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7823,6 +7837,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_8"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7888,6 +7903,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8010,6 +8026,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8485,6 +8502,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 9e0026afb0b..75fe2a26249 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -734,6 +734,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2684,6 +2685,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3718,6 +3720,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3772,6 +3775,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3929,6 +3933,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4492,6 +4497,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4906,6 +4912,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5146,6 +5153,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5530,6 +5538,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5537,6 +5546,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5890,6 +5900,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6765,6 +6776,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7276,6 +7288,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7353,6 +7366,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7823,6 +7837,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_8"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7888,6 +7903,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8010,6 +8026,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8485,6 +8502,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 24208bf0d22..69ebdb8e3ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -733,6 +733,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2683,6 +2684,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3717,6 +3719,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3771,6 +3774,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3928,6 +3932,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4490,6 +4495,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4904,6 +4910,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5144,6 +5151,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5528,6 +5536,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5535,6 +5544,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5888,6 +5898,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6100,6 +6111,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_5_0_0"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6762,6 +6774,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7272,6 +7285,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7349,6 +7363,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7819,6 +7834,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_8"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7884,6 +7900,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8006,6 +8023,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8481,6 +8499,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 5ca65df38d5..223d20571bd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -733,6 +733,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2683,6 +2684,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3717,6 +3719,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3771,6 +3774,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3928,6 +3932,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4490,6 +4495,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4904,6 +4910,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5144,6 +5151,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_1_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5528,6 +5536,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5535,6 +5544,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5888,6 +5898,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6100,6 +6111,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_5_0_0"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6762,6 +6774,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7272,6 +7285,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7349,6 +7363,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7819,6 +7834,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_8"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7884,6 +7900,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -8006,6 +8023,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8481,6 +8499,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 1cbd61fe493..c88b0e0759c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -730,6 +730,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2675,6 +2676,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3707,6 +3709,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3761,6 +3764,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3918,6 +3922,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4480,6 +4485,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4893,6 +4899,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5133,6 +5140,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5517,6 +5525,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5524,6 +5533,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5877,6 +5887,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6089,6 +6100,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6751,6 +6763,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7260,6 +7273,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7337,6 +7351,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7806,6 +7821,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_8"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7871,6 +7887,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7993,6 +8010,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8467,6 +8485,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index e983e46a408..28189cb09cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -730,6 +730,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2673,6 +2674,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; @@ -3704,6 +3706,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3758,6 +3761,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3915,6 +3919,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4474,6 +4479,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4887,6 +4893,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5127,6 +5134,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5511,6 +5519,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5518,6 +5527,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5870,6 +5880,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6082,6 +6093,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6744,6 +6756,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7253,6 +7266,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7330,6 +7344,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7797,6 +7812,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_8_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7862,6 +7878,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7984,6 +8001,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8454,6 +8472,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index c22d8e43cb7..c1b5f626abf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3695,6 +3697,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3749,6 +3752,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3905,6 +3909,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4463,6 +4468,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4871,6 +4877,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5111,6 +5118,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5494,6 +5502,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5501,6 +5510,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5853,6 +5863,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6063,6 +6074,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6724,6 +6736,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7232,6 +7245,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7308,6 +7322,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7774,6 +7789,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7839,6 +7855,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7959,6 +7976,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8427,6 +8445,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 0f85aa6e7aa..34bf0833092 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3694,6 +3696,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3748,6 +3751,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3904,6 +3908,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4462,6 +4467,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4869,6 +4875,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5108,6 +5115,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5490,6 +5498,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5497,6 +5506,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5849,6 +5859,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6059,6 +6070,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6720,6 +6732,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7228,6 +7241,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7304,6 +7318,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7770,6 +7785,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7835,6 +7851,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7955,6 +7972,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8423,6 +8441,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index ace1963e339..4960dfb1142 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3694,6 +3696,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3748,6 +3751,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3904,6 +3908,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4461,6 +4466,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4868,6 +4874,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5107,6 +5114,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5489,6 +5497,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5496,6 +5505,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5848,6 +5858,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6058,6 +6069,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6719,6 +6731,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7227,6 +7240,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7303,6 +7317,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7769,6 +7784,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7834,6 +7850,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7954,6 +7971,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8421,6 +8439,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 5f1e148e5e1..700792e04d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3694,6 +3696,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3748,6 +3751,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3903,6 +3907,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4460,6 +4465,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4867,6 +4873,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5106,6 +5113,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5488,6 +5496,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5495,6 +5504,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5847,6 +5857,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6057,6 +6068,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6718,6 +6730,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7226,6 +7239,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7302,6 +7316,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7768,6 +7783,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7833,6 +7849,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7952,6 +7969,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8419,6 +8437,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 6829db65772..68c3439efa0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -728,6 +728,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2666,6 +2667,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3691,6 +3693,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3745,6 +3748,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3900,6 +3904,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4456,6 +4461,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4863,6 +4869,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5102,6 +5109,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5483,6 +5491,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5490,6 +5499,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5841,6 +5851,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6051,6 +6062,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6712,6 +6724,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7219,6 +7232,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7295,6 +7309,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7761,6 +7776,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7826,6 +7842,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7945,6 +7962,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8412,6 +8430,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index c69012197af..4a3bcbb31e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -728,6 +728,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2663,6 +2664,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3687,6 +3689,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3741,6 +3744,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3896,6 +3900,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4452,6 +4457,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4859,6 +4865,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5098,6 +5105,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5479,6 +5487,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5486,6 +5495,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5837,6 +5847,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6045,6 +6056,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6706,6 +6718,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7212,6 +7225,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7288,6 +7302,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7753,6 +7768,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7817,6 +7833,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7936,6 +7953,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8403,6 +8421,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 6d1a27525b1..cac7ea84e5a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -730,6 +730,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2671,6 +2672,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3701,6 +3703,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3755,6 +3758,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3912,6 +3916,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4471,6 +4476,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4884,6 +4890,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5124,6 +5131,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5508,6 +5516,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5515,6 +5524,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5867,6 +5877,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6079,6 +6090,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6740,6 +6752,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7248,6 +7261,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7324,6 +7338,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7791,6 +7806,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7856,6 +7872,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7978,6 +7995,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8448,6 +8466,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 1832969011f..a2057dcca1d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2670,6 +2671,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3699,6 +3701,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3753,6 +3756,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3910,6 +3914,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4468,6 +4473,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4881,6 +4887,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5121,6 +5128,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5505,6 +5513,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5512,6 +5521,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5864,6 +5874,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6075,6 +6086,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6736,6 +6748,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7244,6 +7257,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7320,6 +7334,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7787,6 +7802,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7852,6 +7868,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7973,6 +7990,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8443,6 +8461,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 09660ebe963..ea9f668b711 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3698,6 +3700,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3752,6 +3755,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3909,6 +3913,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4467,6 +4472,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4880,6 +4886,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5120,6 +5127,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5504,6 +5512,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5511,6 +5520,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5863,6 +5873,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6074,6 +6085,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6735,6 +6747,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7243,6 +7256,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7319,6 +7333,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7786,6 +7801,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7851,6 +7867,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7972,6 +7989,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8441,6 +8459,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 58ffd1eb7a1..0f17f0281f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3698,6 +3700,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3752,6 +3755,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3909,6 +3913,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4467,6 +4472,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4875,6 +4881,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5115,6 +5122,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5499,6 +5507,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5506,6 +5515,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5858,6 +5868,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6069,6 +6080,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6730,6 +6742,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7238,6 +7251,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7314,6 +7328,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7781,6 +7796,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7846,6 +7862,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7967,6 +7984,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8436,6 +8454,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index ce5855c7aae..47ef6d937c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3696,6 +3698,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3750,6 +3753,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3906,6 +3910,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4464,6 +4469,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4872,6 +4878,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5112,6 +5119,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5495,6 +5503,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5502,6 +5511,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5854,6 +5864,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6065,6 +6076,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6726,6 +6738,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7234,6 +7247,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7310,6 +7324,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7777,6 +7792,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7842,6 +7858,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7963,6 +7980,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8431,6 +8449,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index b6eb55cd0a8..371c2dadf42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -729,6 +729,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2669,6 +2670,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = dontDistribute super."diagrams-rasterific"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3695,6 +3697,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3749,6 +3752,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3905,6 +3909,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4463,6 +4468,7 @@ self: super: { "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4871,6 +4877,7 @@ self: super: { "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; "imagesize-conduit" = doDistribute super."imagesize-conduit_1_0_0_4"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5111,6 +5118,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5494,6 +5502,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5501,6 +5510,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5853,6 +5863,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -6064,6 +6075,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6725,6 +6737,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7233,6 +7246,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7309,6 +7323,7 @@ self: super: { "servant-client" = dontDistribute super."servant-client"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; @@ -7776,6 +7791,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_9_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7841,6 +7857,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7962,6 +7979,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8430,6 +8448,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 7a6eb2e704b..e48c6649f9d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2648,6 +2650,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_7"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; @@ -3669,6 +3672,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3722,6 +3726,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3877,6 +3882,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4430,6 +4436,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4831,6 +4838,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5068,6 +5076,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5444,6 +5453,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5451,6 +5461,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5796,6 +5807,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5999,6 +6011,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6657,6 +6670,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7163,6 +7177,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7238,6 +7253,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7665,6 +7681,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7698,6 +7715,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7762,6 +7780,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_0_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7879,6 +7898,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8345,6 +8365,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 01c494fd0df..786d58cac8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2647,6 +2649,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3668,6 +3671,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3721,6 +3725,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3876,6 +3881,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4429,6 +4435,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4830,6 +4837,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5067,6 +5075,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5443,6 +5452,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5450,6 +5460,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5795,6 +5806,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5998,6 +6010,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6656,6 +6669,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7162,6 +7176,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7237,6 +7252,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7664,6 +7680,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7697,6 +7714,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7761,6 +7779,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_0_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7878,6 +7897,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8344,6 +8364,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 231b1da6747..36a315c5180 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1941,6 +1943,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2100,6 +2103,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2632,6 +2636,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3649,6 +3654,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3702,6 +3708,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3855,6 +3862,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4407,6 +4415,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4805,6 +4814,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5040,6 +5050,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5355,6 +5366,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5414,6 +5426,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5421,6 +5434,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5762,6 +5776,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5965,6 +5980,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6178,6 +6194,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6618,6 +6635,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7121,6 +7139,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7196,6 +7215,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7617,6 +7637,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7650,6 +7671,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7714,6 +7736,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7829,6 +7852,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8293,6 +8317,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8909,6 +8934,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 2662bfe6513..ef4c7ce282d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1940,6 +1942,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2099,6 +2102,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2631,6 +2635,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3647,6 +3652,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3700,6 +3706,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3853,6 +3860,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4404,6 +4412,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4802,6 +4811,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5036,6 +5046,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5351,6 +5362,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5410,6 +5422,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5417,6 +5430,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5757,6 +5771,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5960,6 +5975,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6172,6 +6188,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6612,6 +6629,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7114,6 +7132,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7189,6 +7208,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7609,6 +7629,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7642,6 +7663,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7706,6 +7728,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7820,6 +7843,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8284,6 +8308,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8900,6 +8925,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 87bad704729..8303aacfd80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1940,6 +1942,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2099,6 +2102,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2631,6 +2635,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3647,6 +3652,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3700,6 +3706,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3853,6 +3860,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4404,6 +4412,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4802,6 +4811,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5036,6 +5046,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5351,6 +5362,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5410,6 +5422,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5417,6 +5430,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5757,6 +5771,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5960,6 +5975,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6172,6 +6188,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6612,6 +6629,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7114,6 +7132,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7188,6 +7207,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7608,6 +7628,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7641,6 +7662,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7705,6 +7727,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7819,6 +7842,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8283,6 +8307,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8899,6 +8924,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index a22d472fb36..52cec4732ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1940,6 +1942,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2099,6 +2102,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2631,6 +2635,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3647,6 +3652,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3700,6 +3706,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3852,6 +3859,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4403,6 +4411,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4800,6 +4809,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5034,6 +5044,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5349,6 +5360,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5408,6 +5420,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5415,6 +5428,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5755,6 +5769,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5958,6 +5973,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6170,6 +6186,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6610,6 +6627,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7112,6 +7130,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7186,6 +7205,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7606,6 +7626,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7639,6 +7660,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7703,6 +7725,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7817,6 +7840,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8281,6 +8305,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8897,6 +8922,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 0ba5ae883bb..8ae1bed9f3c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1939,6 +1941,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2098,6 +2101,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2630,6 +2634,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3645,6 +3650,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3698,6 +3704,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3850,6 +3857,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4401,6 +4409,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4797,6 +4806,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5031,6 +5041,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5346,6 +5357,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5405,6 +5417,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5412,6 +5425,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5752,6 +5766,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5955,6 +5970,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6167,6 +6183,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6607,6 +6624,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7109,6 +7127,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7183,6 +7202,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7602,6 +7622,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7635,6 +7656,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7699,6 +7721,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7813,6 +7836,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8277,6 +8301,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8891,6 +8916,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 53940a40de8..cc1588571ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1939,6 +1941,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2098,6 +2101,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2630,6 +2634,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3644,6 +3649,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3697,6 +3703,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3849,6 +3856,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4400,6 +4408,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4796,6 +4805,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5030,6 +5040,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5345,6 +5356,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5404,6 +5416,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5411,6 +5424,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5750,6 +5764,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5948,9 +5963,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6163,6 +6180,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6603,6 +6621,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7105,6 +7124,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7179,6 +7199,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7597,6 +7618,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7630,6 +7652,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7694,6 +7717,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7808,6 +7832,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8272,6 +8297,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8885,6 +8911,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 77cf4fa6807..ab44df6f4f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1939,6 +1941,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2097,6 +2100,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2627,6 +2631,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3640,6 +3645,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3693,6 +3699,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3845,6 +3852,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4396,6 +4404,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4792,6 +4801,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5026,6 +5036,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5340,6 +5351,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5399,6 +5411,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5406,6 +5419,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5745,6 +5759,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5943,9 +5958,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6158,6 +6175,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6598,6 +6616,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7100,6 +7119,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7174,6 +7194,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7592,6 +7613,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7625,6 +7647,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7689,6 +7712,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7803,6 +7827,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8267,6 +8292,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8879,6 +8905,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 67b1f9a3f57..04df96c30c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1937,6 +1939,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2095,6 +2098,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2625,6 +2629,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3635,6 +3640,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3688,6 +3694,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3840,6 +3847,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4391,6 +4399,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4787,6 +4796,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5021,6 +5031,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5335,6 +5346,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5394,6 +5406,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5401,6 +5414,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5740,6 +5754,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5938,9 +5953,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6152,6 +6169,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6592,6 +6610,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7094,6 +7113,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7168,6 +7188,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7586,6 +7607,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7619,6 +7641,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7683,6 +7706,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7797,6 +7821,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8261,6 +8286,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8873,6 +8899,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 774b372c451..0bae504f61a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1936,6 +1938,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2094,6 +2097,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2624,6 +2628,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3633,6 +3638,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3686,6 +3692,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3838,6 +3845,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4388,6 +4396,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4784,6 +4793,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5018,6 +5028,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5332,6 +5343,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5391,6 +5403,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5398,6 +5411,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5737,6 +5751,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5934,9 +5949,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6148,6 +6165,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6359,6 +6377,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; @@ -6587,6 +6606,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7089,6 +7109,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7163,6 +7184,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7581,6 +7603,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7614,6 +7637,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7677,6 +7701,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7791,6 +7816,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8255,6 +8281,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8866,6 +8893,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 5cfa6de7a57..d213048219c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1936,6 +1938,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2094,6 +2097,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2624,6 +2628,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3632,6 +3637,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3685,6 +3691,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3837,6 +3844,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4387,6 +4395,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4783,6 +4792,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5017,6 +5027,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5331,6 +5342,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5390,6 +5402,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5397,6 +5410,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5735,6 +5749,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5932,9 +5947,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6146,6 +6163,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6357,6 +6375,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; @@ -6585,6 +6604,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7087,6 +7107,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7161,6 +7182,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7577,6 +7599,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7610,6 +7633,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7673,6 +7697,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7787,6 +7812,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8251,6 +8277,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8861,6 +8888,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 90433b651fc..55f13118e3f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2644,6 +2646,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3665,6 +3668,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3718,6 +3722,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3873,6 +3878,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4426,6 +4432,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4827,6 +4834,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5064,6 +5072,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5440,6 +5449,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5447,6 +5457,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5792,6 +5803,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5995,6 +6007,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6653,6 +6666,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7159,6 +7173,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7234,6 +7249,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7661,6 +7677,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7694,6 +7711,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_10_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7758,6 +7776,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7875,6 +7894,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8341,6 +8361,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index a073695f433..ebfd30a5ced 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1936,6 +1938,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2094,6 +2097,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2623,6 +2627,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3631,6 +3636,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3684,6 +3690,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3836,6 +3843,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4386,6 +4394,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4782,6 +4791,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5016,6 +5026,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5330,6 +5341,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5389,6 +5401,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5396,6 +5409,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5734,6 +5748,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5931,9 +5946,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6145,6 +6162,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6356,6 +6374,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6583,6 +6602,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7085,6 +7105,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7159,6 +7180,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7574,6 +7596,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7607,6 +7630,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7670,6 +7694,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7784,6 +7809,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8248,6 +8274,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8858,6 +8885,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 544d71f16bf..3fce33ab764 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1936,6 +1938,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2094,6 +2097,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2623,6 +2627,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3631,6 +3636,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3684,6 +3690,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3836,6 +3843,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4386,6 +4394,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4782,6 +4791,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5016,6 +5026,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5329,6 +5340,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5388,6 +5400,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5395,6 +5408,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5733,6 +5747,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5930,9 +5945,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6144,6 +6161,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6355,6 +6373,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6581,6 +6600,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7083,6 +7103,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7157,6 +7178,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7572,6 +7594,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7605,6 +7628,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7668,6 +7692,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7782,6 +7807,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8246,6 +8272,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8853,6 +8880,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 98e2c96e724..87a4bc9f864 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1936,6 +1938,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2094,6 +2097,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2623,6 +2627,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3631,6 +3636,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3684,6 +3690,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3836,6 +3843,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4385,6 +4393,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4781,6 +4790,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5015,6 +5025,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5328,6 +5339,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5387,6 +5399,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5394,6 +5407,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5731,6 +5745,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5928,9 +5943,11 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6142,6 +6159,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6353,6 +6371,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6579,6 +6598,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7081,6 +7101,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7155,6 +7176,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7570,6 +7592,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7603,6 +7626,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7666,6 +7690,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7780,6 +7805,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8244,6 +8270,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8851,6 +8878,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index d5f060387ce..485e45cc6e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2644,6 +2646,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3664,6 +3667,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3717,6 +3721,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3872,6 +3877,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4425,6 +4431,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4825,6 +4832,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5062,6 +5070,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5438,6 +5447,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5445,6 +5455,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5790,6 +5801,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5993,6 +6005,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6651,6 +6664,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7157,6 +7171,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7232,6 +7247,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7659,6 +7675,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7692,6 +7709,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_11"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7756,6 +7774,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7873,6 +7892,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8339,6 +8359,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index e595d238aeb..8a4a70c5298 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2643,6 +2645,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3663,6 +3666,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3716,6 +3720,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3871,6 +3876,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4424,6 +4430,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4824,6 +4831,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5061,6 +5069,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5437,6 +5446,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5444,6 +5454,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5788,6 +5799,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5991,6 +6003,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6205,6 +6218,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6647,6 +6661,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7152,6 +7167,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7227,6 +7243,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7654,6 +7671,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7687,6 +7705,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7751,6 +7770,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7868,6 +7888,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8334,6 +8355,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 35a9871f7cd..4233d8fc454 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2642,6 +2644,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3662,6 +3665,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3715,6 +3719,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3870,6 +3875,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4423,6 +4429,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4823,6 +4830,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5060,6 +5068,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5376,6 +5385,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5435,6 +5445,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5442,6 +5453,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5786,6 +5798,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5989,6 +6002,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_1"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6203,6 +6217,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6645,6 +6660,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7150,6 +7166,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7225,6 +7242,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7652,6 +7670,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7685,6 +7704,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7749,6 +7769,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7866,6 +7887,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8332,6 +8354,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 838a0d81ae3..ec0401314e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -480,6 +480,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -723,6 +724,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2639,6 +2641,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3659,6 +3662,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3712,6 +3716,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3865,6 +3870,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4418,6 +4424,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4818,6 +4825,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5055,6 +5063,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5371,6 +5380,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5430,6 +5440,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5437,6 +5448,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5781,6 +5793,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5983,6 +5996,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri" = doDistribute super."network-uri_2_6_0_2"; "network-uri-static" = dontDistribute super."network-uri-static"; @@ -6197,6 +6211,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6639,6 +6654,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7144,6 +7160,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7219,6 +7236,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7646,6 +7664,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7679,6 +7698,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7743,6 +7763,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7860,6 +7881,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8324,6 +8346,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index e2658c39b01..72a550021b7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -722,6 +723,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2638,6 +2640,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3658,6 +3661,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3711,6 +3715,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3864,6 +3869,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4417,6 +4423,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4817,6 +4824,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5054,6 +5062,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5370,6 +5379,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5429,6 +5439,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5436,6 +5447,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5780,6 +5792,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5983,6 +5996,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6196,6 +6210,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6638,6 +6653,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7143,6 +7159,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7218,6 +7235,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7645,6 +7663,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7678,6 +7697,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7742,6 +7762,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7859,6 +7880,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8323,6 +8345,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index fe475625a7d..f8c03a26d70 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -2637,6 +2639,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3656,6 +3659,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3709,6 +3713,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3862,6 +3867,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4415,6 +4421,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4815,6 +4822,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5052,6 +5060,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_1"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5368,6 +5377,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5427,6 +5437,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5434,6 +5445,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5778,6 +5790,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5981,6 +5994,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6194,6 +6208,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6636,6 +6651,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7140,6 +7156,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7215,6 +7232,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7639,6 +7657,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7672,6 +7691,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7736,6 +7756,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7853,6 +7874,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8317,6 +8339,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index ff2118946cf..0b803aceaa7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -479,6 +479,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_12_2_4"; @@ -721,6 +722,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1941,6 +1943,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2634,6 +2637,7 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_1_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_0_1_0_8"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; @@ -3651,6 +3655,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3704,6 +3709,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3857,6 +3863,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4410,6 +4417,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4808,6 +4816,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -5045,6 +5054,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = doDistribute super."kansas-comet_0_3_1"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5360,6 +5370,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5419,6 +5430,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5426,6 +5438,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5769,6 +5782,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5972,6 +5986,7 @@ self: super: { "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -6185,6 +6200,7 @@ self: super: { "pager" = dontDistribute super."pager"; "pagerduty" = doDistribute super."pagerduty_0_0_3_1"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6626,6 +6642,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -7130,6 +7147,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -7205,6 +7223,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_2_2"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; @@ -7627,6 +7646,7 @@ self: super: { "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-delay" = dontDistribute super."stm-delay"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7660,6 +7680,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7724,6 +7745,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7839,6 +7861,7 @@ self: super: { "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8303,6 +8326,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8919,6 +8943,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index a6b2efe0c38..a4dcc621a82 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_13_0_0"; @@ -709,6 +710,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1357,6 +1359,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1879,6 +1882,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2033,6 +2037,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2537,6 +2542,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2554,7 +2560,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3537,6 +3545,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3589,6 +3598,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3737,6 +3747,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4280,6 +4291,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4662,6 +4674,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4888,6 +4901,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5182,6 +5196,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5240,6 +5255,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5247,6 +5263,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5574,6 +5591,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5763,6 +5781,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5971,6 +5990,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6172,6 +6192,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6395,6 +6416,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6897,6 +6919,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6969,6 +6992,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4"; "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; @@ -7129,6 +7153,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7371,6 +7396,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7403,6 +7429,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7464,6 +7491,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7577,6 +7605,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8029,6 +8058,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8619,6 +8649,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 2bed2cd269e..da4b30b8f9c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTF" = doDistribute super."HTF_0_13_0_0"; @@ -709,6 +710,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1356,6 +1358,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1878,6 +1881,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2032,6 +2036,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2536,6 +2541,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2553,7 +2559,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3534,6 +3542,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3586,6 +3595,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3734,6 +3744,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4277,6 +4288,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4659,6 +4671,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4885,6 +4898,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5179,6 +5193,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5237,6 +5252,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5244,6 +5260,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5570,6 +5587,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5758,6 +5776,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5966,6 +5985,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6166,6 +6186,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6389,6 +6410,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6890,6 +6912,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6962,6 +6985,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4"; "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; @@ -7122,6 +7146,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7364,6 +7389,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7396,6 +7422,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7457,6 +7484,7 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; @@ -7570,6 +7598,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8022,6 +8051,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8611,6 +8641,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 3550262d4d1..3b608d17c16 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -468,6 +468,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -704,6 +705,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1348,6 +1350,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1863,6 +1866,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2017,6 +2021,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2208,6 +2213,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2518,6 +2524,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; @@ -2532,7 +2539,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3502,6 +3511,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3554,6 +3564,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3702,6 +3713,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3826,6 +3838,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4241,6 +4254,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4620,6 +4634,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4844,6 +4859,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5134,6 +5150,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5192,6 +5209,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5199,6 +5217,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5522,6 +5541,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5707,6 +5727,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5914,6 +5935,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6092,6 +6114,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6111,6 +6134,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6328,6 +6352,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6427,6 +6452,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6452,6 +6478,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6825,6 +6852,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6897,6 +6925,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7055,6 +7084,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7293,6 +7323,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7325,6 +7356,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7386,6 +7418,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7494,6 +7528,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7810,6 +7845,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7942,6 +7978,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8061,6 +8098,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8142,6 +8180,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8516,6 +8555,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index b420c055980..71295c733a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -468,6 +468,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -704,6 +705,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1348,6 +1350,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1862,6 +1865,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2016,6 +2020,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2207,6 +2212,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2517,6 +2523,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; @@ -2531,7 +2538,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3500,6 +3509,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3552,6 +3562,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3700,6 +3711,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3824,6 +3836,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4239,6 +4252,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4618,6 +4632,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4842,6 +4857,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5132,6 +5148,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5190,6 +5207,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5197,6 +5215,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5520,6 +5539,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5705,6 +5725,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5912,6 +5933,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6089,6 +6111,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6108,6 +6131,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6325,6 +6349,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6424,6 +6449,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6449,6 +6475,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6822,6 +6849,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6894,6 +6922,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7051,6 +7080,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7289,6 +7319,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7321,6 +7352,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7382,6 +7414,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7490,6 +7524,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7806,6 +7841,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7938,6 +7974,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8057,6 +8094,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8138,6 +8176,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8512,6 +8551,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 534196a30ac..cd3a21a0424 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -703,6 +704,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1347,6 +1349,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1861,6 +1864,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2012,6 +2016,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2203,6 +2208,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2513,6 +2519,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; @@ -2527,7 +2534,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3495,6 +3504,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3547,6 +3557,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3695,6 +3706,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3819,6 +3831,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4234,6 +4247,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4613,6 +4627,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4837,6 +4852,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5127,6 +5143,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5185,6 +5202,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5192,6 +5210,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5515,6 +5534,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5700,6 +5720,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5907,6 +5928,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6083,6 +6105,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6102,6 +6125,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6319,6 +6343,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6418,6 +6443,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6443,6 +6469,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6816,6 +6843,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6888,6 +6916,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7045,6 +7074,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7283,6 +7313,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7315,6 +7346,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7376,6 +7408,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7484,6 +7518,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7798,6 +7833,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7930,6 +7966,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8049,6 +8086,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8130,6 +8168,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8502,6 +8541,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 29a139a9e4d..eb17f7e72a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -703,6 +704,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1347,6 +1349,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1861,6 +1864,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2012,6 +2016,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2203,6 +2208,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2513,6 +2519,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; @@ -2527,7 +2534,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3495,6 +3504,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3547,6 +3557,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3695,6 +3706,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3819,6 +3831,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4233,6 +4246,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4612,6 +4626,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4836,6 +4851,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5125,6 +5141,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5183,6 +5200,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5190,6 +5208,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5513,6 +5532,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5698,6 +5718,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5905,6 +5926,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6080,6 +6102,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6099,6 +6122,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6316,6 +6340,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6415,6 +6440,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6440,6 +6466,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6813,6 +6840,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6885,6 +6913,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7042,6 +7071,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7280,6 +7310,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7312,6 +7343,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7373,6 +7405,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7481,6 +7515,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7795,6 +7830,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7927,6 +7963,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8046,6 +8083,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8126,6 +8164,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8498,6 +8537,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index b406a70ae06..4977ead89e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -703,6 +704,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1345,6 +1347,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1858,6 +1861,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2009,6 +2013,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2200,6 +2205,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2509,6 +2515,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2521,7 +2528,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2664,6 +2673,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3488,6 +3498,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3540,6 +3551,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3688,6 +3700,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3812,6 +3825,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4226,6 +4240,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4604,6 +4619,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4828,6 +4844,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5117,6 +5134,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5175,6 +5193,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5182,6 +5201,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5485,6 +5505,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5503,6 +5524,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5688,6 +5710,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5895,6 +5918,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6070,6 +6094,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6089,6 +6114,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6306,6 +6332,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6405,6 +6432,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6430,6 +6458,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6803,6 +6832,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6875,6 +6905,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7032,6 +7063,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7270,6 +7302,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7302,6 +7335,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7363,6 +7397,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7471,6 +7507,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7785,6 +7822,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7917,6 +7955,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8036,6 +8075,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8116,11 +8156,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8486,6 +8528,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 7df0af1bb2a..69adc7bd0e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -703,6 +704,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1345,6 +1347,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1858,6 +1861,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2009,6 +2013,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2200,6 +2205,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2509,6 +2515,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2521,7 +2528,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2664,6 +2673,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3487,6 +3497,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3539,6 +3550,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3687,6 +3699,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3810,6 +3823,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4223,6 +4237,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4600,6 +4615,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4824,6 +4840,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5113,6 +5130,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5171,6 +5189,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5178,6 +5197,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5481,6 +5501,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5499,6 +5520,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5684,6 +5706,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5891,6 +5914,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6066,6 +6090,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6085,6 +6110,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6302,6 +6328,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6401,6 +6428,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6426,6 +6454,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6799,6 +6828,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6871,6 +6901,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7027,6 +7058,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7265,6 +7297,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7297,6 +7330,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7358,6 +7392,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7466,6 +7502,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7780,6 +7817,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7912,6 +7950,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8031,6 +8070,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8111,11 +8151,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8481,6 +8523,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index fe271aec27a..fb176346a7b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_21"; @@ -702,6 +703,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1344,6 +1346,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1857,6 +1860,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2008,6 +2012,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2199,6 +2204,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2508,6 +2514,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2520,7 +2527,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2663,6 +2672,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3485,6 +3495,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3537,6 +3548,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3684,6 +3696,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3807,6 +3820,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4220,6 +4234,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4597,6 +4612,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4821,6 +4837,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5109,6 +5126,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5167,6 +5185,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5174,6 +5193,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5476,6 +5496,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5494,6 +5515,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5679,6 +5701,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5886,6 +5909,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6060,6 +6084,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6079,6 +6104,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6295,6 +6321,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6394,6 +6421,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6419,6 +6447,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6790,6 +6819,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6862,6 +6892,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7018,6 +7049,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7256,6 +7288,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7288,6 +7321,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7349,6 +7383,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7455,6 +7491,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7768,6 +7805,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7900,6 +7938,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8019,6 +8058,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8099,11 +8139,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8469,6 +8511,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index dc618d2f2b5..d3db8afa300 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_22"; @@ -702,6 +703,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1343,6 +1345,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1856,6 +1859,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2006,6 +2010,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2110,6 +2115,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-iconv" = dontDistribute super."conduit-iconv"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = dontDistribute super."conduit-parse"; @@ -2196,6 +2202,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2505,6 +2512,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2517,7 +2525,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2660,6 +2670,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3482,6 +3493,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3534,6 +3546,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3680,6 +3693,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3803,6 +3817,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4216,6 +4231,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4593,6 +4609,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4816,6 +4833,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5104,6 +5122,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5161,6 +5180,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5168,6 +5188,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5469,6 +5490,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5487,6 +5509,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5672,6 +5695,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5879,6 +5903,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6053,6 +6078,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6072,6 +6098,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6288,6 +6315,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6387,6 +6415,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6412,6 +6441,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6783,6 +6813,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6855,6 +6886,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -7011,6 +7043,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7249,6 +7282,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7281,6 +7315,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7342,6 +7377,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7448,6 +7485,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7761,6 +7799,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7893,6 +7932,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7980,6 +8020,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -8011,6 +8052,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8091,11 +8133,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8460,6 +8504,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 8f92e45e6ca..35eb440d756 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -467,6 +467,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_22"; @@ -702,6 +703,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1343,6 +1345,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1855,6 +1858,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2005,6 +2009,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2109,6 +2114,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-iconv" = dontDistribute super."conduit-iconv"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = dontDistribute super."conduit-parse"; @@ -2195,6 +2201,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2504,6 +2511,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2516,7 +2524,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2659,6 +2669,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3479,6 +3490,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3531,6 +3543,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3676,6 +3689,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3799,6 +3813,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4210,6 +4225,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4584,6 +4600,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4807,6 +4824,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5095,6 +5113,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5152,6 +5171,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5159,6 +5179,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5460,6 +5481,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5478,6 +5500,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5663,6 +5686,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5870,6 +5894,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6043,6 +6068,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6062,6 +6088,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6276,6 +6303,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6375,6 +6403,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6400,6 +6429,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6771,6 +6801,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6843,6 +6874,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -6998,6 +7030,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7236,6 +7269,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7268,6 +7302,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7329,6 +7364,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7435,6 +7472,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7748,6 +7786,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7880,6 +7919,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7966,6 +8006,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7997,6 +8038,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8077,11 +8119,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8446,6 +8490,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index b38924fbbf2..ce8ecc39852 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -466,6 +466,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_22"; @@ -701,6 +702,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1342,6 +1344,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1850,6 +1853,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2000,6 +2004,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2103,6 +2108,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-iconv" = dontDistribute super."conduit-iconv"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = dontDistribute super."conduit-parse"; @@ -2189,6 +2195,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2498,6 +2505,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2510,7 +2518,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2653,6 +2663,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3473,6 +3484,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3525,6 +3537,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3670,6 +3683,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3793,6 +3807,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4202,6 +4217,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4575,6 +4591,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4797,6 +4814,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5084,6 +5102,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5141,6 +5160,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5148,6 +5168,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5449,6 +5470,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5467,6 +5489,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5651,6 +5674,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5858,6 +5882,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6029,6 +6054,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6048,6 +6074,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6262,6 +6289,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6361,6 +6389,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6386,6 +6415,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6757,6 +6787,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6829,6 +6860,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -6984,6 +7016,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7221,6 +7254,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7253,6 +7287,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7314,6 +7349,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7420,6 +7457,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7733,6 +7771,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7865,6 +7904,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7951,6 +7991,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7982,6 +8023,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8062,11 +8104,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8430,6 +8474,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index ab3660227dc..ba9460ae8c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1354,6 +1356,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1876,6 +1879,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2030,6 +2034,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2534,6 +2539,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2551,7 +2557,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3530,6 +3538,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3582,6 +3591,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3730,6 +3740,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4273,6 +4284,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4655,6 +4667,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4881,6 +4894,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5173,6 +5187,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5231,6 +5246,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5238,6 +5254,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5564,6 +5581,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5752,6 +5770,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5960,6 +5979,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6159,6 +6179,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6382,6 +6403,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6882,6 +6904,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6954,6 +6977,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4"; "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; @@ -7113,6 +7137,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7354,6 +7379,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7386,6 +7412,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7447,6 +7474,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7559,6 +7588,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8011,6 +8041,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8599,6 +8630,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index bb320bd6d3b..444c6627aee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -465,6 +465,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_22"; @@ -700,6 +701,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1341,6 +1343,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1849,6 +1852,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1999,6 +2003,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2102,6 +2107,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-iconv" = dontDistribute super."conduit-iconv"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = dontDistribute super."conduit-parse"; @@ -2188,6 +2194,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2497,6 +2504,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2509,7 +2517,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2652,6 +2662,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3472,6 +3483,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3524,6 +3536,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3669,6 +3682,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3792,6 +3806,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4201,6 +4216,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4574,6 +4590,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4796,6 +4813,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5082,6 +5100,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5139,6 +5158,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5146,6 +5166,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5447,6 +5468,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5465,6 +5487,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5649,6 +5672,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5856,6 +5880,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6026,6 +6051,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6045,6 +6071,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6259,6 +6286,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6358,6 +6386,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6383,6 +6412,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6753,6 +6783,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6825,6 +6856,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_5"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; @@ -6980,6 +7012,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7216,6 +7249,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7248,6 +7282,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7309,6 +7344,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7415,6 +7452,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7727,6 +7765,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7859,6 +7898,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7945,6 +7985,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7976,6 +8017,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8056,11 +8098,13 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8423,6 +8467,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 53ba6103f2c..5d00ab1621b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -465,6 +465,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_23"; @@ -700,6 +701,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1341,6 +1343,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1469,6 +1472,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1848,6 +1852,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1998,6 +2003,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2093,12 +2099,14 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-iconv" = dontDistribute super."conduit-iconv"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = dontDistribute super."conduit-parse"; @@ -2185,6 +2193,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2494,6 +2503,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2506,7 +2516,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2649,6 +2661,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3467,6 +3480,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3519,6 +3533,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3663,6 +3678,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3786,6 +3802,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4195,6 +4212,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4566,6 +4584,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4788,6 +4807,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5074,6 +5094,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5131,6 +5152,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5138,6 +5160,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5438,6 +5461,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5456,6 +5480,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5640,6 +5665,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5847,6 +5873,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6016,6 +6043,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6034,6 +6062,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6248,6 +6277,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6347,6 +6377,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6372,6 +6403,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6739,6 +6771,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6808,6 +6841,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6957,6 +6991,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7193,6 +7228,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7225,6 +7261,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7286,6 +7323,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7392,6 +7431,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7703,6 +7743,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7835,6 +7876,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7921,6 +7963,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7952,6 +7995,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8029,10 +8073,12 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8393,6 +8439,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index ac439cb6a01..3c00b7054b4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -465,6 +465,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_23"; @@ -700,6 +701,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1341,6 +1343,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1469,6 +1472,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1848,6 +1852,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1998,6 +2003,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2093,12 +2099,14 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-iconv" = dontDistribute super."conduit-iconv"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = dontDistribute super."conduit-parse"; @@ -2185,6 +2193,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2494,6 +2503,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2506,7 +2516,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -2649,6 +2661,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -3465,6 +3478,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3517,6 +3531,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3661,6 +3676,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3784,6 +3800,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4192,6 +4209,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4562,6 +4580,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4782,6 +4801,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5068,6 +5088,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5125,6 +5146,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5132,6 +5154,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5432,6 +5455,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5450,6 +5474,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5634,6 +5659,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5841,6 +5867,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6010,6 +6037,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6028,6 +6056,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6242,6 +6271,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6341,6 +6371,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6366,6 +6397,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6733,6 +6765,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6802,6 +6835,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6951,6 +6985,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7187,6 +7222,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7219,6 +7255,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7280,6 +7317,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7386,6 +7425,7 @@ self: super: { "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7697,6 +7737,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7829,6 +7870,7 @@ self: super: { "unix-pty-light" = dontDistribute super."unix-pty-light"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7915,6 +7957,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7946,6 +7989,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -8023,10 +8067,12 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; @@ -8387,6 +8433,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 42ec1ca8520..f42c314bfbc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1353,6 +1355,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1875,6 +1878,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2029,6 +2033,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2221,6 +2226,7 @@ self: super: { "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; "country-codes" = doDistribute super."country-codes_0_1_2"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2531,6 +2537,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2548,7 +2555,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3526,6 +3535,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3578,6 +3588,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3726,6 +3737,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4268,6 +4280,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4650,6 +4663,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4876,6 +4890,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5168,6 +5183,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5226,6 +5242,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5233,6 +5250,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5559,6 +5577,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5747,6 +5766,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5955,6 +5975,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6154,6 +6175,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6377,6 +6399,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6876,6 +6899,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6948,6 +6972,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_2"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; @@ -7107,6 +7132,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7347,6 +7373,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7379,6 +7406,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7440,6 +7468,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7551,6 +7581,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8003,6 +8034,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8589,6 +8621,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index a1b98e0c86f..43c7b1f735f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1353,6 +1355,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1875,6 +1878,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2029,6 +2033,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2221,6 +2226,7 @@ self: super: { "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; "country-codes" = doDistribute super."country-codes_0_1_2"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2531,6 +2537,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2548,7 +2555,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3526,6 +3535,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3578,6 +3588,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3726,6 +3737,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -4268,6 +4280,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4650,6 +4663,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4876,6 +4890,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5168,6 +5183,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5226,6 +5242,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5233,6 +5250,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5559,6 +5577,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5747,6 +5766,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5955,6 +5975,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6154,6 +6175,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6377,6 +6399,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6876,6 +6899,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6948,6 +6972,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_2"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; @@ -7107,6 +7132,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7346,6 +7372,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7378,6 +7405,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_12_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7439,6 +7467,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7550,6 +7580,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -8002,6 +8033,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8587,6 +8619,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 7741253ff12..7ec796dda7b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1352,6 +1354,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1874,6 +1877,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2028,6 +2032,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2220,6 +2225,7 @@ self: super: { "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; "country-codes" = doDistribute super."country-codes_0_1_2"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2530,6 +2536,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2547,7 +2554,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3524,6 +3533,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3576,6 +3586,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3724,6 +3735,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_0_1"; @@ -3848,6 +3860,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4264,6 +4277,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4643,6 +4657,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4869,6 +4884,7 @@ self: super: { "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5161,6 +5177,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5219,6 +5236,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5226,6 +5244,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5552,6 +5571,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5739,6 +5759,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5947,6 +5968,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6145,6 +6167,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6367,6 +6390,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6866,6 +6890,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6938,6 +6963,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_2"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; @@ -7097,6 +7123,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7336,6 +7363,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7368,6 +7396,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_13"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7429,6 +7458,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7538,6 +7569,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7989,6 +8021,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8571,6 +8604,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 52de97dd05a..a112ab1e422 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1352,6 +1354,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1874,6 +1877,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2028,6 +2032,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2220,6 +2225,7 @@ self: super: { "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; "country-codes" = doDistribute super."country-codes_0_1_2"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2530,6 +2536,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_4"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2547,7 +2554,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_2"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_3"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3521,6 +3530,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3573,6 +3583,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3721,6 +3732,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3845,6 +3857,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4261,6 +4274,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4640,6 +4654,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4865,6 +4880,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5155,6 +5171,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5213,6 +5230,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5220,6 +5238,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5545,6 +5564,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5732,6 +5752,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5940,6 +5961,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6118,6 +6140,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6137,6 +6160,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6359,6 +6383,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6858,6 +6883,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6930,6 +6956,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_2"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; @@ -7089,6 +7116,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7328,6 +7356,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7360,6 +7389,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_13"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7421,6 +7451,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7530,6 +7562,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7980,6 +8013,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8181,6 +8215,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8560,6 +8595,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index a04a9953c14..65572393d10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1352,6 +1354,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1872,6 +1875,7 @@ self: super: { "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2026,6 +2030,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2217,6 +2222,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2527,6 +2533,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_4"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; @@ -2544,7 +2551,9 @@ self: super: { "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_4"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3518,6 +3527,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3570,6 +3580,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3718,6 +3729,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3842,6 +3854,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4257,6 +4270,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4636,6 +4650,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4860,6 +4875,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5150,6 +5166,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5208,6 +5225,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5215,6 +5233,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5540,6 +5559,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5727,6 +5747,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5935,6 +5956,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6113,6 +6135,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6132,6 +6155,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6352,6 +6376,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6451,6 +6476,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6850,6 +6876,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6922,6 +6949,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_4"; "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; @@ -7081,6 +7109,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7319,6 +7348,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7351,6 +7381,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7412,6 +7443,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7521,6 +7554,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7837,6 +7871,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7970,6 +8005,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8171,6 +8207,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8548,6 +8585,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 737c3db5c65..5620e12acfb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -708,6 +709,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1352,6 +1354,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1869,6 +1872,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2023,6 +2027,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2214,6 +2219,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2524,6 +2530,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; @@ -2538,7 +2545,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3511,6 +3520,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3563,6 +3573,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3711,6 +3722,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3835,6 +3847,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4250,6 +4263,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4629,6 +4643,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4853,6 +4868,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5143,6 +5159,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5201,6 +5218,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5208,6 +5226,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5531,6 +5550,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5718,6 +5738,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5926,6 +5947,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6104,6 +6126,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6123,6 +6146,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6341,6 +6365,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6440,6 +6465,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6465,6 +6491,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6838,6 +6865,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6910,6 +6938,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_4"; "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; @@ -7069,6 +7098,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7307,6 +7337,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7339,6 +7370,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7400,6 +7432,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7508,6 +7542,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7824,6 +7859,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7957,6 +7993,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8158,6 +8195,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8535,6 +8573,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 96dd3a37288..6be418c5b6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -470,6 +470,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_20"; @@ -706,6 +707,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -1350,6 +1352,7 @@ self: super: { "ascii-progress" = dontDistribute super."ascii-progress"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1866,6 +1869,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "cased" = dontDistribute super."cased"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -2020,6 +2024,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -2211,6 +2216,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2521,6 +2527,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; @@ -2535,7 +2542,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; @@ -3506,6 +3515,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3558,6 +3568,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; @@ -3706,6 +3717,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_1"; @@ -3830,6 +3842,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -4245,6 +4258,7 @@ self: super: { "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4624,6 +4638,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4848,6 +4863,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -5138,6 +5154,7 @@ self: super: { "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -5196,6 +5213,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -5203,6 +5221,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop" = doDistribute super."loop_0_2_0"; @@ -5526,6 +5545,7 @@ self: super: { "morte" = dontDistribute super."morte"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5713,6 +5733,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-composed" = dontDistribute super."network-transport-composed"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; @@ -5920,6 +5941,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -6098,6 +6120,7 @@ self: super: { "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; @@ -6117,6 +6140,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6335,6 +6359,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = dontDistribute super."psc-ide"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6434,6 +6459,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6459,6 +6485,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6832,6 +6859,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6904,6 +6932,7 @@ self: super: { "servant-client" = doDistribute super."servant-client_0_4_4_4"; "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; @@ -7063,6 +7092,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7301,6 +7331,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7333,6 +7364,7 @@ self: super: { "streaming-bytestring" = dontDistribute super."streaming-bytestring"; "streaming-commons" = doDistribute super."streaming-commons_0_1_14_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "streamproc" = dontDistribute super."streamproc"; @@ -7394,6 +7426,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7502,6 +7536,7 @@ self: super: { "tasty-silver" = doDistribute super."tasty-silver_3_1_7"; "tasty-smallcheck" = doDistribute super."tasty-smallcheck_0_8_0_1"; "tasty-tap" = dontDistribute super."tasty-tap"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7818,6 +7853,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7951,6 +7987,7 @@ self: super: { "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -8152,6 +8189,7 @@ self: super: { "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-route" = doDistribute super."wai-route_0_3"; @@ -8529,6 +8567,7 @@ self: super: { "zippo" = dontDistribute super."zippo"; "zlib" = doDistribute super."zlib_0_5_4_2"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index f92b9d4175e..ab83739308c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -454,6 +454,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_23"; @@ -682,6 +683,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -781,6 +783,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; "RNAwolf" = dontDistribute super."RNAwolf"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; @@ -946,6 +949,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_7"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1248,6 +1252,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1371,6 +1376,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1733,6 +1739,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1875,6 +1882,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -1967,11 +1975,13 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -2008,6 +2018,7 @@ self: super: { "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; "contravariant" = doDistribute super."contravariant_1_3_3"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2054,6 +2065,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2101,6 +2113,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptol" = doDistribute super."cryptol_2_2_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2266,6 +2279,7 @@ self: super: { "dbcleaner" = dontDistribute super."dbcleaner"; "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; "dbus" = doDistribute super."dbus_0_10_11"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; @@ -2351,6 +2365,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2362,7 +2377,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; @@ -2413,6 +2430,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; @@ -2428,6 +2446,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "distributive" = doDistribute super."distributive_0_4_4"; @@ -2497,6 +2516,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -2517,6 +2537,7 @@ self: super: { "dynamic-object" = dontDistribute super."dynamic-object"; "dynamic-plot" = dontDistribute super."dynamic-plot"; "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = doDistribute super."dynamic-state_0_2_0_0"; "dynobud" = dontDistribute super."dynobud"; "dywapitchtrack" = dontDistribute super."dywapitchtrack"; "dzen-utils" = dontDistribute super."dzen-utils"; @@ -2774,6 +2795,7 @@ self: super: { "fficxx-runtime" = dontDistribute super."fficxx-runtime"; "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3067,6 +3089,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3293,6 +3316,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3344,6 +3368,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; @@ -3485,6 +3510,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3601,6 +3627,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3995,6 +4022,7 @@ self: super: { "hpasteit" = dontDistribute super."hpasteit"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4338,6 +4366,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4547,6 +4576,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -4833,6 +4863,7 @@ self: super: { "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -4890,6 +4921,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -4897,6 +4929,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop-effin" = dontDistribute super."loop-effin"; @@ -5184,6 +5217,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_0_1"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5201,6 +5235,7 @@ self: super: { "morfeusz" = dontDistribute super."morfeusz"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5319,6 +5354,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5378,8 +5414,10 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -5575,6 +5613,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -5734,6 +5773,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -5750,6 +5790,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -5953,6 +5994,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = doDistribute super."psc-ide_0_5_0"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6049,6 +6091,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6074,6 +6117,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6420,6 +6464,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6445,6 +6490,7 @@ self: super: { "sec" = dontDistribute super."sec"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; @@ -6485,6 +6531,7 @@ self: super: { "serv" = dontDistribute super."serv"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6629,6 +6676,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6853,6 +6901,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6883,6 +6932,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; @@ -6942,6 +6992,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7039,6 +7091,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7340,6 +7393,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7460,6 +7514,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7495,6 +7550,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; "users" = doDistribute super."users_0_3_0_0"; "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; @@ -7541,6 +7597,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7570,6 +7627,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7639,10 +7697,12 @@ self: super: { "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_9_4"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_3"; @@ -7977,6 +8037,7 @@ self: super: { "zippers" = dontDistribute super."zippers"; "zippo" = dontDistribute super."zippo"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 1a3e3e25530..82a17df0206 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -454,6 +454,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_23"; @@ -682,6 +683,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -781,6 +783,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; "RNAwolf" = dontDistribute super."RNAwolf"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; @@ -946,6 +949,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_7"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1246,6 +1250,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1369,6 +1374,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1731,6 +1737,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1873,6 +1880,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -1965,11 +1973,13 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -2006,6 +2016,7 @@ self: super: { "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; "contravariant" = doDistribute super."contravariant_1_3_3"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2052,6 +2063,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2099,6 +2111,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptol" = doDistribute super."cryptol_2_2_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2264,6 +2277,7 @@ self: super: { "dbcleaner" = dontDistribute super."dbcleaner"; "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; "dbus" = doDistribute super."dbus_0_10_11"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; @@ -2349,6 +2363,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; @@ -2360,7 +2375,9 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; @@ -2411,6 +2428,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; @@ -2426,6 +2444,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "distributive" = doDistribute super."distributive_0_4_4"; @@ -2495,6 +2514,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -2515,6 +2535,7 @@ self: super: { "dynamic-object" = dontDistribute super."dynamic-object"; "dynamic-plot" = dontDistribute super."dynamic-plot"; "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = doDistribute super."dynamic-state_0_2_0_0"; "dynobud" = dontDistribute super."dynobud"; "dywapitchtrack" = dontDistribute super."dywapitchtrack"; "dzen-utils" = dontDistribute super."dzen-utils"; @@ -2768,6 +2789,7 @@ self: super: { "fficxx-runtime" = dontDistribute super."fficxx-runtime"; "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3061,6 +3083,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3287,6 +3310,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3338,6 +3362,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; @@ -3479,6 +3504,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "half" = doDistribute super."half_0_2_2_2"; @@ -3595,6 +3621,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3988,6 +4015,7 @@ self: super: { "hpasteit" = dontDistribute super."hpasteit"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4328,6 +4356,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4535,6 +4564,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -4818,6 +4848,7 @@ self: super: { "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -4875,6 +4906,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -4882,6 +4914,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop-effin" = dontDistribute super."loop-effin"; @@ -5169,6 +5202,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_0_1"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5186,6 +5220,7 @@ self: super: { "morfeusz" = dontDistribute super."morfeusz"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5304,6 +5339,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5363,8 +5399,10 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -5560,6 +5598,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -5718,6 +5757,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -5733,6 +5773,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -5936,6 +5977,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = doDistribute super."psc-ide_0_5_0"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -6032,6 +6074,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6057,6 +6100,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6125,6 +6169,7 @@ self: super: { "references" = dontDistribute super."references"; "refh" = dontDistribute super."refh"; "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2_1_1_1"; "reflection-extras" = dontDistribute super."reflection-extras"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflex" = dontDistribute super."reflex"; @@ -6402,6 +6447,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6427,6 +6473,7 @@ self: super: { "sec" = dontDistribute super."sec"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; @@ -6467,6 +6514,7 @@ self: super: { "serv" = dontDistribute super."serv"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6611,6 +6659,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6835,6 +6884,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6865,6 +6915,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; @@ -6924,6 +6975,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -7021,6 +7074,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7321,6 +7375,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7441,6 +7496,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7476,6 +7532,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; "users" = doDistribute super."users_0_3_0_0"; "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; @@ -7522,6 +7579,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7551,6 +7609,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7620,10 +7679,12 @@ self: super: { "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_9_4"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; @@ -7957,6 +8018,7 @@ self: super: { "zippers" = dontDistribute super."zippers"; "zippo" = dontDistribute super."zippo"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 6d29972d4ea..d0be0c20d0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -452,6 +452,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_2_23"; @@ -680,6 +681,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -778,6 +780,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; "RNAwolf" = dontDistribute super."RNAwolf"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; @@ -942,6 +945,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_7"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1241,6 +1245,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1364,6 +1369,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1723,6 +1729,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1864,6 +1871,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -1954,11 +1962,13 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -1995,6 +2005,7 @@ self: super: { "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; "contravariant" = doDistribute super."contravariant_1_3_3"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2041,6 +2052,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2088,6 +2100,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptol" = doDistribute super."cryptol_2_2_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2253,6 +2266,7 @@ self: super: { "dbcleaner" = dontDistribute super."dbcleaner"; "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2337,15 +2351,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; @@ -2396,6 +2415,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; @@ -2411,6 +2431,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "distributive" = doDistribute super."distributive_0_4_4"; @@ -2480,6 +2501,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -2500,6 +2522,7 @@ self: super: { "dynamic-object" = dontDistribute super."dynamic-object"; "dynamic-plot" = dontDistribute super."dynamic-plot"; "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = doDistribute super."dynamic-state_0_2_0_0"; "dynobud" = dontDistribute super."dynobud"; "dywapitchtrack" = dontDistribute super."dywapitchtrack"; "dzen-utils" = dontDistribute super."dzen-utils"; @@ -2630,6 +2653,7 @@ self: super: { "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; + "esqueleto" = doDistribute super."esqueleto_2_4_2"; "ess" = dontDistribute super."ess"; "estimator" = dontDistribute super."estimator"; "estimators" = dontDistribute super."estimators"; @@ -2748,6 +2772,7 @@ self: super: { "fficxx-runtime" = dontDistribute super."fficxx-runtime"; "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -3039,6 +3064,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3264,6 +3290,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3315,6 +3342,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; @@ -3455,6 +3483,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "halfs" = dontDistribute super."halfs"; @@ -3485,6 +3514,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_3"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3567,6 +3597,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3956,6 +3987,7 @@ self: super: { "hpasteit" = dontDistribute super."hpasteit"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4291,6 +4323,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4495,6 +4528,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; @@ -4778,6 +4812,7 @@ self: super: { "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -4835,6 +4870,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -4842,6 +4878,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop-effin" = dontDistribute super."loop-effin"; @@ -4871,6 +4908,8 @@ self: super: { "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; "lushtags" = dontDistribute super."lushtags"; "luthor" = dontDistribute super."luthor"; "lvish" = dontDistribute super."lvish"; @@ -5124,6 +5163,7 @@ self: super: { "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_0_1"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5141,6 +5181,7 @@ self: super: { "morfeusz" = dontDistribute super."morfeusz"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5258,6 +5299,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5317,8 +5359,10 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -5514,6 +5558,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -5672,6 +5717,7 @@ self: super: { "pipes" = doDistribute super."pipes_4_1_7"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -5687,6 +5733,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -5887,6 +5934,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = doDistribute super."psc-ide_0_5_0"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -5983,6 +6031,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -6008,6 +6057,7 @@ self: super: { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -6075,6 +6125,7 @@ self: super: { "references" = dontDistribute super."references"; "refh" = dontDistribute super."refh"; "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2_1_1_1"; "reflection-extras" = dontDistribute super."reflection-extras"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflex" = dontDistribute super."reflex"; @@ -6349,6 +6400,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6374,6 +6426,7 @@ self: super: { "sec" = dontDistribute super."sec"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; @@ -6413,6 +6466,7 @@ self: super: { "serv" = dontDistribute super."serv"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6553,6 +6607,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6775,6 +6830,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6805,6 +6861,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; @@ -6864,6 +6921,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -6960,6 +7019,7 @@ self: super: { "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; "tasty-silver" = doDistribute super."tasty-silver_3_1_8"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7259,6 +7319,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = dontDistribute super."twitter-conduit"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "twitter-types" = dontDistribute super."twitter-types"; "twitter-types-lens" = dontDistribute super."twitter-types-lens"; "tx" = dontDistribute super."tx"; @@ -7379,6 +7440,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7414,6 +7476,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; "users" = doDistribute super."users_0_3_0_0"; "users-persistent" = doDistribute super."users-persistent_0_3_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_3_0_0"; @@ -7460,6 +7523,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7489,6 +7553,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7555,10 +7620,12 @@ self: super: { "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; "wai-routes" = doDistribute super."wai-routes_0_9_5"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; @@ -7890,6 +7957,7 @@ self: super: { "zippers" = dontDistribute super."zippers"; "zippo" = dontDistribute super."zippo"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index b7073d46b4d..222090f32d0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -447,6 +447,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_3_2"; @@ -670,6 +671,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -767,6 +769,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; "RNAwolf" = dontDistribute super."RNAwolf"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; @@ -930,6 +933,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_7"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1227,6 +1231,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1347,6 +1352,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-orphans" = doDistribute super."base-orphans_0_5_0"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1697,6 +1703,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1834,6 +1841,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -1924,11 +1932,13 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -1962,6 +1972,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2008,6 +2019,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2053,6 +2065,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2215,6 +2228,7 @@ self: super: { "dbcleaner" = dontDistribute super."dbcleaner"; "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2299,13 +2313,18 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; @@ -2356,6 +2375,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; @@ -2371,6 +2391,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "djembe" = dontDistribute super."djembe"; @@ -2434,6 +2455,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -2454,6 +2476,7 @@ self: super: { "dynamic-object" = dontDistribute super."dynamic-object"; "dynamic-plot" = dontDistribute super."dynamic-plot"; "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = doDistribute super."dynamic-state_0_2_0_0"; "dynobud" = dontDistribute super."dynobud"; "dywapitchtrack" = dontDistribute super."dywapitchtrack"; "dzen-utils" = dontDistribute super."dzen-utils"; @@ -2510,6 +2533,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_0"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2581,6 +2605,7 @@ self: super: { "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; + "esqueleto" = doDistribute super."esqueleto_2_4_2"; "ess" = dontDistribute super."ess"; "estimator" = dontDistribute super."estimator"; "estimators" = dontDistribute super."estimators"; @@ -2674,6 +2699,7 @@ self: super: { "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; "fckeditor" = dontDistribute super."fckeditor"; + "fclabels" = doDistribute super."fclabels_2_0_2_4"; "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; @@ -2696,6 +2722,7 @@ self: super: { "fficxx-runtime" = dontDistribute super."fficxx-runtime"; "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -2979,6 +3006,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3200,6 +3228,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3250,6 +3279,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; @@ -3388,6 +3418,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "halfs" = dontDistribute super."halfs"; @@ -3418,6 +3449,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_3"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3500,6 +3532,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3819,6 +3852,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_2"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -3887,6 +3921,7 @@ self: super: { "hpasteit" = dontDistribute super."hpasteit"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4025,6 +4060,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; @@ -4218,6 +4254,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4420,6 +4457,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; @@ -4699,6 +4737,7 @@ self: super: { "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -4756,6 +4795,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -4763,6 +4803,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop-effin" = dontDistribute super."loop-effin"; @@ -4792,6 +4833,8 @@ self: super: { "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; "lushtags" = dontDistribute super."lushtags"; "luthor" = dontDistribute super."luthor"; "lvish" = dontDistribute super."lvish"; @@ -4921,8 +4964,12 @@ self: super: { "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_1_0"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5032,7 +5079,9 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5050,6 +5099,7 @@ self: super: { "morfeusz" = dontDistribute super."morfeusz"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5166,6 +5216,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5224,8 +5275,10 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5419,6 +5472,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -5572,6 +5626,7 @@ self: super: { "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -5586,6 +5641,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -5782,6 +5838,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = doDistribute super."psc-ide_0_5_0"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -5877,6 +5934,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -5899,7 +5957,9 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5966,6 +6026,7 @@ self: super: { "references" = dontDistribute super."references"; "refh" = dontDistribute super."refh"; "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2_1_1_1"; "reflection-extras" = dontDistribute super."reflection-extras"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflex" = dontDistribute super."reflex"; @@ -6236,6 +6297,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6260,6 +6322,7 @@ self: super: { "sec" = dontDistribute super."sec"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; @@ -6299,6 +6362,7 @@ self: super: { "serv" = dontDistribute super."serv"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6437,6 +6501,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6654,6 +6719,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6684,6 +6750,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; @@ -6740,6 +6807,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -6834,6 +6903,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7125,6 +7195,7 @@ self: super: { "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7240,6 +7311,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7275,6 +7347,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; @@ -7316,6 +7389,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7346,6 +7420,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7412,9 +7487,12 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_6"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; @@ -7613,6 +7691,7 @@ self: super: { "yajl-enumerator" = dontDistribute super."yajl-enumerator"; "yall" = dontDistribute super."yall"; "yamemo" = dontDistribute super."yamemo"; + "yaml" = doDistribute super."yaml_0_8_15_3"; "yaml-config" = dontDistribute super."yaml-config"; "yaml-light-lens" = dontDistribute super."yaml-light-lens"; "yaml-rpc" = dontDistribute super."yaml-rpc"; @@ -7739,6 +7818,7 @@ self: super: { "zippers" = dontDistribute super."zippers"; "zippo" = dontDistribute super."zippo"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index c25861c65c8..2cf782f7032 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -445,6 +445,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_3_2"; @@ -668,6 +669,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -765,6 +767,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; "RNAwolf" = dontDistribute super."RNAwolf"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; @@ -928,6 +931,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_7"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1070,6 +1074,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1223,6 +1228,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1340,6 +1346,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-orphans" = doDistribute super."base-orphans_0_5_0"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1399,6 +1406,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-parser" = doDistribute super."binary-parser_0_5_1"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-shared" = dontDistribute super."binary-shared"; @@ -1687,6 +1695,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1821,6 +1830,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -1911,11 +1921,13 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -1949,6 +1961,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -1995,6 +2008,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2040,6 +2054,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2201,6 +2216,7 @@ self: super: { "dbcleaner" = dontDistribute super."dbcleaner"; "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2285,13 +2301,18 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; @@ -2342,6 +2363,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; @@ -2357,6 +2379,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "djembe" = dontDistribute super."djembe"; @@ -2420,6 +2443,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -2440,6 +2464,7 @@ self: super: { "dynamic-object" = dontDistribute super."dynamic-object"; "dynamic-plot" = dontDistribute super."dynamic-plot"; "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = doDistribute super."dynamic-state_0_2_0_0"; "dynobud" = dontDistribute super."dynobud"; "dywapitchtrack" = dontDistribute super."dywapitchtrack"; "dzen-utils" = dontDistribute super."dzen-utils"; @@ -2496,6 +2521,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_0"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2567,6 +2593,7 @@ self: super: { "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; + "esqueleto" = doDistribute super."esqueleto_2_4_2"; "ess" = dontDistribute super."ess"; "estimator" = dontDistribute super."estimator"; "estimators" = dontDistribute super."estimators"; @@ -2660,6 +2687,7 @@ self: super: { "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; "fckeditor" = dontDistribute super."fckeditor"; + "fclabels" = doDistribute super."fclabels_2_0_2_4"; "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; @@ -2682,6 +2710,7 @@ self: super: { "fficxx-runtime" = dontDistribute super."fficxx-runtime"; "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -2965,6 +2994,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3186,6 +3216,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3236,6 +3267,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; @@ -3374,6 +3406,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "halfs" = dontDistribute super."halfs"; @@ -3404,6 +3437,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_3"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3485,6 +3519,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3804,6 +3839,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_2"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -3872,6 +3908,7 @@ self: super: { "hpasteit" = dontDistribute super."hpasteit"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -4010,6 +4047,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; @@ -4202,6 +4240,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4404,6 +4443,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; @@ -4681,6 +4721,7 @@ self: super: { "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -4738,6 +4779,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -4745,6 +4787,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop-effin" = dontDistribute super."loop-effin"; @@ -4774,6 +4817,8 @@ self: super: { "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; "lushtags" = dontDistribute super."lushtags"; "luthor" = dontDistribute super."luthor"; "lvish" = dontDistribute super."lvish"; @@ -4903,8 +4948,12 @@ self: super: { "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_1_0"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5012,7 +5061,9 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5030,6 +5081,7 @@ self: super: { "morfeusz" = dontDistribute super."morfeusz"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5146,6 +5198,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5204,8 +5257,10 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5399,6 +5454,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -5552,6 +5608,7 @@ self: super: { "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -5566,6 +5623,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -5762,6 +5820,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = doDistribute super."psc-ide_0_5_0"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -5857,6 +5916,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -5879,7 +5939,9 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5945,6 +6007,7 @@ self: super: { "references" = dontDistribute super."references"; "refh" = dontDistribute super."refh"; "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2_1_1_1"; "reflection-extras" = dontDistribute super."reflection-extras"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflex" = dontDistribute super."reflex"; @@ -6042,6 +6105,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_1"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6214,6 +6278,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6238,6 +6303,7 @@ self: super: { "sec" = dontDistribute super."sec"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; @@ -6276,6 +6342,7 @@ self: super: { "serv" = dontDistribute super."serv"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6414,6 +6481,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6631,6 +6699,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6661,6 +6730,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; @@ -6717,6 +6787,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -6810,6 +6882,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7101,6 +7174,7 @@ self: super: { "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7216,6 +7290,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7251,6 +7326,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; @@ -7292,6 +7368,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7321,6 +7398,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7387,9 +7465,12 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_6"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; @@ -7588,6 +7669,7 @@ self: super: { "yajl-enumerator" = dontDistribute super."yajl-enumerator"; "yall" = dontDistribute super."yall"; "yamemo" = dontDistribute super."yamemo"; + "yaml" = doDistribute super."yaml_0_8_15_3"; "yaml-config" = dontDistribute super."yaml-config"; "yaml-light-lens" = dontDistribute super."yaml-light-lens"; "yaml-rpc" = dontDistribute super."yaml-rpc"; @@ -7713,6 +7795,7 @@ self: super: { "zippers" = dontDistribute super."zippers"; "zippo" = dontDistribute super."zippo"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 32256ef75b1..8f8760d1ad2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -445,6 +445,7 @@ self: super: { "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; "HSvm" = dontDistribute super."HSvm"; "HTTP" = doDistribute super."HTTP_4000_3_2"; @@ -667,6 +668,7 @@ self: super: { "NonEmptyList" = dontDistribute super."NonEmptyList"; "NumLazyByteString" = dontDistribute super."NumLazyByteString"; "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; "Numbers" = dontDistribute super."Numbers"; "Nussinov78" = dontDistribute super."Nussinov78"; "Nutri" = dontDistribute super."Nutri"; @@ -764,6 +766,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; "RNAwolf" = dontDistribute super."RNAwolf"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; @@ -927,6 +930,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_7"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1069,6 +1073,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1222,6 +1227,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1337,6 +1343,7 @@ self: super: { "barrier-monad" = dontDistribute super."barrier-monad"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1396,6 +1403,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-parser" = doDistribute super."binary-parser_0_5_1"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-shared" = dontDistribute super."binary-shared"; @@ -1683,6 +1691,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "cassandra-cql" = dontDistribute super."cassandra-cql"; @@ -1817,6 +1826,7 @@ self: super: { "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; "cmdargs-browser" = dontDistribute super."cmdargs-browser"; "cmdlib" = dontDistribute super."cmdlib"; "cmdtheline" = dontDistribute super."cmdtheline"; @@ -1907,11 +1917,13 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -1945,6 +1957,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -1991,6 +2004,7 @@ self: super: { "count" = dontDistribute super."count"; "countable" = dontDistribute super."countable"; "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; @@ -2036,6 +2050,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2197,6 +2212,7 @@ self: super: { "dbcleaner" = dontDistribute super."dbcleaner"; "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2281,13 +2297,18 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; @@ -2337,6 +2358,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; @@ -2352,6 +2374,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "djembe" = dontDistribute super."djembe"; @@ -2415,6 +2438,7 @@ self: super: { "dtd-types" = dontDistribute super."dtd-types"; "dtrace" = dontDistribute super."dtrace"; "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; "dump" = dontDistribute super."dump"; "duplo" = dontDistribute super."duplo"; "dvda" = dontDistribute super."dvda"; @@ -2435,6 +2459,7 @@ self: super: { "dynamic-object" = dontDistribute super."dynamic-object"; "dynamic-plot" = dontDistribute super."dynamic-plot"; "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = doDistribute super."dynamic-state_0_2_0_0"; "dynobud" = dontDistribute super."dynobud"; "dywapitchtrack" = dontDistribute super."dywapitchtrack"; "dzen-utils" = dontDistribute super."dzen-utils"; @@ -2491,6 +2516,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_0"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2561,6 +2587,7 @@ self: super: { "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; + "esqueleto" = doDistribute super."esqueleto_2_4_2"; "ess" = dontDistribute super."ess"; "estimator" = dontDistribute super."estimator"; "estimators" = dontDistribute super."estimators"; @@ -2652,6 +2679,7 @@ self: super: { "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; "fckeditor" = dontDistribute super."fckeditor"; + "fclabels" = doDistribute super."fclabels_2_0_2_4"; "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; @@ -2674,6 +2702,7 @@ self: super: { "fficxx-runtime" = dontDistribute super."fficxx-runtime"; "ffmpeg-light" = dontDistribute super."ffmpeg-light"; "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = doDistribute super."fft_0_1_8_2"; "fftwRaw" = dontDistribute super."fftwRaw"; "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; "fgl-visualize" = dontDistribute super."fgl-visualize"; @@ -2957,6 +2986,7 @@ self: super: { "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; "ghc-simple" = dontDistribute super."ghc-simple"; "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; @@ -3176,6 +3206,7 @@ self: super: { "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; @@ -3226,6 +3257,7 @@ self: super: { "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "greplicate" = dontDistribute super."greplicate"; "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; @@ -3363,6 +3395,7 @@ self: super: { "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; "hakyll-convert" = dontDistribute super."hakyll-convert"; "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; "halfs" = dontDistribute super."halfs"; @@ -3393,6 +3426,7 @@ self: super: { "happs-tutorial" = dontDistribute super."happs-tutorial"; "happstack" = dontDistribute super."happstack"; "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_3"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3474,6 +3508,7 @@ self: super: { "haskell-mpfr" = dontDistribute super."haskell-mpfr"; "haskell-mpi" = dontDistribute super."haskell-mpi"; "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3791,6 +3826,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_2"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -3859,6 +3895,7 @@ self: super: { "hpasteit" = dontDistribute super."hpasteit"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; "hplayground" = dontDistribute super."hplayground"; "hplaylist" = dontDistribute super."hplaylist"; "hpodder" = dontDistribute super."hpodder"; @@ -3997,6 +4034,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; @@ -4188,6 +4226,7 @@ self: super: { "imagefilters" = dontDistribute super."imagefilters"; "imagemagick" = dontDistribute super."imagemagick"; "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; "imapget" = dontDistribute super."imapget"; "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; @@ -4389,6 +4428,7 @@ self: super: { "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; @@ -4666,6 +4706,7 @@ self: super: { "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t" = doDistribute super."list-t_0_4_5_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; "list-t-http-client" = dontDistribute super."list-t-http-client"; @@ -4723,6 +4764,7 @@ self: super: { "logic-TPTP" = dontDistribute super."logic-TPTP"; "logic-classes" = dontDistribute super."logic-classes"; "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; "logplex-parse" = dontDistribute super."logplex-parse"; "logsink" = dontDistribute super."logsink"; "lojban" = dontDistribute super."lojban"; @@ -4730,6 +4772,7 @@ self: super: { "lojbanXiragan" = dontDistribute super."lojbanXiragan"; "lojysamban" = dontDistribute super."lojysamban"; "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; "loli" = dontDistribute super."loli"; "lookup-tables" = dontDistribute super."lookup-tables"; "loop-effin" = dontDistribute super."loop-effin"; @@ -4759,6 +4802,8 @@ self: super: { "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; "lushtags" = dontDistribute super."lushtags"; "luthor" = dontDistribute super."luthor"; "lvish" = dontDistribute super."lvish"; @@ -4888,8 +4933,12 @@ self: super: { "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_1_0"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -4992,7 +5041,9 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -5009,6 +5060,7 @@ self: super: { "morfeusz" = dontDistribute super."morfeusz"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; "mp" = dontDistribute super."mp"; "mp3decoder" = dontDistribute super."mp3decoder"; "mpdmate" = dontDistribute super."mpdmate"; @@ -5125,6 +5177,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5183,8 +5236,10 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5378,6 +5433,7 @@ self: super: { "pagarme" = dontDistribute super."pagarme"; "pagerduty" = doDistribute super."pagerduty_0_0_4"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; @@ -5528,6 +5584,7 @@ self: super: { "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -5542,6 +5599,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -5737,6 +5795,7 @@ self: super: { "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; "proxy-kindness" = dontDistribute super."proxy-kindness"; "psc-ide" = doDistribute super."psc-ide_0_5_0"; "pseudo-boolean" = dontDistribute super."pseudo-boolean"; @@ -5830,6 +5889,7 @@ self: super: { "rados-haskell" = dontDistribute super."rados-haskell"; "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; "rake" = dontDistribute super."rake"; "rakhana" = dontDistribute super."rakhana"; "ralist" = dontDistribute super."ralist"; @@ -5852,7 +5912,9 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5918,6 +5980,7 @@ self: super: { "references" = dontDistribute super."references"; "refh" = dontDistribute super."refh"; "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2_1_1_1"; "reflection-extras" = dontDistribute super."reflection-extras"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflex" = dontDistribute super."reflex"; @@ -6015,6 +6078,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_1"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6186,6 +6250,7 @@ self: super: { "scotty-cookie" = dontDistribute super."scotty-cookie"; "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; @@ -6210,6 +6275,7 @@ self: super: { "sec" = dontDistribute super."sec"; "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; @@ -6248,6 +6314,7 @@ self: super: { "serv" = dontDistribute super."serv"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; "servant-lucid" = dontDistribute super."servant-lucid"; @@ -6386,6 +6453,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6603,6 +6671,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6633,6 +6702,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; "streaming-wai" = dontDistribute super."streaming-wai"; "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; @@ -6687,6 +6757,8 @@ self: super: { "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -6780,6 +6852,7 @@ self: super: { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; "tateti-tateti" = dontDistribute super."tateti-tateti"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -7071,6 +7144,7 @@ self: super: { "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7186,6 +7260,7 @@ self: super: { "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; @@ -7221,6 +7296,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; @@ -7262,6 +7338,7 @@ self: super: { "variable-precision" = dontDistribute super."variable-precision"; "variables" = dontDistribute super."variables"; "varying" = dontDistribute super."varying"; + "vault" = doDistribute super."vault_0_3_0_5"; "vaultaire-common" = dontDistribute super."vaultaire-common"; "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; @@ -7290,6 +7367,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7356,9 +7434,12 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_6"; + "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; @@ -7556,6 +7637,7 @@ self: super: { "yajl-enumerator" = dontDistribute super."yajl-enumerator"; "yall" = dontDistribute super."yall"; "yamemo" = dontDistribute super."yamemo"; + "yaml" = doDistribute super."yaml_0_8_15_3"; "yaml-config" = dontDistribute super."yaml-config"; "yaml-light-lens" = dontDistribute super."yaml-light-lens"; "yaml-rpc" = dontDistribute super."yaml-rpc"; @@ -7681,6 +7763,7 @@ self: super: { "zippers" = dontDistribute super."zippers"; "zippo" = dontDistribute super."zippo"; "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zlib-lens" = doDistribute super."zlib-lens_0_1_2"; "zmcat" = dontDistribute super."zmcat"; "zmidi-core" = dontDistribute super."zmidi-core"; "zmidi-score" = dontDistribute super."zmidi-score"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix new file mode 100644 index 00000000000..dd5823102ac --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -0,0 +1,7725 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.3 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplate" = doDistribute super."HStringTemplate_0_8_3"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs" = doDistribute super."cmdargs_0_10_13"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_1"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "courier" = doDistribute super."courier_0_1_1_1"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dual-tree" = doDistribute super."dual-tree_0_2_0_8"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_0"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels" = doDistribute super."fclabels_2_0_2_4"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = doDistribute super."ghc-session_0_1_2_0"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = doDistribute super."happstack-authenticate_2_3_3"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_2_0"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_2"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_1_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_1_0"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_1"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_2_0"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palette" = doDistribute super."palette_0_1_0_2"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_1"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-th" = doDistribute super."tasty-th_0_1_3"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2_1_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_3"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml" = doDistribute super."yaml_0_8_15_3"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 1dbe2174e50..93f620a798d 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -791,6 +791,7 @@ self: { libraryToolDepends = [ alex cpphs happy ]; executableHaskellDepends = [ base directory filepath process ]; executableToolDepends = [ emacs ]; + jailbreak = true; postInstall = '' $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) $out/bin/agda-mode compile @@ -8930,7 +8931,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HStringTemplate" = callPackage + "HStringTemplate_0_8_3" = callPackage ({ mkDerivation, array, base, blaze-builder, bytestring, containers , deepseq, directory, filepath, mtl, old-locale, parsec, pretty , syb, template-haskell, text, time, void @@ -8948,6 +8949,25 @@ self: { ]; description = "StringTemplate implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HStringTemplate" = callPackage + ({ mkDerivation, array, base, blaze-builder, bytestring, containers + , deepseq, directory, filepath, mtl, old-locale, parsec, pretty + , syb, template-haskell, text, time, void + }: + mkDerivation { + pname = "HStringTemplate"; + version = "0.8.5"; + sha256 = "e02b3043f1a5f72db3a1a1075e7b641f266329b954ea7f2f6bd20266295b35ff"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers deepseq directory + filepath mtl old-locale parsec pretty syb template-haskell text + time void + ]; + description = "StringTemplate implementation in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "HStringTemplateHelpers" = callPackage @@ -12707,6 +12727,7 @@ self: { array base bytestring containers dlist fmlist HUnit QuickCheck random text vector ]; + doCheck = false; homepage = "http://software.complete.org/listlike"; description = "Generic support for list-like structures"; license = stdenv.lib.licenses.bsd3; @@ -14492,6 +14513,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "NumberTheory" = callPackage + ({ mkDerivation, base, containers, HUnit, primes }: + mkDerivation { + pname = "NumberTheory"; + version = "0.1.0.1"; + sha256 = "e0cc1d5500b4d719b846c3e96ef4e4b04e620b40acc5e4b5c942495537ee1da9"; + libraryHaskellDepends = [ base containers primes ]; + testHaskellDepends = [ base containers HUnit primes ]; + description = "A library for number theoretic computations, written in Haskell"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "Numbers" = callPackage ({ mkDerivation, base, random }: mkDerivation { @@ -15642,8 +15675,8 @@ self: { }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.9.0.2"; - sha256 = "f67856090d2ed0c5869d57cd50da4f32c9eb8c4e654e0c0bf232765f81aea072"; + version = "0.9.0.4"; + sha256 = "8f452a320c84cbb6f09670307b57af41c0ec30414440bd4f7155d13d0c28215a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -16145,19 +16178,19 @@ self: { }) {}; "QuickPlot" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, colour + ({ mkDerivation, aeson, attoparsec, base, bytestring , haskell-src-meta, parsec, scientific, snap, snap-core , template-haskell, text, vector, websockets, websockets-snap }: mkDerivation { pname = "QuickPlot"; - version = "0.1.0.0"; - sha256 = "f83747c013815d9a0f780a4839f6a7381d0fd867eaf8b92f8ae0333c34afef37"; + version = "0.1.0.1"; + sha256 = "02864cb2f1abcea25b5956421cfdd596c3b4d3ceafcd54d3aad26f443ba53fb5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson attoparsec base bytestring colour haskell-src-meta parsec - scientific snap snap-core template-haskell text vector websockets + aeson attoparsec base bytestring haskell-src-meta parsec scientific + snap snap-core template-haskell text vector websockets websockets-snap ]; homepage = "http://github.com/tepf/QuickPlot#readme"; @@ -16394,7 +16427,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RNAlien" = callPackage + "RNAlien_1_0_0" = callPackage ({ mkDerivation, base, biocore, biofasta, BlastHTTP, blastxml , bytestring, cassava, ClustalParser, cmdargs, containers , directory, edit-distance, either-unwrap, EntrezHTTP, filepath @@ -16420,9 +16453,10 @@ self: { ]; description = "Unsupervized construction of RNA family models"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RNAlien_1_1_0" = callPackage + "RNAlien" = callPackage ({ mkDerivation, aeson, base, biocore, biofasta, BlastHTTP , blastxml, bytestring, cassava, ClustalParser, cmdargs, containers , directory, edit-distance, either-unwrap, EntrezHTTP, filepath @@ -16448,10 +16482,8 @@ self: { directory either-unwrap filepath process random split time vector ViennaRNAParser ]; - jailbreak = true; description = "Unsupervized construction of RNA family models"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAwolf" = callPackage @@ -19075,8 +19107,8 @@ self: { pname = "TestExplode"; version = "0.1.0.0"; sha256 = "4133d9f69e7df366ac374ccb42bd9801ae66c0cd29f9f20ab849d1d8f8e79664"; - revision = "2"; - editedCabalFile = "87da94054ca27c85fc15cf5408bc1afb0354b9ed016348faf005ad44ae0917a2"; + revision = "3"; + editedCabalFile = "8c288eba01903e9c55bb60350b9a607f88b6a8537c2156bdbed5aa9be071a804"; libraryHaskellDepends = [ base containers directory fgl graphviz interpolatedstring-perl6 mtl process text @@ -19812,7 +19844,7 @@ self: { license = "unknown"; }) {}; - "ViennaRNAParser" = callPackage + "ViennaRNAParser_1_2_7" = callPackage ({ mkDerivation, base, hspec, parsec, process, transformers }: mkDerivation { pname = "ViennaRNAParser"; @@ -19822,9 +19854,10 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Libary for parsing ViennaRNA package output"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ViennaRNAParser_1_2_8" = callPackage + "ViennaRNAParser" = callPackage ({ mkDerivation, base, hspec, parsec, process, transformers }: mkDerivation { pname = "ViennaRNAParser"; @@ -19834,7 +19867,6 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Libary for parsing ViennaRNA package output"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vulkan" = callPackage @@ -20330,6 +20362,7 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/WordAlignment"; description = "Bigram word pair alignments"; license = stdenv.lib.licenses.gpl3; @@ -23115,7 +23148,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra" = callPackage + "aeson-extra_0_3_1_0" = callPackage ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring , containers, exceptions, hashable, parsec, quickcheck-instances , recursion-schemes, scientific, tasty, tasty-hunit @@ -23144,6 +23177,35 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "aeson-extra" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring + , containers, exceptions, hashable, parsec, quickcheck-instances + , recursion-schemes, scientific, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, these, time + , time-parsers, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "aeson-extra"; + version = "0.3.1.1"; + sha256 = "0fe646bdb96820ddef55a26b730f4b65a213b748229e3ba9758335a72d258fec"; + libraryHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec recursion-schemes scientific + template-haskell text time time-parsers transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec quickcheck-instances scientific tasty + tasty-hunit tasty-quickcheck template-haskell text these time + time-parsers unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-extra#readme"; + description = "Extra goodies for aeson"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aeson-filthy" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, text , unordered-containers @@ -23533,12 +23595,13 @@ self: { }: mkDerivation { pname = "aeson-value-parser"; - version = "0.11.1"; - sha256 = "933a2111c21cc0f6e9869d6c4927b8201882a03c01de693e68d821f5d4484d49"; + version = "0.11.2"; + sha256 = "a0e64e5c4eb8e75e4ba27c6ea26276f508da407883fb1527102e07a20ed0d454"; libraryHaskellDepends = [ aeson base-prelude mtl-prelude scientific success text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/sannsyn/aeson-value-parser"; description = "An API for parsing \"aeson\" JSON tree into Haskell types"; license = stdenv.lib.licenses.mit; @@ -30716,7 +30779,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "asciidiagram" = callPackage + "asciidiagram_1_1_1_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative , rasterific-svg, svg-tree, text, vector @@ -30735,6 +30798,31 @@ self: { base bytestring directory filepath FontyFruity JuicyPixels optparse-applicative rasterific-svg svg-tree text ]; + jailbreak = true; + description = "Pretty rendering of Ascii diagram into svg or png"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "asciidiagram" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative + , rasterific-svg, svg-tree, text, vector + }: + mkDerivation { + pname = "asciidiagram"; + version = "1.2"; + sha256 = "5ea87f5932463b8cb62873a0551fdbbf17525b45819ffb54ebcf5de400e8d098"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers FontyFruity JuicyPixels lens linear mtl + rasterific-svg svg-tree text vector + ]; + executableHaskellDepends = [ + base bytestring directory filepath FontyFruity JuicyPixels + optparse-applicative rasterific-svg svg-tree text + ]; description = "Pretty rendering of Ascii diagram into svg or png"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -31315,8 +31403,8 @@ self: { }: mkDerivation { pname = "atlassian-connect-descriptor"; - version = "0.4.3.0"; - sha256 = "f4c2c8e42c64eae90b4daf9f0cb4432701129ed782490283278613986cddc69b"; + version = "0.4.3.1"; + sha256 = "9e7ebc206c9625dd511cc20ade5952b972091c1aafa617086578fd9f33099b84"; libraryHaskellDepends = [ aeson base cases network network-uri text time-units unordered-containers @@ -34388,7 +34476,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude" = callPackage + "base-prelude_0_1_21" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; @@ -34399,9 +34487,10 @@ self: { homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude_1" = callPackage + "base-prelude" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; @@ -34411,7 +34500,6 @@ self: { homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-unicode-symbols" = callPackage @@ -36035,13 +36123,14 @@ self: { libraryHaskellDepends = [ base-prelude bytestring success text transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/binary-parser"; description = "A highly-efficient but limited parser API specialised for bytestrings"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-parser" = callPackage + "binary-parser_0_5_1" = callPackage ({ mkDerivation, base-prelude, bytestring, success, text , transformers }: @@ -36052,12 +36141,14 @@ self: { libraryHaskellDepends = [ base-prelude bytestring success text transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/binary-parser"; description = "A highly-efficient but limited parser API specialised for bytestrings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-parser_0_5_2" = callPackage + "binary-parser" = callPackage ({ mkDerivation, base-prelude, bytestring, success, text , transformers }: @@ -36071,7 +36162,6 @@ self: { homepage = "https://github.com/nikita-volkov/binary-parser"; description = "A highly-efficient but limited parser API specialised for bytestrings"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-protocol" = callPackage @@ -38284,17 +38374,17 @@ self: { }) {}; "blatex" = callPackage - ({ mkDerivation, base, blaze-html, directory, HaTeX, process, split - , tagsoup, text + ({ mkDerivation, base, blaze-html, dates, directory, HaTeX, process + , split, tagsoup, text }: mkDerivation { pname = "blatex"; - version = "0.1.0.4"; - sha256 = "cbf1adfa07407c66a1dc071fca663a709e2b7cd7787f07a82276b6c58451f236"; + version = "0.1.0.5"; + sha256 = "8c421e5c355d374463793a6bd3815185fcd8d0e8134d72b7d6e7a916f5932479"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base blaze-html directory HaTeX process split tagsoup text + base blaze-html dates directory HaTeX process split tagsoup text ]; jailbreak = true; homepage = "https://github.com/2016rshah/BlaTeX"; @@ -41543,8 +41633,8 @@ self: { }: mkDerivation { pname = "cab"; - version = "0.2.15"; - sha256 = "8925fa275d5aec64ec2627e57e131a9f8bc7a9060e4693a0507bf569af4f5f3c"; + version = "0.2.16"; + sha256 = "f9f9f9c178ad486ff29186b519d6993a8429c3fa34a43d8ed42525c20df5585f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -44196,7 +44286,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cases" = callPackage + "cases_0_1_2_1" = callPackage ({ mkDerivation, attoparsec, base, base-prelude, HTF, HUnit , loch-th, placeholders, QuickCheck, text }: @@ -44213,9 +44303,10 @@ self: { homepage = "https://github.com/nikita-volkov/cases"; description = "A converter for spinal, snake and camel cases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cases_0_1_3" = callPackage + "cases" = callPackage ({ mkDerivation, attoparsec, base, base-prelude, HTF, HUnit , loch-th, placeholders, QuickCheck, text }: @@ -44228,10 +44319,10 @@ self: { base HTF HUnit loch-th placeholders QuickCheck text ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/nikita-volkov/cases"; description = "A converter for spinal, snake and camel cases"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cash" = callPackage @@ -48753,8 +48844,8 @@ self: { }: mkDerivation { pname = "cli"; - version = "0.1.1"; - sha256 = "a348c51e5ad1c134a39145cd3e2de5aa2ca5fca1f88262d26012df07aaf68edd"; + version = "0.1.2"; + sha256 = "580a31fc25eb988dbb5ad3aebfb72d49f089cbee9693edf78dae722b2fde4acb"; libraryHaskellDepends = [ base mtl terminfo transformers ]; testHaskellDepends = [ base directory QuickCheck tasty tasty-quickcheck transformers @@ -49354,7 +49445,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cmdargs" = callPackage + "cmdargs_0_10_13" = callPackage ({ mkDerivation, base, filepath, process, template-haskell , transformers }: @@ -49370,6 +49461,25 @@ self: { homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Command line argument processing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cmdargs" = callPackage + ({ mkDerivation, base, filepath, process, template-haskell + , transformers + }: + mkDerivation { + pname = "cmdargs"; + version = "0.10.14"; + sha256 = "38b60053c11394a1876d2744950eece66ca9e4364298c1383f247894044bce58"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base filepath process template-haskell transformers + ]; + homepage = "https://github.com/ndmitchell/cmdargs#readme"; + description = "Command line argument processing"; + license = stdenv.lib.licenses.bsd3; }) {}; "cmdargs-browser" = callPackage @@ -51277,8 +51387,8 @@ self: { }: mkDerivation { pname = "concurrent-machines"; - version = "0.2.0"; - sha256 = "85c6050bc86f0a421e39ca6c7a9ac71fa2601d6b8be7792ac57d43fdddd95e4c"; + version = "0.2.1"; + sha256 = "8c22ce94dfbc20214a1a5ced0cfcb7de0c2eae509a250d144c8af51a8f27507f"; libraryHaskellDepends = [ async base containers lifted-async machines monad-control semigroups time transformers transformers-base @@ -51286,7 +51396,6 @@ self: { testHaskellDepends = [ base machines tasty tasty-hunit time transformers ]; - jailbreak = true; description = "Concurrent networked stream transducers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -51678,7 +51787,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_6_1" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -51698,6 +51807,29 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, mtl, QuickCheck, resourcet, safe, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit"; + version = "1.2.6.2"; + sha256 = "f9a6322b9150e85c7cc33e2eafafecc0b35ed991781a2952c274d82627c9f41e"; + libraryHaskellDepends = [ + base exceptions lifted-base mmorph mtl resourcet transformers + transformers-base + ]; + testHaskellDepends = [ + base containers exceptions hspec mtl QuickCheck resourcet safe + transformers + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-audio" = callPackage @@ -52263,7 +52395,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-extra" = callPackage + "conduit-extra_1_1_9_2" = callPackage ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring , bytestring-builder, conduit, directory, exceptions, filepath , hspec, monad-control, network, primitive, process, resourcet, stm @@ -52286,6 +52418,32 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Batteries included conduit: adapters for common libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-extra" = callPackage + ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring + , bytestring-builder, conduit, directory, exceptions, filepath + , hspec, monad-control, network, primitive, process, resourcet, stm + , streaming-commons, text, transformers, transformers-base + }: + mkDerivation { + pname = "conduit-extra"; + version = "1.1.10.1"; + sha256 = "693eeea93dd2f68c1bc4a7b42ff20fdad7556c12c45ef705beaa256de422002a"; + libraryHaskellDepends = [ + attoparsec base blaze-builder bytestring conduit directory filepath + monad-control network primitive process resourcet stm + streaming-commons text transformers transformers-base + ]; + testHaskellDepends = [ + async attoparsec base blaze-builder bytestring bytestring-builder + conduit exceptions hspec process resourcet stm streaming-commons + text transformers transformers-base + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Batteries included conduit: adapters for common libraries"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-iconv" = callPackage @@ -53365,7 +53523,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "contravariant-extras" = callPackage + "contravariant-extras_0_3" = callPackage ({ mkDerivation, base, base-prelude, contravariant , template-haskell, tuple-th }: @@ -53376,12 +53534,14 @@ self: { libraryHaskellDepends = [ base base-prelude contravariant template-haskell tuple-th ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/contravariant-extras"; description = "Extras for the \"contravariant\" package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "contravariant-extras_0_3_1" = callPackage + "contravariant-extras" = callPackage ({ mkDerivation, base, base-prelude, contravariant , template-haskell, tuple-th }: @@ -53395,7 +53555,6 @@ self: { homepage = "https://github.com/nikita-volkov/contravariant-extras"; description = "Extras for the \"contravariant\" package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-bool" = callPackage @@ -53655,6 +53814,7 @@ self: { version = "1.2"; sha256 = "d5f8b437aaa61bd414247a5a4f947eb6ee41929c1725b4874af30252fea022a9"; libraryHaskellDepends = [ base-prelude ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/conversion"; description = "Universal converter between values of different types"; license = stdenv.lib.licenses.mit; @@ -53667,6 +53827,7 @@ self: { version = "1.0.0.1"; sha256 = "7e4c4264a8a9aa4fc3809411146257989404d50dfe4943bdddf063546e754bbf"; libraryHaskellDepends = [ base-prelude bytestring conversion ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/conversion-bytestring"; description = "\"Conversion\" instances for the \"bytestring\" library"; license = stdenv.lib.licenses.mit; @@ -53695,6 +53856,7 @@ self: { libraryHaskellDepends = [ base-prelude bytestring conversion conversion-bytestring text ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/conversion-text"; description = "\"Conversion\" instances for the \"text\" library"; license = stdenv.lib.licenses.mit; @@ -54364,7 +54526,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "courier" = callPackage + "courier_0_1_1_1" = callPackage ({ mkDerivation, async, base, bytestring, cereal, containers , directory, hslogger, HUnit, network, stm, test-framework , test-framework-hunit, text, uuid @@ -54387,6 +54549,32 @@ self: { homepage = "http://github.com/hargettp/courier"; description = "A message-passing library for simplifying network applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "courier" = callPackage + ({ mkDerivation, async, base, bytestring, cereal, containers + , directory, hslogger, HUnit, network, stm, test-framework + , test-framework-hunit, text, uuid + }: + mkDerivation { + pname = "courier"; + version = "0.1.1.2"; + sha256 = "1b15696197ab61fb8a675541923cbe23ee75950e43657161b2460f1897b75330"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring cereal containers hslogger network stm text + uuid + ]; + executableHaskellDepends = [ base cereal ]; + testHaskellDepends = [ + async base cereal containers directory hslogger HUnit network stm + test-framework test-framework-hunit + ]; + homepage = "http://github.com/hargettp/courier"; + description = "A message-passing library for simplifying network applications"; + license = stdenv.lib.licenses.mit; }) {}; "court" = callPackage @@ -54414,8 +54602,8 @@ self: { ({ mkDerivation, base, hspec, HUnit, QuickCheck }: mkDerivation { pname = "coverage"; - version = "0.1.0.3"; - sha256 = "2ea9ea4f529fb99fde5d47814cf0ccf0450c70e03bbfb8275ce30a51f9f72830"; + version = "0.1.0.4"; + sha256 = "d9b7499e5f806d4f841b52230faa752de383fa4e4129054d52ebabb4f7e782da"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec HUnit QuickCheck ]; jailbreak = true; @@ -56189,7 +56377,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptonite" = callPackage + "cryptonite_0_10" = callPackage ({ mkDerivation, base, byteable, bytestring, deepseq, ghc-prim , integer-gmp, memory, tasty, tasty-hunit, tasty-kat , tasty-quickcheck @@ -56208,17 +56396,18 @@ self: { homepage = "https://github.com/haskell-crypto/cryptonite"; description = "Cryptography Primitives sink"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptonite_0_11" = callPackage + "cryptonite" = callPackage ({ mkDerivation, base, byteable, bytestring, deepseq, ghc-prim , integer-gmp, memory, tasty, tasty-hunit, tasty-kat , tasty-quickcheck }: mkDerivation { pname = "cryptonite"; - version = "0.11"; - sha256 = "4dedc69d6aae086fe9edd7ac3b3bdb0eef5842985eece9189e578c4c1f71676c"; + version = "0.12"; + sha256 = "8ab0570f6f0864004d6bdce012aaafbf365a45b1721061c7d35554b92f1ababd"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim integer-gmp memory ]; @@ -56229,7 +56418,6 @@ self: { homepage = "https://github.com/haskell-crypto/cryptonite"; description = "Cryptography Primitives sink"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cryptsy-api" = callPackage @@ -59363,7 +59551,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dbmigrations" = callPackage + "dbmigrations_1_0" = callPackage ({ mkDerivation, base, bytestring, configurator, containers , directory, fgl, filepath, HDBC, HDBC-postgresql, HDBC-sqlite3 , HUnit, MissingH, mtl, process, random, template-haskell, text @@ -59389,9 +59577,10 @@ self: { doCheck = false; description = "An implementation of relational database \"migrations\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dbmigrations_1_1" = callPackage + "dbmigrations" = callPackage ({ mkDerivation, base, bytestring, configurator, containers , directory, fgl, filepath, HDBC, HDBC-postgresql, HDBC-sqlite3 , HUnit, MissingH, mtl, mysql, mysql-simple, process, random, split @@ -59414,9 +59603,9 @@ self: { HDBC-postgresql HDBC-sqlite3 HUnit MissingH mtl mysql mysql-simple process split template-haskell text time yaml-light ]; + doCheck = false; description = "An implementation of relational database \"migrations\""; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus_0_10_10" = callPackage @@ -61397,7 +61586,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams" = callPackage + "diagrams_1_3" = callPackage ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib , diagrams-svg }: @@ -61412,6 +61601,24 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative vector graphics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams" = callPackage + ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib + , diagrams-svg + }: + mkDerivation { + pname = "diagrams"; + version = "1.3.0.1"; + sha256 = "ee8abf5c262955a6a535ddc297bdf829ccd17bc179f61faf953371118ec4e4a7"; + libraryHaskellDepends = [ + diagrams-contrib diagrams-core diagrams-lib diagrams-svg + ]; + doHaddock = false; + homepage = "http://projects.haskell.org/diagrams"; + description = "Embedded domain-specific language for declarative vector graphics"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-builder_0_6_0_2" = callPackage @@ -62158,6 +62365,27 @@ self: { adjunctions base containers distributive dual-tree lens linear monoid-extras mtl semigroups unordered-containers ]; + jailbreak = true; + homepage = "http://projects.haskell.org/diagrams"; + description = "Core libraries for diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-core_1_3_0_5" = callPackage + ({ mkDerivation, adjunctions, base, containers, distributive + , dual-tree, lens, linear, monoid-extras, mtl, semigroups + , unordered-containers + }: + mkDerivation { + pname = "diagrams-core"; + version = "1.3.0.5"; + sha256 = "e898afe6cb88fb8caf9555b700a22021e84783d2cbe825d16cbb8cee461fae8c"; + libraryHaskellDepends = [ + adjunctions base containers distributive dual-tree lens linear + monoid-extras mtl semigroups unordered-containers + ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -62171,8 +62399,8 @@ self: { }: mkDerivation { pname = "diagrams-core"; - version = "1.3.0.5"; - sha256 = "e898afe6cb88fb8caf9555b700a22021e84783d2cbe825d16cbb8cee461fae8c"; + version = "1.3.0.6"; + sha256 = "33c6079b2ec235c3fbbcb8ea7103335ccec1d1d53c27549c549f3b9ca692b9d3"; libraryHaskellDepends = [ adjunctions base containers distributive dual-tree lens linear monoid-extras mtl semigroups unordered-containers @@ -62582,13 +62810,14 @@ self: { JuicyPixels lens linear monoid-extras mtl optparse-applicative process semigroups tagged text transformers unordered-containers ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-lib" = callPackage + "diagrams-lib_1_3_0_9" = callPackage ({ mkDerivation, active, adjunctions, array, base, colour , containers, data-default-class, diagrams-core, diagrams-solve , directory, distributive, dual-tree, exceptions, filepath @@ -62607,6 +62836,34 @@ self: { JuicyPixels lens linear monoid-extras mtl optparse-applicative process semigroups tagged text transformers unordered-containers ]; + jailbreak = true; + homepage = "http://projects.haskell.org/diagrams"; + description = "Embedded domain-specific language for declarative graphics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-lib" = callPackage + ({ mkDerivation, active, adjunctions, array, base, colour + , containers, data-default-class, diagrams-core, diagrams-solve + , directory, distributive, dual-tree, exceptions, filepath + , fingertree, fsnotify, hashable, intervals, JuicyPixels, lens + , linear, monoid-extras, mtl, optparse-applicative, process + , semigroups, tagged, tasty, tasty-hunit, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "diagrams-lib"; + version = "1.3.1.1"; + sha256 = "02f2760a413f36fb73a726c1fdc2bfc4100476cbc0850bfe17f90de9ed713e69"; + libraryHaskellDepends = [ + active adjunctions array base colour containers data-default-class + diagrams-core diagrams-solve directory distributive dual-tree + exceptions filepath fingertree fsnotify hashable intervals + JuicyPixels lens linear monoid-extras mtl optparse-applicative + process semigroups tagged text transformers unordered-containers + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; @@ -62926,6 +63183,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "diagrams-reflex" = callPackage + ({ mkDerivation, base, colour, containers, diagrams-core + , diagrams-lib, lens, monoid-extras, mtl, reflex, reflex-dom + , reflex-dom-contrib + }: + mkDerivation { + pname = "diagrams-reflex"; + version = "0.1"; + sha256 = "9dd7316c3a65c9f99254f12bd832e72da8af39277ced9ad16e53ee782afad73e"; + libraryHaskellDepends = [ + base colour containers diagrams-core diagrams-lib lens + monoid-extras mtl reflex reflex-dom reflex-dom-contrib + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "reflex backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "diagrams-rubiks-cube" = callPackage ({ mkDerivation, base, data-default-class, diagrams-lib, lens }: mkDerivation { @@ -62940,7 +63215,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "diagrams-solve" = callPackage + "diagrams-solve_0_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "diagrams-solve"; @@ -62950,6 +63225,19 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Pure Haskell solver routines used by diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-solve" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "diagrams-solve"; + version = "0.1.0.1"; + sha256 = "71e53a4c8c2794719d057e6bf52b996b13d52ac9d62191df134ba05062453bde"; + libraryHaskellDepends = [ base ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Pure Haskell solver routines used by diagrams"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-svg_1_1_0_3" = callPackage @@ -63141,6 +63429,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "diagrams-svg_1_4" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, colour + , containers, diagrams-core, diagrams-lib, directory, filepath + , hashable, JuicyPixels, lens, monoid-extras, mtl, old-time + , optparse-applicative, process, semigroups, split, svg-builder + , text, time + }: + mkDerivation { + pname = "diagrams-svg"; + version = "1.4"; + sha256 = "9845b2f999f3fb61bf36c064977d36aea9ad8c5532c2ce80e5e3a85f5f9df900"; + libraryHaskellDepends = [ + base base64-bytestring bytestring colour containers diagrams-core + diagrams-lib directory filepath hashable JuicyPixels lens + monoid-extras mtl old-time optparse-applicative process semigroups + split svg-builder text time + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "SVG backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-tikz" = callPackage ({ mkDerivation, base, diagrams-core, diagrams-lib, dlist, mtl }: mkDerivation { @@ -64158,14 +64469,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_5_0" = callPackage + "directory_1_2_5_1" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.5.0"; - sha256 = "ac9d7fdd402c3281fab7ffad004229671f0ecfb7ddd70fd58b90b0a48c1ddef7"; - revision = "1"; - editedCabalFile = "1ae6631d1a4234329263792b1809c156f9f85a05753379e69fd6b2e93c61c6a0"; + version = "1.2.5.1"; + sha256 = "15f6d6c403755196617933ed165e6abd82340fcf172582577bb7ced86700ed7d"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -64468,7 +64777,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "distributed-process" = callPackage + "distributed-process_0_5_5_1" = callPackage ({ mkDerivation, base, binary, bytestring, containers , data-accessor, deepseq, distributed-static, ghc-prim, hashable , mtl, network-transport, random, rank1dynamic, stm, syb @@ -64487,6 +64796,28 @@ self: { homepage = "http://haskell-distributed.github.com/"; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "distributed-process" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , data-accessor, deepseq, distributed-static, ghc-prim, hashable + , mtl, network-transport, random, rank1dynamic, stm, syb + , template-haskell, time, transformers + }: + mkDerivation { + pname = "distributed-process"; + version = "0.6.0"; + sha256 = "d79f7e24e7b2896681f9f4b798da0e987742caab4c34917a0d04f40f9aef6b5b"; + libraryHaskellDepends = [ + base binary bytestring containers data-accessor deepseq + distributed-static ghc-prim hashable mtl network-transport random + rank1dynamic stm syb template-haskell time transformers + ]; + doCheck = false; + homepage = "http://haskell-distributed.github.com/"; + description = "Cloud Haskell: Erlang-style concurrency in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "distributed-process-async_0_2_1" = callPackage @@ -64530,8 +64861,8 @@ self: { }: mkDerivation { pname = "distributed-process-async"; - version = "0.2.2"; - sha256 = "b1bfc3ee24be9c2ab1d45563f4d4bd46a05f61a8af4fe5c1ffeb4925bbc50feb"; + version = "0.2.3"; + sha256 = "d3031457c36bb3c35496031c185354417b54ce253e1878f35072d04e8161ad95"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process distributed-process-extras fingertree hashable mtl stm time @@ -64617,8 +64948,8 @@ self: { }: mkDerivation { pname = "distributed-process-client-server"; - version = "0.1.3.1"; - sha256 = "3659dcf407af66485cc01294af61655aef48fd6758191788596b1461eed41438"; + version = "0.1.3.2"; + sha256 = "2c905624d5486b7bc8bd1a4763b139e7eb364b20467c9abddd553f9afbd3601f"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process distributed-process-async distributed-process-extras fingertree @@ -64687,8 +65018,8 @@ self: { }: mkDerivation { pname = "distributed-process-execution"; - version = "0.1.2.1"; - sha256 = "2e450d510586384d325479d008a64254ad5c9883f8af6bfd99e7edc9ae26a68e"; + version = "0.1.2.2"; + sha256 = "9fbfca6b394e52af462586127a0edc2efc2a160ae8f69a9d34234a71e3dbf7b5"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process distributed-process-client-server distributed-process-extras @@ -64754,8 +65085,8 @@ self: { }: mkDerivation { pname = "distributed-process-extras"; - version = "0.2.1.1"; - sha256 = "32213a9077c0fc3b835b7b94d7d5e04262208e2ce0192675af8b5bf9efe8f911"; + version = "0.2.1.2"; + sha256 = "c1a4e1a5e3ec30089251db40fd479b19c5fd74c9dd8ca50f8eb32aaf9747a048"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process fingertree hashable mtl stm time transformers unordered-containers @@ -64783,8 +65114,8 @@ self: { }: mkDerivation { pname = "distributed-process-lifted"; - version = "0.1.0.0"; - sha256 = "638112333b5bc20117396d673d46cc3786719fd545a7a76f9fb80957ee1a5a4e"; + version = "0.2.0.0"; + sha256 = "c0c323de903c6f6770c9e95e4c3dbbfc9295f55ad309220fd64710dae3a5e27f"; libraryHaskellDepends = [ base deepseq distributed-process distributed-process-monad-control lifted-base monad-control mtl network-transport transformers @@ -64795,6 +65126,7 @@ self: { network-transport network-transport-tcp rematch test-framework test-framework-hunit transformers ]; + jailbreak = true; homepage = "https://github.com/jeremyjh/distributed-process-lifted"; description = "monad-control style typeclass and transformer instances for Process monad"; license = stdenv.lib.licenses.bsd3; @@ -64812,6 +65144,7 @@ self: { base distributed-process monad-control transformers transformers-base ]; + jailbreak = true; homepage = "http://haskell-distributed.github.io"; description = "Orphan instances for MonadBase and MonadBaseControl"; license = stdenv.lib.licenses.bsd3; @@ -64883,8 +65216,8 @@ self: { }: mkDerivation { pname = "distributed-process-registry"; - version = "0.1.0.1"; - sha256 = "9571f9870fb0591a09b8260e4b8b096547bf253a502a4a9347c9c30f19788931"; + version = "0.1.0.2"; + sha256 = "ae2e6ec9de83344cbf33db09073343faba2f8e990e20e98dfebe80a9560875d2"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process distributed-process-client-server distributed-process-extras @@ -64958,8 +65291,8 @@ self: { }: mkDerivation { pname = "distributed-process-simplelocalnet"; - version = "0.2.3.1"; - sha256 = "0efd9566945f5927eff128d928baa094720ef29ceec213fd3799e36ae3bcf1b5"; + version = "0.2.3.2"; + sha256 = "c3351cf8a782dda756689b3747ede1e3879dcb913a07065eb4ec0052a963825f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -65017,8 +65350,8 @@ self: { }: mkDerivation { pname = "distributed-process-supervisor"; - version = "0.1.3.1"; - sha256 = "2e404f040d1a835b6dd77b4888b5d884f45dfda309dcdc04fcaa6988bf1a4786"; + version = "0.1.3.2"; + sha256 = "3e9b9c940afb67d41bb3ec50229ea972ffd386a2e424007b9cbacc361f053df4"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process distributed-process-client-server distributed-process-extras @@ -65089,8 +65422,8 @@ self: { }: mkDerivation { pname = "distributed-process-task"; - version = "0.1.2.1"; - sha256 = "f8dc728ba039c85feae5fd795d22d51aa2c1b7031ad99a772facccad22ae5619"; + version = "0.1.2.2"; + sha256 = "ec25caf01b9185d166433246210be688a9733e73f54b03f91a910eaf2cd05c23"; libraryHaskellDepends = [ base binary containers data-accessor deepseq distributed-process distributed-process-async distributed-process-client-server @@ -65116,20 +65449,21 @@ self: { "distributed-process-tests" = callPackage ({ mkDerivation, ansi-terminal, base, binary, bytestring , distributed-process, distributed-static, HUnit, network - , network-transport, network-transport-tcp, random, rematch, stm - , test-framework, test-framework-hunit + , network-transport, network-transport-inmemory, random, rematch + , setenv, stm, test-framework, test-framework-hunit }: mkDerivation { pname = "distributed-process-tests"; - version = "0.4.3.3"; - sha256 = "fecfbae4d57eb8329486f4e1bfa01c5cbdaff7fed99a0533348f903830609678"; + version = "0.4.4"; + sha256 = "e53f39304100179bbd4e6944348578fe252940170f5ae20ab2ae1c63f8a69169"; libraryHaskellDepends = [ ansi-terminal base binary bytestring distributed-process distributed-static HUnit network network-transport random rematch - stm test-framework test-framework-hunit + setenv stm test-framework test-framework-hunit ]; testHaskellDepends = [ - base network network-transport network-transport-tcp test-framework + base network network-transport network-transport-inmemory + test-framework ]; homepage = "http://github.com/haskell-distributed/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; @@ -65200,7 +65534,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "distributed-static" = callPackage + "distributed-static_0_3_3_0" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , rank1dynamic }: @@ -65214,6 +65548,23 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Compositional, type-safe, polymorphic static values and closures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "distributed-static" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , rank1dynamic + }: + mkDerivation { + pname = "distributed-static"; + version = "0.3.4.0"; + sha256 = "f3d522537946c2e89382f8549674b7abe7adc9aab22acafdf89570f44c508d51"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq rank1dynamic + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Compositional, type-safe, polymorphic static values and closures"; + license = stdenv.lib.licenses.bsd3; }) {}; "distribution" = callPackage @@ -66038,6 +66389,8 @@ self: { pname = "dom-parser"; version = "0.0.1"; sha256 = "5ade4315c5e59bfbaf1e078a1171c6f3109d4f3bd3c394d7ef923140e253f86b"; + revision = "1"; + editedCabalFile = "1157c5f603c43f5a4bd0ea7f45da822b989db065324bbecb2e14659473eb766f"; libraryHaskellDepends = [ base lens mtl semigroups shakespeare text transformers xml-conduit ]; @@ -66971,7 +67324,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dual-tree" = callPackage + "dual-tree_0_2_0_8" = callPackage ({ mkDerivation, base, monoid-extras, newtype, semigroups }: mkDerivation { pname = "dual-tree"; @@ -66980,6 +67333,18 @@ self: { libraryHaskellDepends = [ base monoid-extras newtype semigroups ]; description = "Rose trees with cached and accumulating monoidal annotations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dual-tree" = callPackage + ({ mkDerivation, base, monoid-extras, newtype, semigroups }: + mkDerivation { + pname = "dual-tree"; + version = "0.2.0.9"; + sha256 = "5e7d0abb471962df00c5adc53fa9a48f70c9695d5fdf225deecfa040116576a4"; + libraryHaskellDepends = [ base monoid-extras newtype semigroups ]; + description = "Rose trees with cached and accumulating monoidal annotations"; + license = stdenv.lib.licenses.bsd3; }) {}; "dump" = callPackage @@ -67334,7 +67699,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dynamic-state" = callPackage + "dynamic-state_0_2_0_0" = callPackage ({ mkDerivation, base, binary, bytestring, hashable , unordered-containers }: @@ -67349,6 +67714,22 @@ self: { ]; description = "Optionally serializable dynamic state keyed by type"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dynamic-state" = callPackage + ({ mkDerivation, base, binary, bytestring, hashable + , unordered-containers + }: + mkDerivation { + pname = "dynamic-state"; + version = "0.2.1.0"; + sha256 = "16094496ec20cddadce64491196000483e757d9011ce756447584a85adf1de05"; + libraryHaskellDepends = [ + base binary bytestring hashable unordered-containers + ]; + description = "Optionally serializable dynamic state keyed by type"; + license = stdenv.lib.licenses.gpl2; }) {}; "dynobud" = callPackage @@ -67670,6 +68051,8 @@ self: { pname = "ed25519"; version = "0.0.5.0"; sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; + revision = "1"; + editedCabalFile = "4e8742cc8e8bf5d078c68c9f550b06566c7a94df3ff3070cfe4c91cbee664f06"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck @@ -68766,8 +69149,8 @@ self: { ({ mkDerivation, base, profunctors }: mkDerivation { pname = "elision"; - version = "0.1.2.0"; - sha256 = "2730a52a00c063e3386b0cca50905f3676a740c97aec8149d56e0def29d583e0"; + version = "0.1.3.2"; + sha256 = "5e40a0b20effd90f65817391b5eefed1450f90794af3a2a2048c46ef1ad00791"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base profunctors ]; @@ -68793,7 +69176,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "elm-bridge" = callPackage + "elm-bridge_0_2_1_0" = callPackage ({ mkDerivation, aeson, base, containers, hspec, QuickCheck , template-haskell, text }: @@ -68808,6 +69191,24 @@ self: { homepage = "http://github.com/agrafix/elm-bridge"; description = "Derive Elm types from Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "elm-bridge" = callPackage + ({ mkDerivation, aeson, base, containers, hspec, QuickCheck + , template-haskell, text + }: + mkDerivation { + pname = "elm-bridge"; + version = "0.2.1.1"; + sha256 = "caafa2706908f371004810cba472dabdfca4360b31fa6ba43414aacc433b6737"; + libraryHaskellDepends = [ aeson base template-haskell ]; + testHaskellDepends = [ + aeson base containers hspec QuickCheck text + ]; + homepage = "http://github.com/agrafix/elm-bridge"; + description = "Derive Elm types from Haskell types"; + license = stdenv.lib.licenses.bsd3; }) {}; "elm-build-lib" = callPackage @@ -68998,15 +69399,14 @@ self: { }: mkDerivation { pname = "elm-init"; - version = "1.0.3"; - sha256 = "cf185ec4ce23944dcd33ac7f364cb549182f53acfa79fc843789ca0bd7b38f8b"; + version = "1.0.4"; + sha256 = "39f8ec1e64c1a5025f4568ff59b52470e846d777f3cd343176b7a25d672989d3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson aeson-pretty base base-unicode-symbols bytestring containers directory file-embed filepath process text time ]; - jailbreak = true; description = "Set up basic structure for an elm project"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -70267,8 +70667,8 @@ self: { }: mkDerivation { pname = "erlang"; - version = "0.2"; - sha256 = "90c5c2081472ec2fdf7d7b1ac3d89169479590af7679a071a05dd7cbf6a14250"; + version = "0.2.1"; + sha256 = "7322f24dcc10cfde8a2f9afa6835893b93b7b4c3e20f7514a24ca6d169b7f334"; libraryHaskellDepends = [ base binary bytestring directory filepath MissingH network random ]; @@ -70821,7 +71221,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "esqueleto" = callPackage + "esqueleto_2_4_2" = callPackage ({ mkDerivation, base, blaze-html, bytestring, conduit, containers , hspec, HUnit, monad-control, monad-logger, persistent , persistent-sqlite, persistent-template, QuickCheck, resourcet @@ -70843,9 +71243,10 @@ self: { homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "esqueleto_2_4_3" = callPackage + "esqueleto" = callPackage ({ mkDerivation, base, blaze-html, bytestring, conduit, containers , hspec, HUnit, monad-control, monad-logger, persistent , persistent-sqlite, persistent-template, QuickCheck, resourcet @@ -70867,7 +71268,6 @@ self: { homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ess" = callPackage @@ -72688,6 +73088,7 @@ self: { sha256 = "3ce6a7298e92c836272d71fb9f604cb37d2c90a2394720c6b67c1b6f21063c54"; libraryHaskellDepends = [ base base-prelude split X11 ]; librarySystemDepends = [ libXtst ]; + jailbreak = true; homepage = "http://github.com/aelve/fake-type"; description = "A crossplatform library to simulate keyboard input"; license = stdenv.lib.licenses.bsd3; @@ -73984,7 +74385,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fclabels" = callPackage + "fclabels_2_0_2_4" = callPackage ({ mkDerivation, base, HUnit, mtl, template-haskell, transformers }: mkDerivation { @@ -73998,6 +74399,23 @@ self: { homepage = "https://github.com/sebastiaanvisser/fclabels"; description = "First class accessor labels implemented as lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "fclabels" = callPackage + ({ mkDerivation, base, HUnit, mtl, template-haskell, transformers + }: + mkDerivation { + pname = "fclabels"; + version = "2.0.3"; + sha256 = "b43e4dcc9000be435145b13b97e0997ec1fb8291ec0af8f18cf2a2b696d9ce43"; + libraryHaskellDepends = [ base mtl template-haskell transformers ]; + testHaskellDepends = [ + base HUnit mtl template-haskell transformers + ]; + homepage = "https://github.com/sebastiaanvisser/fclabels"; + description = "First class accessor labels implemented as lenses"; + license = stdenv.lib.licenses.bsd3; }) {}; "fclabels-monadlib" = callPackage @@ -74269,8 +74687,8 @@ self: { }: mkDerivation { pname = "feed-collect"; - version = "0.2.0.1"; - sha256 = "8a3c57faec9f0e3df17fe9ad7ebf64e09973f1e485906378365b4f6c5395b81b"; + version = "0.2.0.2"; + sha256 = "87671ac61228d4b40337c5128528550511e05bc84484dabb8188fa16d5cb9b35"; libraryHaskellDepends = [ base data-default-class feed http-client http-client-tls time time-interval time-units timerep transformers utf8-string @@ -74591,7 +75009,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fft" = callPackage + "fft_0_1_8_2" = callPackage ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable , QuickCheck, storable-complex, syb, transformers }: @@ -74607,9 +75025,10 @@ self: { doCheck = false; description = "Bindings to the FFTW library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fft_0_1_8_3" = callPackage + "fft" = callPackage ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable , QuickCheck, storable-complex, syb, transformers }: @@ -74622,9 +75041,9 @@ self: { ]; libraryPkgconfigDepends = [ fftw fftwFloat ]; testHaskellDepends = [ base carray QuickCheck storable-complex ]; + doCheck = false; description = "Bindings to the FFTW library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; "fftwRaw" = callPackage @@ -75303,12 +75722,12 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "filtrable"; - version = "0.1.0.2"; - sha256 = "85ae076585fa58f4ec546287e74e8327e599c1ff686d15839294138e2f02dc35"; + version = "0.1.0.4"; + sha256 = "85285317f86c6e4e7329d74bf6b2116ab203f810ac2b5ebde251f920c3098d53"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/strake/filtrable.hs"; description = "Class of filtrable containers"; - license = "unknown"; + license = stdenv.lib.licenses.bsd3; }) {}; "final" = callPackage @@ -75908,15 +76327,15 @@ self: { "fixfile" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, exceptions, filepath, hashable, hashtables, lens, mtl - , QuickCheck, tasty, tasty-quickcheck, temporary + , QuickCheck, tasty, tasty-quickcheck, temporary, vector }: mkDerivation { pname = "fixfile"; - version = "0.1.0.0"; - sha256 = "f52739e9ecd4b018fa1744890a3fb185da003b08c1244b748719ea657c36321a"; + version = "0.2.0.0"; + sha256 = "7cc1313702089f3b559a9e167ff83ea1ab91406f57500c567d69672c3f85ecfe"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath hashable - hashtables lens mtl temporary + hashtables lens mtl temporary vector ]; testHaskellDepends = [ base binary bytestring directory exceptions lens mtl QuickCheck @@ -76975,8 +77394,8 @@ self: { }: mkDerivation { pname = "foldl-transduce"; - version = "0.5.1.0"; - sha256 = "05dd7d6cc6fd8bd925346d631a287fbef24e04dd25be0228ad7a723666d33160"; + version = "0.5.2.0"; + sha256 = "c3d8e0ec48ab53c60dac03c7784b508b82da23a6e746b4f856415dbfe359a9b7"; libraryHaskellDepends = [ base bifunctors bytestring comonad containers foldl free monoid-subclasses profunctors semigroupoids semigroups split text @@ -78377,20 +78796,23 @@ self: { }) {}; "freesound" = callPackage - ({ mkDerivation, base, bytestring, curl, data-accessor - , data-accessor-template, directory, mtl, xml + ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers + , data-default, filepath, hspec, hspec-core, http-types, lens, mtl + , network, network-uri, old-locale, text, time, transformers, wreq }: mkDerivation { pname = "freesound"; - version = "0.1.0"; - sha256 = "9ebdb823d8bf3979cfc1904a31b167f51d01ad481f8fec702983492d0cc36428"; - isLibrary = true; - isExecutable = true; + version = "0.3.0"; + sha256 = "be22e47c2e0ff3d72b243003ad21b1817d24e310ea8cdd94818ed5763db43e0f"; libraryHaskellDepends = [ - base bytestring curl data-accessor data-accessor-template directory - mtl xml + aeson base blaze-builder bytestring data-default filepath + http-types lens mtl network network-uri old-locale text time + transformers wreq ]; - homepage = "http://code.haskell.org/~StefanKersten/code/freesound"; + testHaskellDepends = [ + aeson base bytestring containers data-default hspec hspec-core + ]; + homepage = "https://github.com/kaoskorobase/freesound"; description = "Access the Freesound Project database"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -80127,8 +80549,8 @@ self: { ({ mkDerivation, base, containers, ghc-prim, template-haskell }: mkDerivation { pname = "generic-deriving"; - version = "1.10.0"; - sha256 = "8378c23213efdba77c3ebbe95e679f64a1e57c511475e69d9b31dda8420d7ae4"; + version = "1.10.2"; + sha256 = "ac5c16be3ff2484bdc5b0051b5af8ed6e31fee8ede2977904a1535ad56b8d9b8"; libraryHaskellDepends = [ base containers ghc-prim template-haskell ]; @@ -81546,7 +81968,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghc-session" = callPackage + "ghc-session_0_1_2_0" = callPackage ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths , transformers, transformers-compat }: @@ -81564,6 +81986,27 @@ self: { homepage = "http://github.com/pmlodawski/ghc-session"; description = "Simplified GHC API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-session" = callPackage + ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths + , transformers, transformers-compat + }: + mkDerivation { + pname = "ghc-session"; + version = "0.1.2.1"; + sha256 = "c1e517fa3fe4fc12ce2d371a8a8b1e50fd1ec22edc94203f0566b23f501e6d0b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base exceptions ghc ghc-mtl ghc-paths transformers + transformers-compat + ]; + executableHaskellDepends = [ base transformers ]; + homepage = "http://github.com/pmlodawski/ghc-session"; + description = "Simplified GHC API"; + license = stdenv.lib.licenses.mit; }) {}; "ghc-simple" = callPackage @@ -81769,15 +82212,15 @@ self: { "ghc-vis" = callPackage ({ mkDerivation, base, cairo, containers, deepseq, fgl - , ghc-heap-view, graphviz, gtk, mtl, svgcairo, text, transformers + , ghc-heap-view, graphviz, gtk3, mtl, svgcairo, text, transformers , xdot }: mkDerivation { pname = "ghc-vis"; - version = "0.7.2.9"; - sha256 = "e0ea3da85c0e32b446f682114de92df548fc230c24a33683c339f110632043ae"; + version = "0.8"; + sha256 = "e8e808c0155396ba391da1f3289df042088aa7af432ae554964ea4896e1c870d"; libraryHaskellDepends = [ - base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl + base cairo containers deepseq fgl ghc-heap-view graphviz gtk3 mtl svgcairo text transformers xdot ]; homepage = "http://felsin9.de/nnis/ghc-vis"; @@ -81841,8 +82284,8 @@ self: { pname = "ghci-ng"; version = "10.0.0"; sha256 = "a78909a528b79ec14649c528bb47bbec02c535b75b654978a97359e7c9bd39dd"; - revision = "1"; - editedCabalFile = "257b623b74af9d15e3b9539156fe411d3b13fb8da9fe6c6d8f84c1f7645d114f"; + revision = "3"; + editedCabalFile = "0deaf1cd57dd29c65fe31d4679d171336a07382cede88770f36e6d24cb3568cc"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -82466,18 +82909,19 @@ self: { "ginger" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, filepath - , mtl, parsec, safe, scientific, text, transformers - , unordered-containers, vector + , http-types, mtl, parsec, safe, scientific, text, transformers + , unordered-containers, utf8-string, vector }: mkDerivation { pname = "ginger"; - version = "0.1.0.0"; - sha256 = "9b8f513b92c8e4ae179c75fe7f4fb675cf870dc53d3a02df51b5ec9336a39331"; + version = "0.1.2.0"; + sha256 = "ab23b63975f0e6ea9819c303b73bb4633840ecf8fbcd9c4bd6746fed7c61e613"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring data-default filepath mtl parsec safe - scientific text transformers unordered-containers vector + aeson base bytestring data-default filepath http-types mtl parsec + safe scientific text transformers unordered-containers utf8-string + vector ]; executableHaskellDepends = [ aeson base bytestring data-default text transformers @@ -82938,71 +83382,6 @@ self: { inherit (pkgs) which;}; "git-annex" = callPackage - ({ mkDerivation, aeson, async, aws, base, blaze-builder - , bloomfilter, bup, byteable, bytestring, case-insensitive - , clientsession, concurrent-output, conduit, conduit-extra - , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus - , directory, dlist, dns, edit-distance, esqueleto, exceptions - , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify - , hslogger, http-client, http-conduit, http-types, IfElse, json - , lsof, MissingH, monad-control, monad-logger, mtl, network - , network-info, network-multicast, network-protocol-xmpp - , network-uri, old-locale, openssh, optparse-applicative - , path-pieces, perl, persistent, persistent-sqlite - , persistent-template, process, QuickCheck, random, regex-tdfa - , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare - , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun - , template-haskell, text, time, torrent, transformers, unix - , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls - , wget, which, xml-types, yesod, yesod-core, yesod-default - , yesod-form, yesod-static - }: - mkDerivation { - pname = "git-annex"; - version = "6.20160126"; - sha256 = "dc59f670a3d0bdb90db8fc6cadba8003708219bb0dc3d56867a9246d825c0d11"; - configureFlags = [ - "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" - "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" - "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp" - "-fwebapp-secure" "-fwebdav" "-fxmpp" - ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson async aws base blaze-builder bloomfilter byteable bytestring - case-insensitive clientsession concurrent-output conduit - conduit-extra containers crypto-api cryptonite data-default DAV - dbus directory dlist dns edit-distance esqueleto exceptions - fdo-notify feed filepath gnutls hinotify hslogger http-client - http-conduit http-types IfElse json MissingH monad-control - monad-logger mtl network network-info network-multicast - network-protocol-xmpp network-uri old-locale optparse-applicative - path-pieces persistent persistent-sqlite persistent-template - process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi - securemem shakespeare stm tasty tasty-hunit tasty-quickcheck - tasty-rerun template-haskell text time torrent transformers unix - unix-compat utf8-string uuid wai wai-extra warp warp-tls xml-types - yesod yesod-core yesod-default yesod-form yesod-static - ]; - executableSystemDepends = [ - bup curl git gnupg lsof openssh perl rsync wget which - ]; - preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; - postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; - installPhase = "make PREFIX=$out CABAL=./Setup BUILDER=./Setup install"; - checkPhase = "./git-annex test"; - enableSharedExecutables = false; - homepage = "http://git-annex.branchable.com/"; - description = "manage files with git, without checking their contents into git"; - license = stdenv.lib.licenses.gpl3; - maintainers = with stdenv.lib.maintainers; [ simons ]; - }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; - inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; - inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; - inherit (pkgs) which;}; - - "git-annex_6_20160211" = callPackage ({ mkDerivation, aeson, async, aws, base, blaze-builder , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, concurrent-output, conduit, conduit-extra @@ -83061,7 +83440,6 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; @@ -83577,8 +83955,8 @@ self: { }: mkDerivation { pname = "gitit"; - version = "0.12.0.1"; - sha256 = "552996f2624ed08cd21a73303d666292f08a1294416d2811f9d57293c9e89506"; + version = "0.12.1"; + sha256 = "c2cf094e7553e1ad6eefe59b4b7d924fe42f31dd51545193b56bcd0596f57d73"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -83594,7 +83972,6 @@ self: { base bytestring directory filepath hslogger HTTP mtl network network-uri syb url utf8-string ]; - jailbreak = true; homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; @@ -86528,15 +86905,16 @@ self: { "gore-and-ash-actor" = callPackage ({ mkDerivation, base, containers, deepseq, exceptions - , gore-and-ash, hashable, mtl, unordered-containers + , gore-and-ash, hashable, mtl, resourcet, transformers + , transformers-base, unordered-containers }: mkDerivation { pname = "gore-and-ash-actor"; - version = "1.1.1.0"; - sha256 = "2f2f9a7bd5b485e1b55e7aa89537c458fbeab66bbd259d8599f19cbf7b94bbd2"; + version = "1.2.1.0"; + sha256 = "7769718f402328fb3ae3ea268d8da5398f897cd7c3702372b8a9a1f560cc9360"; libraryHaskellDepends = [ base containers deepseq exceptions gore-and-ash hashable mtl - unordered-containers + resourcet transformers transformers-base unordered-containers ]; homepage = "https://github.com/Teaspot-Studio/gore-and-ash-actor"; description = "Gore&Ash engine extension that implements actor style of programming"; @@ -86545,16 +86923,17 @@ self: { "gore-and-ash-async" = callPackage ({ mkDerivation, async, base, containers, deepseq, exceptions - , gore-and-ash, hashable, HUnit, mtl, test-framework - , test-framework-hunit, transformers, unordered-containers + , gore-and-ash, hashable, HUnit, mtl, resourcet, test-framework + , test-framework-hunit, transformers, transformers-base + , unordered-containers }: mkDerivation { pname = "gore-and-ash-async"; - version = "1.0.1.0"; - sha256 = "5e9ca4486c074d3bd9de0cb03cb830e6bb6edaba3809ef4ddb8f00b95e628abc"; + version = "1.1.0.0"; + sha256 = "8ed161f2d598e3f84c1ee3a2abe2ed0b8d41f4bcb526467bfbe00ba3cf6edf74"; libraryHaskellDepends = [ async base containers deepseq exceptions gore-and-ash hashable mtl - transformers unordered-containers + resourcet transformers transformers-base unordered-containers ]; testHaskellDepends = [ base containers deepseq exceptions gore-and-ash HUnit mtl @@ -86591,17 +86970,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "gore-and-ash-glfw" = callPackage + ({ mkDerivation, base, deepseq, exceptions, extra, GLFW-b + , gore-and-ash, hashable, mtl, transformers, unordered-containers + }: + mkDerivation { + pname = "gore-and-ash-glfw"; + version = "1.1.0.0"; + sha256 = "e953449a6d07626dddcd347e52d20610b82a89e3ff0eb6e70166dc3e098bb504"; + libraryHaskellDepends = [ + base deepseq exceptions extra GLFW-b gore-and-ash hashable mtl + transformers unordered-containers + ]; + homepage = "https://github.com/Teaspot-Studio/gore-and-ash-glfw"; + description = "Core module for Gore&Ash engine for GLFW input events"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gore-and-ash-logging" = callPackage ({ mkDerivation, base, containers, deepseq, exceptions - , gore-and-ash, mtl, text, text-show, transformers + , gore-and-ash, mtl, resourcet, text, text-show, transformers + , transformers-base }: mkDerivation { pname = "gore-and-ash-logging"; - version = "1.1.1.0"; - sha256 = "c35b4523e7eaaf601684b8c4054b33a787732524d8437c0c6d18abb2ff012fdd"; + version = "1.2.1.0"; + sha256 = "e036991edeaf1ba9eefa57a8668d1793a63bba816ffbf856a001fb5674881293"; libraryHaskellDepends = [ - base containers deepseq exceptions gore-and-ash mtl text text-show - transformers + base containers deepseq exceptions gore-and-ash mtl resourcet text + text-show transformers transformers-base ]; homepage = "https://github.com/Teaspot-Studio/gore-and-ash-logging"; description = "Core module for gore-and-ash with logging utilities"; @@ -86611,17 +87008,19 @@ self: { "gore-and-ash-network" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, exceptions , extra, ghc-prim, gore-and-ash, gore-and-ash-logging, hashable - , integer-gmp, mtl, network, text, text-show, typesafe-endian + , integer-gmp, mtl, network, resourcet, text, text-show + , transformers, transformers-base, typesafe-endian , unordered-containers }: mkDerivation { pname = "gore-and-ash-network"; - version = "1.2.2.0"; - sha256 = "29e057aa8fefad346800af73419310024cf363641012a538d3e4f9bd68eec9c7"; + version = "1.3.2.0"; + sha256 = "7093854a9ceb887bd7b58cad8d79d46ed632609f54bdfb2c7a2dcefe7296f4d2"; libraryHaskellDepends = [ base bytestring containers deepseq exceptions extra ghc-prim gore-and-ash gore-and-ash-logging hashable integer-gmp mtl network - text text-show typesafe-endian unordered-containers + resourcet text text-show transformers transformers-base + typesafe-endian unordered-containers ]; homepage = "https://github.com/Teaspot-Studio/gore-and-ash-network"; description = "Core module for Gore&Ash engine with low level network API"; @@ -86630,16 +87029,17 @@ self: { "gore-and-ash-sdl" = callPackage ({ mkDerivation, base, containers, deepseq, exceptions - , gore-and-ash, lens, linear, mtl, sdl2, text, transformers - , unordered-containers + , gore-and-ash, lens, linear, mtl, resourcet, sdl2, text + , transformers, transformers-base, unordered-containers }: mkDerivation { pname = "gore-and-ash-sdl"; - version = "2.0.0.0"; - sha256 = "0a351f7be59a61ea6f9b1c535c259c94ef4420a45d09fd6b79515948cd7636ec"; + version = "2.1.0.0"; + sha256 = "2c8ec109e234cbaef34ac6b72a7a5182437a0f0473006d033cd51102d868294d"; libraryHaskellDepends = [ base containers deepseq exceptions gore-and-ash lens linear mtl - sdl2 text transformers unordered-containers + resourcet sdl2 text transformers transformers-base + unordered-containers ]; homepage = "git@github.com:Teaspot-Studio/gore-and-ash-sdl.git"; description = "Gore&Ash core module for integration with SDL library"; @@ -86649,17 +87049,19 @@ self: { "gore-and-ash-sync" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, deepseq , exceptions, gore-and-ash, gore-and-ash-actor - , gore-and-ash-logging, gore-and-ash-network, hashable, mtl, text + , gore-and-ash-logging, gore-and-ash-network, hashable, mtl + , resourcet, text, transformers, transformers-base , unordered-containers }: mkDerivation { pname = "gore-and-ash-sync"; - version = "1.1.1.0"; - sha256 = "2b83fd24a3c4d671f513a3e229289fc548f2ad6c5cee8a0f08fde6383ff33411"; + version = "1.2.0.0"; + sha256 = "719827da28924991b85d8d3aca1ca5fe1ebdb77d3d32154bdfc1790928015769"; libraryHaskellDepends = [ base bytestring cereal containers deepseq exceptions gore-and-ash gore-and-ash-actor gore-and-ash-logging gore-and-ash-network - hashable mtl text unordered-containers + hashable mtl resourcet text transformers transformers-base + unordered-containers ]; homepage = "https://github.com/Teaspot-Studio/gore-and-ash-sync"; description = "Gore&Ash module for high level network synchronization"; @@ -87345,17 +87747,17 @@ self: { }) {}; "graphmod" = callPackage - ({ mkDerivation, base, containers, directory, dotgen, filepath - , haskell-lexer + ({ mkDerivation, base, Cabal, containers, directory, dotgen + , filepath, haskell-lexer }: mkDerivation { pname = "graphmod"; - version = "1.2.8"; - sha256 = "e4fe1c418f8c975581cbfaf2ada04ad69d6f70cc0ded8c3603e2179d03d3c2fc"; + version = "1.2.9"; + sha256 = "2e9af4e92a2cad0fc4132060bcf61bdbed28bde50b3ca5d1cadb9db37d1493d9"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base containers directory dotgen filepath haskell-lexer + base Cabal containers directory dotgen filepath haskell-lexer ]; homepage = "http://github.com/yav/graphmod/wiki"; description = "Present the module dependencies of a program as a \"dot\" graph"; @@ -87521,6 +87923,7 @@ self: { testHaskellDepends = [ base containers fgl fgl-arbitrary filepath QuickCheck text ]; + doCheck = false; homepage = "http://projects.haskell.org/graphviz/"; description = "Bindings to Graphviz for graph visualisation"; license = stdenv.lib.licenses.bsd3; @@ -87709,19 +88112,36 @@ self: { }: mkDerivation { pname = "grid"; - version = "7.8.4"; - sha256 = "53ac474ffa42149d2a34ef40ff69b934d95fc03f2d920219c5611a1a521091c9"; + version = "7.8.5"; + sha256 = "dc5841ddffcc2dacd6667031fc78d2c0df86a7c8e112b76ba134831e84741fb8"; libraryHaskellDepends = [ base cereal containers ]; testHaskellDepends = [ base containers QuickCheck test-framework test-framework-quickcheck2 ]; - jailbreak = true; homepage = "https://github.com/mhwombat/grid"; description = "Tools for working with regular grids (graphs, lattices)"; license = stdenv.lib.licenses.bsd3; }) {}; + "gridfs" = callPackage + ({ mkDerivation, base, bson, bytestring, conduit, conduit-extra + , monad-control, mongoDB, mtl, pureMD5, resourcet, tagged, text + , time, transformers + }: + mkDerivation { + pname = "gridfs"; + version = "0.1.0.2"; + sha256 = "e5230fd91b586e3760f56e7f94ab334886784302395cf392246d452ce3c248c5"; + libraryHaskellDepends = [ + base bson bytestring conduit conduit-extra monad-control mongoDB + mtl pureMD5 resourcet tagged text time transformers + ]; + homepage = "http://github.com/btubbs/haskell-gridfs#readme"; + description = "GridFS (MongoDB file storage) implementation"; + license = "unknown"; + }) {}; + "gridland" = callPackage ({ mkDerivation, array, astar, base, containers, grid, htiled, mtl , random, safe, SDL, SDL-gfx, SDL-image, SDL-mixer, tuple, vector @@ -91946,6 +92366,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hakyll-filestore" = callPackage + ({ mkDerivation, base, filestore, hakyll, time, time-locale-compat + }: + mkDerivation { + pname = "hakyll-filestore"; + version = "0.1.0"; + sha256 = "3e7c848197a12c83af870000a78ffa89e77eb55b13f957c2a4cc8491d9351b60"; + libraryHaskellDepends = [ + base filestore hakyll time time-locale-compat + ]; + homepage = "https://gitlab.com/aergus/hakyll-filestore"; + description = "FileStore utilities for Hakyll"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "hakyll-sass" = callPackage ({ mkDerivation, base, data-default-class, filepath, hakyll, hsass }: @@ -92632,7 +93067,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-authenticate" = callPackage + "happstack-authenticate_2_3_3" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers , data-default, email-validate, filepath, happstack-hsp @@ -92659,6 +93094,36 @@ self: { homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "happstack-authenticate" = callPackage + ({ mkDerivation, acid-state, aeson, authenticate, base + , base64-bytestring, boomerang, bytestring, containers + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th + }: + mkDerivation { + pname = "happstack-authenticate"; + version = "2.3.4"; + sha256 = "e844770a331e5a9fcd64e62ccaaf5c6509afed01ed871306e6da630b48b8be43"; + libraryHaskellDepends = [ + acid-state aeson authenticate base base64-bytestring boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang + web-routes-happstack web-routes-hsp web-routes-th + ]; + homepage = "http://www.happstack.com/"; + description = "Happstack Authentication Library"; + license = stdenv.lib.licenses.bsd3; }) {}; "happstack-clientsession" = callPackage @@ -94920,7 +95385,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-neo4j-client" = callPackage + "haskell-neo4j-client_0_3_2_0" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , data-default, hashable, HTTP, http-client, http-conduit , http-types, HUnit, lifted-base, mtl, network-uri, QuickCheck @@ -94950,6 +95415,39 @@ self: { homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-neo4j-client" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, containers + , data-default, hashable, HTTP, http-client, http-conduit + , http-types, HUnit, lifted-base, mtl, network-uri, QuickCheck + , resourcet, scientific, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th, text, transformers + , transformers-base, transformers-compat, unordered-containers + , vector + }: + mkDerivation { + pname = "haskell-neo4j-client"; + version = "0.3.2.1"; + sha256 = "9485f69dee0c77ca08d51108188440a2696ef2ba08e7b45237fb38c523623d73"; + libraryHaskellDepends = [ + aeson base bytestring containers data-default hashable HTTP + http-client http-conduit http-types lifted-base mtl network-uri + resourcet scientific text transformers transformers-base + transformers-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring Cabal data-default hashable HTTP http-client + http-conduit http-types HUnit lifted-base mtl network-uri + QuickCheck resourcet scientific test-framework test-framework-hunit + test-framework-quickcheck2 test-framework-th text transformers + transformers-base transformers-compat unordered-containers vector + ]; + doCheck = false; + homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client"; + description = "A Haskell neo4j client"; + license = stdenv.lib.licenses.mit; }) {}; "haskell-openflow" = callPackage @@ -97033,8 +97531,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "0.19.7"; - sha256 = "d7fd13c5b31de9e0df8531915de9e50087dd97560b1e9d8a82b8279e1763c239"; + version = "0.19.8"; + sha256 = "34eaaa18216ba49621f7cf4ae5202299c8e2b57b460ac45a8dc161a159a564d1"; libraryHaskellDepends = [ aeson attoparsec base base-prelude bytestring contravariant contravariant-extras data-default-class dlist either hashable @@ -97054,38 +97552,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hasql_0_19_8" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring - , contravariant, contravariant-extras, data-default-class, dlist - , either, hashable, hashtables, loch-th, mtl, placeholders - , postgresql-binary, postgresql-libpq, profunctors, QuickCheck - , quickcheck-instances, scientific, tasty, tasty-hunit - , tasty-quickcheck, tasty-smallcheck, text, time, transformers - , uuid, vector - }: - mkDerivation { - pname = "hasql"; - version = "0.19.8"; - sha256 = "34eaaa18216ba49621f7cf4ae5202299c8e2b57b460ac45a8dc161a159a564d1"; - libraryHaskellDepends = [ - aeson attoparsec base base-prelude bytestring contravariant - contravariant-extras data-default-class dlist either hashable - hashtables loch-th mtl placeholders postgresql-binary - postgresql-libpq profunctors scientific text time transformers uuid - vector - ]; - testHaskellDepends = [ - base base-prelude bytestring contravariant contravariant-extras - data-default-class dlist either hashable profunctors QuickCheck - quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck - tasty-smallcheck text time transformers uuid vector - ]; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "A very efficient PostgreSQL driver and a flexible mapping API"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hasql-backend_0_2_1" = callPackage ({ mkDerivation, base, base-prelude, bytestring, list-t, text , vector @@ -97195,6 +97661,7 @@ self: { libraryHaskellDepends = [ base-prelude bytestring either free list-t text transformers vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/hasql-backend"; description = "API for backends of \"hasql\""; @@ -97212,6 +97679,7 @@ self: { libraryHaskellDepends = [ base-prelude hasql hasql-pool optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; description = "\"optparse-applicative\" parsers for \"hasql\""; license = stdenv.lib.licenses.mit; @@ -97224,6 +97692,7 @@ self: { version = "0.4"; sha256 = "6bb18b7f41a471e0260a60ecd0a4495ccef111e3151d0b3e55ae5e3865c3850e"; libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-pool"; description = "A pool of connections for Hasql"; license = stdenv.lib.licenses.mit; @@ -97562,6 +98031,7 @@ self: { libraryHaskellDepends = [ base-prelude hasql-postgres optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-postgres-options"; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = stdenv.lib.licenses.mit; @@ -97578,6 +98048,7 @@ self: { libraryHaskellDepends = [ base-prelude bytestring template-haskell text ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-th"; description = "Template Haskell utilities for Hasql"; license = stdenv.lib.licenses.mit; @@ -97598,6 +98069,7 @@ self: { contravariant-extras either hasql mtl postgresql-error-codes transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-transaction"; description = "A composable abstraction over the retryable transactions for Hasql"; license = stdenv.lib.licenses.mit; @@ -98521,19 +98993,20 @@ self: { }) {}; "hcoap" = callPackage - ({ mkDerivation, async, base, binary, bytestring, HUnit, mtl - , network, QuickCheck, random, stm, time + ({ mkDerivation, async, base, binary, bytestring, dns, HUnit + , iproute, mtl, network, network-uri, QuickCheck, random, stm, time }: mkDerivation { pname = "hcoap"; - version = "0.1.1.0"; - sha256 = "95cbfdd22d8e41da208f5bc8aafcc252e215b56df5db4163401f0f8c71504d8d"; + version = "0.1.2.1"; + sha256 = "eb7c7d22922b758708c4789d53f237b251718a64d163e13807787ad8213782d6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - async base binary bytestring mtl network random stm time + async base binary bytestring dns iproute mtl network network-uri + random stm time ]; - executableHaskellDepends = [ base bytestring network ]; + executableHaskellDepends = [ base bytestring network network-uri ]; testHaskellDepends = [ async base bytestring HUnit network QuickCheck random ]; @@ -100746,6 +101219,7 @@ self: { base binary bytestring monad-control mtl network resource-pool transformers transformers-base unordered-containers ]; + jailbreak = true; description = "A Gearman client for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -101441,8 +101915,8 @@ self: { }: mkDerivation { pname = "hills"; - version = "0.1.2"; - sha256 = "819b990d61f1a42d7d7033950f785412a6dcdb8e62cb5ed1fbf82ff0428f746c"; + version = "0.1.2.1"; + sha256 = "cf5e5c6a00e48b70c099e2259b4af0f4340f07feb1e3cbe08e3c2e0045f40ca1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -102508,21 +102982,24 @@ self: { }) {}; "hjsonpointer" = callPackage - ({ mkDerivation, aeson, base, http-types, HUnit, test-framework - , test-framework-hunit, text, unordered-containers, vector + ({ mkDerivation, aeson, base, http-types, HUnit, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, unordered-containers, vector }: mkDerivation { pname = "hjsonpointer"; - version = "0.2.0.4"; - sha256 = "8ac317938cc885b01d1165f15671def24e6ceac971413bd494195e77fe0e45b0"; + version = "0.3.0.0"; + sha256 = "9d6ae61f5be1e538a50e1f386b45af3dfb20b0199c61c2b2a643f592f0c78915"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson base text unordered-containers vector + aeson base QuickCheck text unordered-containers vector ]; + executableHaskellDepends = [ aeson base ]; testHaskellDepends = [ aeson base http-types HUnit test-framework test-framework-hunit - text unordered-containers vector + test-framework-quickcheck2 text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/seagreen/hjsonpointer"; description = "JSON Pointer library"; license = stdenv.lib.licenses.mit; @@ -102553,6 +103030,7 @@ self: { aeson async base bytestring directory filepath HUnit test-framework test-framework-hunit text vector wai-app-static warp ]; + jailbreak = true; homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; @@ -104597,7 +105075,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hoauth2" = callPackage + "hoauth2_0_5_2" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, http-conduit , http-types, text, wai, warp }: @@ -104617,6 +105095,29 @@ self: { homepage = "https://github.com/freizl/hoauth2"; description = "Haskell OAuth2 authentication client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hoauth2" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, http-conduit + , http-types, text, wai, warp + }: + mkDerivation { + pname = "hoauth2"; + version = "0.5.3"; + sha256 = "650c867a16801120065c67a32fd5c3c60a0f083411c95273c8108e694bde3332"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring http-conduit http-types text + ]; + executableHaskellDepends = [ + aeson base bytestring containers http-conduit http-types text wai + warp + ]; + homepage = "https://github.com/freizl/hoauth2"; + description = "Haskell OAuth2 authentication client"; + license = stdenv.lib.licenses.bsd3; }) {}; "hob" = callPackage @@ -106324,13 +106825,13 @@ self: { "hpack" = callPackage ({ mkDerivation, aeson, aeson-qq, base, base-compat, deepseq - , directory, filepath, Glob, hspec, interpolate, mockery, text - , unordered-containers, yaml + , directory, filepath, Glob, hspec, interpolate, mockery, temporary + , text, unordered-containers, yaml }: mkDerivation { pname = "hpack"; - version = "0.8.0"; - sha256 = "cd5f5cac842cfedb187f25b8932020e6f9e7c287d0477393330050af0d8e20db"; + version = "0.9.0"; + sha256 = "8f8f40556c84e949895c50253c2d84c758ac8d452921a6e3ddd5dd6daeadc8a2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -106343,8 +106844,9 @@ self: { ]; testHaskellDepends = [ aeson aeson-qq base base-compat deepseq directory filepath Glob - hspec interpolate mockery text unordered-containers yaml + hspec interpolate mockery temporary text unordered-containers yaml ]; + jailbreak = true; homepage = "https://github.com/sol/hpack#readme"; description = "An alternative format for Haskell packages"; license = stdenv.lib.licenses.mit; @@ -106575,6 +107077,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hpdft" = callPackage + ({ mkDerivation, base, bytestring, directory, parsec, text + , utf8-string, zlib + }: + mkDerivation { + pname = "hpdft"; + version = "0.1.0.1"; + sha256 = "eef161524fb320b84fa9183c804a08bf2a3442308f226790f5b3f9c16055b5be"; + libraryHaskellDepends = [ + base bytestring directory parsec text utf8-string zlib + ]; + homepage = "https://github.com/k16shikano/hpdft"; + description = "tools to poke pdf using haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "hplayground" = callPackage ({ mkDerivation, base, containers, data-default, haste-compiler , haste-perch, monads-tf, transformers @@ -108535,8 +109053,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.1.6.0"; - sha256 = "93a1bd6462f45d9abf39cba0479f519f562c62d4bc30a3df3153314b7d300345"; + version = "0.1.6.3"; + sha256 = "57e43ec24f607dee63ebf9655b30ceafe4c80967b88a5739da806a37633221ab"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -110342,7 +110860,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hspec-megaparsec" = callPackage + "hspec-megaparsec_0_1_0" = callPackage ({ mkDerivation, base, hspec, hspec-expectations, megaparsec }: mkDerivation { pname = "hspec-megaparsec"; @@ -110353,6 +110871,20 @@ self: { homepage = "https://github.com/mrkkrp/hspec-megaparsec"; description = "Utility functions for testing Megaparsec parsers with Hspec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-megaparsec" = callPackage + ({ mkDerivation, base, hspec, hspec-expectations, megaparsec }: + mkDerivation { + pname = "hspec-megaparsec"; + version = "0.1.1"; + sha256 = "4ff4683bdff9a3b0ba8a6ee1adfce01f30f8515f9db487b062e5e00e5a2795c5"; + libraryHaskellDepends = [ base hspec-expectations megaparsec ]; + testHaskellDepends = [ base hspec hspec-expectations megaparsec ]; + homepage = "https://github.com/mrkkrp/hspec-megaparsec"; + description = "Utility functions for testing Megaparsec parsers with Hspec"; + license = stdenv.lib.licenses.bsd3; }) {}; "hspec-meta_2_0_0" = callPackage @@ -111820,6 +112352,7 @@ self: { testHaskellDepends = [ base base-prelude directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/html-tokenizer"; description = "An \"attoparsec\"-based HTML tokenizer"; license = stdenv.lib.licenses.mit; @@ -113338,12 +113871,11 @@ self: { pname = "http-encodings"; version = "0.9.3"; sha256 = "76dbd6c38d885cc6d260b59945cc0cd6c6087bb078a01be5384a2e2f14fe492c"; - revision = "2"; - editedCabalFile = "0370852e7250c2c2bb1575155286442cbfcdd03a7e494dcaa73305d4e84a6c76"; + revision = "3"; + editedCabalFile = "5d6088d3d3691cec6febb92f81d5034a69bcf6d319230d5a478d79cb79b0e6f9"; libraryHaskellDepends = [ base bytestring HTTP iconv mime mtl parsec text utf8-string zlib ]; - jailbreak = true; homepage = "http://github.com/achudnov/http-encodings"; description = "A library for encoding and decoding bodies of HTTP messages"; license = stdenv.lib.licenses.bsd3; @@ -117690,6 +118222,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "imap" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, connection + , data-default, derive, either, exceptions, hslogger, HUnit, list-t + , monadIO, mtl, QuickCheck, random, rolling-queue, stm, stm-delay + , tasty, tasty-hunit, tasty-quickcheck, text, transformers, word8 + }: + mkDerivation { + pname = "imap"; + version = "0.2.0.3"; + sha256 = "912e050ba15043cbc05782bd5a6069d249402f86a41d17e0761fd6153a5a5f88"; + libraryHaskellDepends = [ + attoparsec base bytestring connection data-default derive either + exceptions hslogger list-t monadIO random rolling-queue stm + stm-delay text transformers word8 + ]; + testHaskellDepends = [ + attoparsec base bytestring connection data-default derive either + exceptions hslogger HUnit list-t monadIO mtl QuickCheck random + rolling-queue stm stm-delay tasty tasty-hunit tasty-quickcheck text + transformers word8 + ]; + description = "An efficient IMAP client library, with SSL and streaming"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "imapget" = callPackage ({ mkDerivation, base, bytestring, directory, HaskellNet, HsOpenSSL , network, text @@ -118297,12 +118854,13 @@ self: { }) {}; "inf-interval" = callPackage - ({ mkDerivation, array, base, deepseq, vector }: + ({ mkDerivation, array, base, deepseq, QuickCheck, text, vector }: mkDerivation { pname = "inf-interval"; - version = "0.1.0.0"; - sha256 = "817494d30f229c50dd47b501bfa832bf873f1b90ccdeba844cc50445f0c8791b"; + version = "0.1.0.1"; + sha256 = "7a636cd2a8ba6394fa104f24215b0dc59da0377b47d2d1296b477737e34cb59c"; libraryHaskellDepends = [ array base deepseq vector ]; + testHaskellDepends = [ array base deepseq QuickCheck text vector ]; jailbreak = true; homepage = "https://github.com/RaminHAL9001/inf-interval"; description = "Non-contiguous interval data types with potentially infinite ranges"; @@ -121796,22 +122354,22 @@ self: { }) {}; "jsaddle" = callPackage - ({ mkDerivation, base, glib, gtk3, hslogger, lens, template-haskell - , text, transformers, webkitgtk3, webkitgtk3-javascriptcore + ({ mkDerivation, base, doctest, glib, gtk3, lens, QuickCheck + , template-haskell, text, transformers, vector, webkitgtk3 + , webkitgtk3-javascriptcore }: mkDerivation { pname = "jsaddle"; - version = "0.2.1.0"; - sha256 = "3aebcb9422803265598a027f1e8a63f0f41176a0efdb436bf502d61102754513"; + version = "0.3.0.1"; + sha256 = "91511d9b4df73285f0f060418697028bc5384022da93d6dd9b5573214020aaaf"; libraryHaskellDepends = [ - base lens template-haskell text transformers webkitgtk3 + base glib gtk3 lens template-haskell text transformers webkitgtk3 webkitgtk3-javascriptcore ]; testHaskellDepends = [ - base glib gtk3 hslogger lens template-haskell text transformers - webkitgtk3 webkitgtk3-javascriptcore + base doctest glib gtk3 QuickCheck text vector webkitgtk3 + webkitgtk3-javascriptcore ]; - jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; }) {}; @@ -122191,6 +122749,7 @@ self: { base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras scientific semigroups text ]; + jailbreak = true; homepage = "https://github.com/sannsyn/json-encoder"; description = "A direct-to-bytes single-pass JSON encoder with a declarative DSL"; license = stdenv.lib.licenses.mit; @@ -122274,9 +122833,10 @@ self: { ({ mkDerivation, attoparsec, base-prelude, text }: mkDerivation { pname = "json-pointer"; - version = "0.1"; - sha256 = "2ed39be2da3f9f552fd0897028230236ca82c302c23c087d528b52550bba23c4"; + version = "0.1.1"; + sha256 = "443221a71faa40a5eddf8865a3219b5f48086a4c62efcdea9d468ae934410ee3"; libraryHaskellDepends = [ attoparsec base-prelude text ]; + jailbreak = true; homepage = "https://github.com/sannsyn/json-pointer"; description = "JSON Pointer parsing and interpretation utilities"; license = stdenv.lib.licenses.mit; @@ -122951,8 +123511,8 @@ self: { }: mkDerivation { pname = "judy"; - version = "0.2.3"; - sha256 = "5032d97c798d038ab1991d8bb239c9c1c71ae88bcc396ad8944252b0c5019ca9"; + version = "0.3.0"; + sha256 = "f483c31bcab0383a9db31ec41b527b3125e12ea302e126ec3ce45d2bb6a2cb9d"; libraryHaskellDepends = [ base bytestring ghc-prim ]; librarySystemDepends = [ Judy ]; testHaskellDepends = [ base hspec QuickCheck ]; @@ -123036,6 +123596,7 @@ self: { QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; + doCheck = false; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; @@ -123221,6 +123782,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "kanji" = callPackage + ({ mkDerivation, base, bytestring, containers, microlens, text }: + mkDerivation { + pname = "kanji"; + version = "1.0.0"; + sha256 = "fbee1da853ed627eed6236a1c33086a8ce4ae541fe070aa5ca4c3847928d0c2a"; + libraryHaskellDepends = [ + base bytestring containers microlens text + ]; + homepage = "https://github.com/fosskers/nanq"; + description = "Perform 漢字検定 (National Kanji Exam) level analysis on Japanese Kanji"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "kansas-comet_0_3_1" = callPackage ({ mkDerivation, aeson, base, containers, data-default, scotty, stm , text, time, transformers, unordered-containers @@ -123248,8 +123823,8 @@ self: { pname = "kansas-comet"; version = "0.4"; sha256 = "1f1a4565f2e955b8947bafcb9611789b0ccdf9efdfed8aaa2a2aa162a07339e1"; - revision = "3"; - editedCabalFile = "94126550ee61faf694feaf83218fb9ff4a15dbe08d66403f2833167378842115"; + revision = "5"; + editedCabalFile = "4f00c7ffbc136b1d6176804ddd8214e169e13419ff6c81816e128784ef501cbd"; libraryHaskellDepends = [ aeson base containers data-default-class scotty stm text time transformers unordered-containers @@ -124390,8 +124965,8 @@ self: { }: mkDerivation { pname = "kicad-data"; - version = "0.2.0.0"; - sha256 = "436e0187e8df0a0aae2ba5827c0b607334237f9719475ea1fad626f9aea55e06"; + version = "0.3.0.0"; + sha256 = "6270a5f62dad9920ca169c1c8867f6ba0d2d36e64299cada90d526b4c73d3ee7"; libraryHaskellDepends = [ base ieee754 lens-family parsec parsec-numbers pretty-compact ]; @@ -125493,8 +126068,8 @@ self: { }: mkDerivation { pname = "lambdacube-compiler"; - version = "0.4.0.0"; - sha256 = "745a5593e7a8bf9af194c747a62ad32e16076156841863093b6aefb032b5ac74"; + version = "0.4.0.1"; + sha256 = "4487798702474096e80a7b0582dc9e2feceef4f82155d65226da474e40f7e4b3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -125507,7 +126082,7 @@ self: { optparse-applicative parsec pretty-compact QuickCheck tasty tasty-quickcheck text time vector ]; - jailbreak = true; + doHaddock = false; homepage = "http://lambdacube3d.com"; description = "LambdaCube 3D is a DSL to program GPUs"; license = stdenv.lib.licenses.bsd3; @@ -125598,6 +126173,7 @@ self: { base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw vector vector-algorithms ]; + doHaddock = false; homepage = "http://lambdacube3d.com"; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; @@ -130952,7 +131528,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-t" = callPackage + "list-t_0_4_5_1" = callPackage ({ mkDerivation, base-prelude, HTF, mmorph, monad-control, mtl , mtl-prelude, transformers, transformers-base }: @@ -130970,9 +131546,10 @@ self: { homepage = "https://github.com/nikita-volkov/list-t"; description = "ListT done right"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-t_0_4_6" = callPackage + "list-t" = callPackage ({ mkDerivation, base-prelude, HTF, mmorph, monad-control, mtl , mtl-prelude, transformers, transformers-base }: @@ -130985,10 +131562,10 @@ self: { transformers-base ]; testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; + doCheck = false; homepage = "https://github.com/nikita-volkov/list-t"; description = "ListT done right"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-t-attoparsec" = callPackage @@ -131048,6 +131625,7 @@ self: { libraryHaskellDepends = [ base-prelude bytestring http-client list-t mtl-prelude ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/list-t-http-client"; description = "A streaming HTTP client"; license = stdenv.lib.licenses.mit; @@ -131065,6 +131643,7 @@ self: { base base-prelude bytestring curlhs either list-t mtl-prelude resource-pool stm ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/list-t-libcurl"; description = "A \"libcurl\"-based streaming HTTP client"; license = stdenv.lib.licenses.mit; @@ -132289,6 +132868,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "logict-state" = callPackage + ({ mkDerivation, base, logict, mtl, transformers }: + mkDerivation { + pname = "logict-state"; + version = "0.1.0.0"; + sha256 = "8b4ac063ffada947bfb853c5a4f9e144ad7aba0dbc1e3be3d662a83c19450ad8"; + libraryHaskellDepends = [ base logict mtl transformers ]; + homepage = "https://github.com/atzedijkstra/logict-state"; + description = "Library for logic programming based on haskell package logict"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "logplex-parse" = callPackage ({ mkDerivation, base, hspec, iso8601-time, parsec, text, time }: mkDerivation { @@ -132384,36 +132975,57 @@ self: { }) {}; "lol" = callPackage - ({ mkDerivation, arithmoi, base, constraints, containers - , data-default, deepseq, MonadRandom, mtl, numeric-prelude - , QuickCheck, random, reflection, repa, singletons, storable-record - , storable-tuple, tagged-transformer, test-framework - , test-framework-quickcheck2, th-desugar, time, transformers - , type-natural, vector, vector-th-unbox + ({ mkDerivation, arithmoi, base, binary, bytestring, constraints + , containers, crypto-api, data-default, deepseq, DRBG, MonadRandom + , mtl, numeric-prelude, QuickCheck, random, reflection, repa + , singletons, storable-record, tagged-transformer, template-haskell + , test-framework, test-framework-quickcheck2, th-desugar + , transformers, vector, vector-th-unbox }: mkDerivation { pname = "lol"; - version = "0.1.0.0"; - sha256 = "be1a72e80ca1f3471b1b630f0407fa6e152ce6410ea7aee86fabda002dff12d0"; - revision = "1"; - editedCabalFile = "f70d927711c82b11f9d38d398bf8d450788482693cdbde540331ca50674b8e68"; + version = "0.2.0.0"; + sha256 = "8787dde0e356a8d436fc6dcea548098bb9e92237fc138701582e2f5eabbce564"; libraryHaskellDepends = [ - arithmoi base constraints containers data-default deepseq - MonadRandom mtl numeric-prelude QuickCheck random reflection repa - singletons storable-record storable-tuple tagged-transformer - th-desugar transformers type-natural vector vector-th-unbox + arithmoi base binary bytestring constraints containers crypto-api + data-default deepseq MonadRandom mtl numeric-prelude QuickCheck + random reflection repa singletons storable-record + tagged-transformer template-haskell th-desugar transformers vector + vector-th-unbox ]; testHaskellDepends = [ - base constraints MonadRandom QuickCheck repa test-framework - test-framework-quickcheck2 time type-natural vector + base constraints deepseq DRBG MonadRandom mtl QuickCheck random + repa singletons test-framework test-framework-quickcheck2 vector ]; - jailbreak = true; homepage = "https://github.com/cpeikert/Lol"; description = "A library for lattice cryptography"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "lol-apps" = callPackage + ({ mkDerivation, base, constraints, deepseq, DRBG, lol, MonadRandom + , mtl, numeric-prelude, QuickCheck, random, repa, singletons + , test-framework, test-framework-quickcheck2, vector + }: + mkDerivation { + pname = "lol-apps"; + version = "0.0.0.1"; + sha256 = "988a006f77beb0fdf40ad446d1ae333b93bc60d818e3623f323eb1ff9349d149"; + revision = "1"; + editedCabalFile = "60383b773f8b931df96fac94a014194fcbc8f7f31025471e49e39ffc2b991907"; + libraryHaskellDepends = [ + base deepseq lol MonadRandom numeric-prelude + ]; + testHaskellDepends = [ + base constraints deepseq DRBG lol MonadRandom mtl QuickCheck random + repa singletons test-framework test-framework-quickcheck2 vector + ]; + homepage = "https://github.com/cpeikert/Lol"; + description = "Lattice-based cryptographic applications using Lol"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "loli" = callPackage ({ mkDerivation, base, bytestring, containers, data-default, hack , hack-contrib, mps, mtl, template, utf8-string @@ -133148,7 +133760,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "luminance" = callPackage + "luminance_0_9_1_2" = callPackage ({ mkDerivation, base, containers, contravariant, dlist, gl, linear , mtl, resourcet, semigroups, transformers, vector, void }: @@ -133163,6 +133775,24 @@ self: { homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, type-level and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "luminance" = callPackage + ({ mkDerivation, base, containers, contravariant, dlist, gl, linear + , mtl, resourcet, semigroups, transformers, vector, void + }: + mkDerivation { + pname = "luminance"; + version = "0.10.0.2"; + sha256 = "1892608cde96e81a748c608118f380e8b125f3653af1d743a9ee6ee9a8adb46e"; + libraryHaskellDepends = [ + base containers contravariant dlist gl linear mtl resourcet + semigroups transformers vector void + ]; + homepage = "https://github.com/phaazon/luminance"; + description = "Type-safe, type-level and stateless graphics framework"; + license = stdenv.lib.licenses.bsd3; }) {}; "luminance-samples_0_9" = callPackage @@ -133186,7 +133816,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "luminance-samples" = callPackage + "luminance-samples_0_9_1" = callPackage ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels, linear , luminance, mtl, resourcet, transformers }: @@ -133200,6 +133830,27 @@ self: { base contravariant GLFW-b JuicyPixels linear luminance mtl resourcet transformers ]; + jailbreak = true; + homepage = "https://github.com/phaazon/luminance-samples"; + description = "Luminance samples"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "luminance-samples" = callPackage + ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels, linear + , luminance, mtl, resourcet, transformers + }: + mkDerivation { + pname = "luminance-samples"; + version = "0.10"; + sha256 = "c3f0fec69567be8d32c7a913c4dd9241908666447bfc492cdd24810d4b245d2a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base contravariant GLFW-b JuicyPixels linear luminance mtl + resourcet transformers + ]; homepage = "https://github.com/phaazon/luminance-samples"; description = "Luminance samples"; license = stdenv.lib.licenses.bsd3; @@ -134989,8 +135640,8 @@ self: { }: mkDerivation { pname = "mappy"; - version = "0.1.3.0"; - sha256 = "6446e847c2663f752184b81c9e4f541bc7ada3fc0a8bcde9435a20363a3b72cb"; + version = "0.1.3.1"; + sha256 = "91ddbde2da1c972ec53a92f25d43e5db052b029a77f7b029b3389cae1b938645"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -135865,6 +136516,8 @@ self: { pname = "mbox"; version = "0.3.1"; sha256 = "d172b9d4c57b1138fb27931281deb7562e98312698b5bd784f6c71800434188e"; + revision = "1"; + editedCabalFile = "3d9d819d61351a5adfac1a1224ac81049fa7d809f101070477e28e58d488abb3"; libraryHaskellDepends = [ base safe text time time-locale-compat ]; description = "Read and write standard mailbox files"; license = stdenv.lib.licenses.bsd3; @@ -136212,6 +136865,29 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "megaparsec_4_4_0" = callPackage + ({ mkDerivation, base, bytestring, fail, HUnit, mtl, QuickCheck + , semigroups, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, transformers + }: + mkDerivation { + pname = "megaparsec"; + version = "4.4.0"; + sha256 = "93addf2a1cf14cb88fd67ea9951d8dd76bcb75960936a517b13787ed0e26f310"; + libraryHaskellDepends = [ + base bytestring fail mtl semigroups text transformers + ]; + testHaskellDepends = [ + base HUnit mtl QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 transformers + ]; + jailbreak = true; + homepage = "https://github.com/mrkkrp/megaparsec"; + description = "Monadic parser combinators"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "meldable-heap" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -136585,6 +137261,7 @@ self: { base bytestring cereal containers QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + doCheck = false; homepage = "https://github.com/rodrigosetti/messagepack"; description = "Serialize instance for Message Pack Object"; license = stdenv.lib.licenses.mit; @@ -136958,7 +137635,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens" = callPackage + "microlens_0_4_1_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "microlens"; @@ -136968,6 +137645,19 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "A tiny part of the lens library with no dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microlens" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "microlens"; + version = "0.4.2.0"; + sha256 = "db38765f93e58074475ed50b1e8e941d1fe3396566fd69f809ae954b5d43640c"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/aelve/microlens"; + description = "A tiny part of the lens library with no dependencies"; + license = stdenv.lib.licenses.bsd3; }) {}; "microlens-aeson_2_1_0" = callPackage @@ -137073,7 +137763,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-ghc" = callPackage + "microlens-ghc_0_4_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, microlens , transformers }: @@ -137084,6 +137774,24 @@ self: { libraryHaskellDepends = [ array base bytestring containers microlens transformers ]; + jailbreak = true; + homepage = "http://github.com/aelve/microlens"; + description = "microlens + array, bytestring, containers, transformers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microlens-ghc" = callPackage + ({ mkDerivation, array, base, bytestring, containers, microlens + , transformers + }: + mkDerivation { + pname = "microlens-ghc"; + version = "0.4.2.0"; + sha256 = "65c98674708c55de5a0b9c0913b903f906e4313184b798652817a4205f25b35e"; + libraryHaskellDepends = [ + array base bytestring containers microlens transformers + ]; homepage = "http://github.com/aelve/microlens"; description = "microlens + array, bytestring, containers, transformers"; license = stdenv.lib.licenses.bsd3; @@ -137178,7 +137886,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-platform" = callPackage + "microlens-platform_0_2_2_0" = callPackage ({ mkDerivation, base, hashable, microlens, microlens-ghc , microlens-mtl, microlens-th, text, unordered-containers, vector }: @@ -137190,6 +137898,25 @@ self: { base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector ]; + jailbreak = true; + homepage = "http://github.com/aelve/microlens"; + description = "Feature-complete microlens"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microlens-platform" = callPackage + ({ mkDerivation, base, hashable, microlens, microlens-ghc + , microlens-mtl, microlens-th, text, unordered-containers, vector + }: + mkDerivation { + pname = "microlens-platform"; + version = "0.2.3.0"; + sha256 = "94ad65919ed029a46884a941ba854a836047d059aee6372f6f3915b0d2c86799"; + libraryHaskellDepends = [ + base hashable microlens microlens-ghc microlens-mtl microlens-th + text unordered-containers vector + ]; homepage = "http://github.com/aelve/microlens"; description = "Feature-complete microlens"; license = stdenv.lib.licenses.bsd3; @@ -137245,7 +137972,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-th" = callPackage + "microlens-th_0_3_0_0" = callPackage ({ mkDerivation, base, containers, microlens, template-haskell }: mkDerivation { pname = "microlens-th"; @@ -137259,9 +137986,10 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "Automatic generation of record lenses for microlens"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-th_0_3_0_1" = callPackage + "microlens-th" = callPackage ({ mkDerivation, base, containers, microlens, template-haskell }: mkDerivation { pname = "microlens-th"; @@ -137273,7 +138001,6 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "Automatic generation of record lenses for microlens"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microtimer" = callPackage @@ -137289,16 +138016,16 @@ self: { }) {}; "mida" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , formatting, haskeline, HCodecs, megaparsec, mtl - , optparse-applicative, path, process, QuickCheck, random - , temporary, test-framework, test-framework-quickcheck2, text - , tf-random, transformers + ({ mkDerivation, aeson, base, containers, data-default, exceptions + , filepath, formatting, haskeline, HCodecs, megaparsec, mtl + , optparse-applicative, path, path-io, process, QuickCheck, random + , test-framework, test-framework-quickcheck2, text, tf-random + , transformers, yaml }: mkDerivation { pname = "mida"; - version = "0.4.6"; - sha256 = "453d24262084fbd34e5400599a739ae539f2601cefb9cd1aba0c462e9bf81838"; + version = "1.0.0"; + sha256 = "3fff0b1ce7fcbe948b7ec3f20868cdd7f8737c7eec1355355e0a13bb2fb340e4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -137306,9 +138033,9 @@ self: { text tf-random transformers ]; executableHaskellDepends = [ - base containers directory exceptions filepath formatting haskeline - HCodecs megaparsec mtl optparse-applicative path process random - temporary text tf-random transformers + aeson base containers data-default exceptions filepath formatting + haskeline HCodecs megaparsec mtl optparse-applicative path path-io + process random text tf-random transformers yaml ]; testHaskellDepends = [ base containers HCodecs megaparsec mtl QuickCheck random @@ -137928,12 +138655,16 @@ self: { }) {}; "minilens" = callPackage - ({ mkDerivation, array, base, containers, mtl, transformers }: + ({ mkDerivation, array, base, bytestring, containers, mtl + , semigroups, text, transformers + }: mkDerivation { pname = "minilens"; - version = "0.1.1.1"; - sha256 = "99586ecf220ec1a16c71b03df6da0439b4c711e4ae6b8510cea85473aa12da80"; - libraryHaskellDepends = [ array base containers mtl transformers ]; + version = "1.0.0.1"; + sha256 = "581cd335de2ff83e384c7e250db208b884ac7c44163afacc731f855e2e8d06ce"; + libraryHaskellDepends = [ + array base bytestring containers mtl semigroups text transformers + ]; jailbreak = true; homepage = "https://github.com/RaminHAL9001/minilens"; description = "A minimalistic lens library, providing only the simplest, most basic lens functionality"; @@ -140530,8 +141261,8 @@ self: { pname = "mono-traversable"; version = "0.6.3"; sha256 = "79d2d0e50a71b0be4455b29a37f5416ee7e5ff7c88a6b5e1d6145113458cd808"; - revision = "1"; - editedCabalFile = "e576e7529ec57922cc6356c288f2ce5b80dbe7323e134fc5c268644c85385513"; + revision = "2"; + editedCabalFile = "b6d1d0b8f48138ce8d38b01862c556fa30e72198061f689bd020f8f1fe71d96e"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups text transformers unordered-containers @@ -140557,8 +141288,8 @@ self: { pname = "mono-traversable"; version = "0.7.0"; sha256 = "2402b614158f72c2c7aff654d64036cebb223d2cb261813104064ce4f1d5a404"; - revision = "1"; - editedCabalFile = "0ee31ed93d111cf08f6b5323cd94f6f3a48388c53093ddc0731aeb8f0dad17ec"; + revision = "2"; + editedCabalFile = "e5ecd3bfd2c391001beaa042d93002c06b0e2ba676ee93cacd3de9143edd025c"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups text transformers unordered-containers @@ -140584,8 +141315,8 @@ self: { pname = "mono-traversable"; version = "0.9.1"; sha256 = "ec7700a38f9838daa19a2828673620b6a57bffe4d5cf3b70ae6e4e1a1ba5f843"; - revision = "1"; - editedCabalFile = "28392123a8b245f7bc2c13bb63f5c3008118ed38e107cf0534be37461fb64daf"; + revision = "2"; + editedCabalFile = "94220a010929ffa4b669d797531cbd5b67ae4bbb7432a5b1b3b02f09065bc0c3"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups text transformers unordered-containers @@ -140611,8 +141342,8 @@ self: { pname = "mono-traversable"; version = "0.9.2.1"; sha256 = "34c3827b49e47e83bdbed647ae6ca27e049be8887904007b57b03dc006b542ef"; - revision = "1"; - editedCabalFile = "ab0be6e2bbdc22be03cf722277972a7bd3c11732567fe33f7f12af56a09f533e"; + revision = "2"; + editedCabalFile = "4c2e3ae2b7520b1128c6c467a29bf4113f5e5d966a588a52179190df6637ce40"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups text transformers unordered-containers @@ -140638,8 +141369,8 @@ self: { pname = "mono-traversable"; version = "0.9.3"; sha256 = "d73b495b65cdc3951e2407d07e46b3cb5b3ab074b474c0742687b616f4e7e4db"; - revision = "1"; - editedCabalFile = "021ce075d81cc8dbadfa395895ba0511fc35230f12e1ba409a553eded8c96d1f"; + revision = "2"; + editedCabalFile = "b9de7890b4bb32d2e6e41c6ef1d69e45b721a528350bf8d46acea645d627c9f5"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups split text transformers @@ -140665,8 +141396,35 @@ self: { pname = "mono-traversable"; version = "0.10.0.1"; sha256 = "2e25c24ed3cf644cd4818cfb6d4e122cffcac2a375f0edb544b6814f871af45d"; + revision = "2"; + editedCabalFile = "00a92bc7f9dc2205d1a467ed3b9752787bc45793800eaf77a91f6bd9eee50584"; + libraryHaskellDepends = [ + base bytestring comonad containers dlist dlist-instances hashable + semigroupoids semigroups split text transformers + unordered-containers vector vector-algorithms vector-instances + ]; + testHaskellDepends = [ + base bytestring containers foldl hspec HUnit QuickCheck semigroups + text transformers unordered-containers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Type classes for mapping, folding, and traversing monomorphic containers"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mono-traversable_0_10_1" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers, dlist + , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck + , semigroupoids, semigroups, split, text, transformers + , unordered-containers, vector, vector-algorithms, vector-instances + }: + mkDerivation { + pname = "mono-traversable"; + version = "0.10.1"; + sha256 = "a82e63352ed854319bca7d33e3aa13a42a18648e47d01109f8c306ee54b9418b"; revision = "1"; - editedCabalFile = "49283811dc1e565bdc4a3e7cfd2e3744866906e1267ffb018f3e271c05e2d169"; + editedCabalFile = "9e3d9071851b695eeaa944b8ccecc3f0cad59961a4edb05fa15b4e37eed75235"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups split text transformers @@ -140690,8 +141448,8 @@ self: { }: mkDerivation { pname = "mono-traversable"; - version = "0.10.1"; - sha256 = "a82e63352ed854319bca7d33e3aa13a42a18648e47d01109f8c306ee54b9418b"; + version = "0.10.1.1"; + sha256 = "a15fe3e4c92a6293a8959f77a6054ae85f5a1be049b2f7b07997245d6e6b574b"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups split text transformers @@ -140757,7 +141515,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoid-extras" = callPackage + "monoid-extras_0_4_0_3" = callPackage ({ mkDerivation, base, groups, semigroupoids, semigroups }: mkDerivation { pname = "monoid-extras"; @@ -140766,6 +141524,18 @@ self: { libraryHaskellDepends = [ base groups semigroupoids semigroups ]; description = "Various extra monoid-related definitions and utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monoid-extras" = callPackage + ({ mkDerivation, base, groups, semigroupoids, semigroups }: + mkDerivation { + pname = "monoid-extras"; + version = "0.4.0.4"; + sha256 = "0032553ec9f06f62adc55d46a3b422497769e127cf74a427193bea1626c3b1e9"; + libraryHaskellDepends = [ base groups semigroupoids semigroups ]; + description = "Various extra monoid-related definitions and utilities"; + license = stdenv.lib.licenses.bsd3; }) {}; "monoid-owns" = callPackage @@ -141213,6 +141983,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mountpoints" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "mountpoints"; + version = "1.0.1"; + sha256 = "744abbbda305c0765e15500f9ebf0ad2185fdea1733f43525488acb21b871c80"; + libraryHaskellDepends = [ base ]; + description = "list mount points"; + license = "LGPL"; + }) {}; + "mp" = callPackage ({ mkDerivation, base, binary, bytestring, ConfigFile, daemons , directory, filepath, glib, gstreamer, hgettext, MissingH, mtl @@ -141952,15 +142733,17 @@ self: { }) {}; "multiaddr" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cereal, errors - , hashable, tasty, tasty-hunit, tasty-quickcheck, text + ({ mkDerivation, attoparsec, base, base58-bytestring, bytestring + , cereal, errors, hashable, tasty, tasty-hunit, tasty-quickcheck + , text }: mkDerivation { pname = "multiaddr"; - version = "0.1.0"; - sha256 = "704a76498f4b0e7078151771124ddb1f4facc6e6f3d2d068c2d2f4cc9ac96b8e"; + version = "0.2.0"; + sha256 = "fd8537d3598b92cd662efe6a41554aa88e8bb8f74fff6c1be1df65745d66c46d"; libraryHaskellDepends = [ - attoparsec base bytestring cereal errors hashable text + attoparsec base base58-bytestring bytestring cereal errors hashable + text ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck text @@ -142255,14 +143038,20 @@ self: { }) {}; "multistate" = callPackage - ({ mkDerivation, base, hspec, mtl, tagged, transformers }: + ({ mkDerivation, base, hspec, monad-control, mtl, tagged + , transformers, transformers-base + }: mkDerivation { pname = "multistate"; - version = "0.6.2.0"; - sha256 = "72ffe698f15b9eb3d678f488f1f62cc8addb6bf4e5b23d9a26e28831d6031d69"; + version = "0.7.0.0"; + sha256 = "012cefe6afa33be2285c47538e6d79ba54bcb15328865751209cadbea2a38b75"; + revision = "1"; + editedCabalFile = "c0546d74f2bc0c476714677432693161d63956a2a23fc88a30f7c61239672a9b"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base mtl tagged transformers ]; + libraryHaskellDepends = [ + base monad-control mtl tagged transformers transformers-base + ]; testHaskellDepends = [ base hspec transformers ]; homepage = "https://github.com/lspitzner/multistate"; description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; @@ -142886,7 +143675,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mwc-probability" = callPackage + "mwc-probability_1_0_3" = callPackage ({ mkDerivation, base, mwc-random, primitive, transformers }: mkDerivation { pname = "mwc-probability"; @@ -142896,9 +143685,10 @@ self: { homepage = "http://github.com/jtobin/mwc-probability"; description = "Sampling function-based probability distributions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mwc-probability_1_1_3" = callPackage + "mwc-probability" = callPackage ({ mkDerivation, base, mwc-random, primitive, transformers }: mkDerivation { pname = "mwc-probability"; @@ -142908,7 +143698,6 @@ self: { homepage = "http://github.com/jtobin/mwc-probability"; description = "Sampling function-based probability distributions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mwc-random_0_13_2_2" = callPackage @@ -142976,6 +143765,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "mwc-random_0_13_4_0" = callPackage + ({ mkDerivation, base, HUnit, primitive, QuickCheck, statistics + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , time, vector + }: + mkDerivation { + pname = "mwc-random"; + version = "0.13.4.0"; + sha256 = "c52cfdeab2fe6cae3e2b0de382757372df571b7c25a6712ab205fb784b5a8aea"; + libraryHaskellDepends = [ base primitive time vector ]; + testHaskellDepends = [ + base HUnit QuickCheck statistics test-framework + test-framework-hunit test-framework-quickcheck2 vector + ]; + homepage = "https://github.com/bos/mwc-random"; + description = "Fast, high quality pseudo random number generation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mwc-random-monad" = callPackage ({ mkDerivation, base, monad-primitive, mwc-random, primitive , transformers, vector @@ -143537,21 +144346,18 @@ self: { "nanq" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , extensible-effects, microlens, microlens-aeson + , extensible-effects, kanji, microlens, microlens-aeson , optparse-applicative, text }: mkDerivation { pname = "nanq"; - version = "2.0.0"; - sha256 = "6ff8ecc49b4d98c22fcde78f9895f60e2144efaf9c5323d4f2352fe94b43638c"; - isLibrary = true; + version = "3.0.0"; + sha256 = "fd0ce6e40e6995521a97c0cbe13bd0260adfa21a76230f07cc17e299ca9c131c"; + isLibrary = false; isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers microlens text - ]; executableHaskellDepends = [ aeson aeson-pretty base bytestring containers extensible-effects - microlens microlens-aeson optparse-applicative text + kanji microlens microlens-aeson optparse-applicative text ]; homepage = "https://github.com/fosskers/nanq"; description = "Performs 漢字検定 (National Kanji Exam) level analysis on given Kanji"; @@ -143968,6 +144774,7 @@ self: { base base-prelude parsec template-haskell ]; testHaskellDepends = [ base-prelude HTF ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; @@ -143975,7 +144782,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation" = callPackage + "neat-interpolation_0_3" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell , text }: @@ -143987,9 +144794,11 @@ self: { base base-prelude parsec template-haskell text ]; testHaskellDepends = [ base-prelude HTF ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neat-interpolation_0_3_1" = callPackage @@ -144010,6 +144819,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "neat-interpolation" = callPackage + ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell + , text + }: + mkDerivation { + pname = "neat-interpolation"; + version = "0.3.1.1"; + sha256 = "051a3ee1f9389e2ff1d05dc8f78fc3aae0e50be90ddee1868561ecac095469c9"; + libraryHaskellDepends = [ + base base-prelude parsec template-haskell text + ]; + testHaskellDepends = [ base-prelude HTF ]; + homepage = "https://github.com/nikita-volkov/neat-interpolation"; + description = "A quasiquoter for neat and simple multiline text interpolation"; + license = stdenv.lib.licenses.mit; + }) {}; + "needle" = callPackage ({ mkDerivation, base, containers, haskell-src-meta, mtl, parsec , parsec-extra, template-haskell, text, vector @@ -145644,7 +146470,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-transport" = callPackage + "network-transport_0_4_2_0" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, hashable , transformers }: @@ -145658,6 +146484,23 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Network abstraction layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-transport" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, hashable + , transformers + }: + mkDerivation { + pname = "network-transport"; + version = "0.4.3.1"; + sha256 = "77fd80f672d6cabed4b60cc728f89543500080203cd91b76e07f814baabbd836"; + libraryHaskellDepends = [ + base binary bytestring deepseq hashable transformers + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Network abstraction layer"; + license = stdenv.lib.licenses.bsd3; }) {}; "network-transport-amqp" = callPackage @@ -145762,6 +146605,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "network-transport-tcp_0_5_1" = callPackage + ({ mkDerivation, base, bytestring, containers, data-accessor + , network, network-transport, network-transport-tests + }: + mkDerivation { + pname = "network-transport-tcp"; + version = "0.5.1"; + sha256 = "c4c3d67d08f8213ebc99d369cfeb8813f9dd03def464d6097bed533bfbec7beb"; + libraryHaskellDepends = [ + base bytestring containers data-accessor network network-transport + ]; + testHaskellDepends = [ + base network network-transport network-transport-tests + ]; + homepage = "http://haskell-distributed.github.com"; + description = "TCP instantiation of Network.Transport"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "network-transport-tests_0_2_1_0" = callPackage ({ mkDerivation, ansi-terminal, base, bytestring, containers, mtl , network-transport, random @@ -145781,7 +146644,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-transport-tests" = callPackage + "network-transport-tests_0_2_2_0" = callPackage ({ mkDerivation, ansi-terminal, base, bytestring, containers, mtl , network-transport, random }: @@ -145796,6 +146659,24 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Unit tests for Network.Transport implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-transport-tests" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, containers, mtl + , network-transport, random + }: + mkDerivation { + pname = "network-transport-tests"; + version = "0.2.3.0"; + sha256 = "8277bd97eb7d719891aa6494673506d0d3c7e135c4098f49e17f06b281f53b6c"; + libraryHaskellDepends = [ + ansi-terminal base bytestring containers mtl network-transport + random + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Unit tests for Network.Transport implementations"; + license = stdenv.lib.licenses.bsd3; }) {}; "network-transport-zeromq" = callPackage @@ -146046,6 +146927,7 @@ self: { base base-prelude monad-control template-haskell transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/newtype-deriving"; description = "Instance derivers for newtype wrappers"; license = stdenv.lib.licenses.mit; @@ -146658,8 +147540,8 @@ self: { }: mkDerivation { pname = "not-gloss"; - version = "0.7.6.3"; - sha256 = "8be10e835c2c6a3b55d52ae7f58ebb56eb2d71348c38f2a141eb61c21753108f"; + version = "0.7.6.4"; + sha256 = "a43d0b18834237da91b9ffb44ce23a6fe764b962ed0b3bca56ea01903603534e"; libraryHaskellDepends = [ base binary bmp bytestring cereal GLUT OpenGL OpenGLRaw spatial-math time vector vector-binary-instances @@ -147706,16 +148588,17 @@ self: { }) {}; "oi" = callPackage - ({ mkDerivation, base, comonad, directory, filepath, parallel - , SafeSemaphore - }: + ({ mkDerivation, base, comonad, directory, filepath, parallel }: mkDerivation { pname = "oi"; - version = "0.3.1"; - sha256 = "57d8bf024deb1a4a46c580b89eaa80a394bc4c58fe33e898448c897caeaa0893"; + version = "0.4.0"; + sha256 = "2757014767b21d1938d8acaa4742514457482aa52c47b5fea4ba9e72ea810e32"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base comonad directory filepath parallel SafeSemaphore + base comonad directory filepath parallel ]; + executableHaskellDepends = [ base directory filepath parallel ]; description = "Library for purely functional lazy interactions with the outer world"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -150219,7 +151102,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "palette" = callPackage + "palette_0_1_0_2" = callPackage ({ mkDerivation, array, base, colour, containers }: mkDerivation { pname = "palette"; @@ -150229,6 +151112,19 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Utilities for choosing and creating color schemes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "palette" = callPackage + ({ mkDerivation, array, base, colour, containers }: + mkDerivation { + pname = "palette"; + version = "0.1.0.3"; + sha256 = "f75a713245af54d86cd34ce79f2b6d2d8c35aa7d56c28c07e33465227cdedea1"; + libraryHaskellDepends = [ array base colour containers ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Utilities for choosing and creating color schemes"; + license = stdenv.lib.licenses.bsd3; }) {}; "palindromes" = callPackage @@ -156014,17 +156910,17 @@ self: { "pinboard" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, either , http-client, http-client-tls, http-types, mtl, network - , old-locale, random, text, time, transformers + , old-locale, profunctors, random, text, time, transformers , unordered-containers, vector }: mkDerivation { pname = "pinboard"; - version = "0.9.2"; - sha256 = "a009de2327af08a929503482ffe60700348422807df3e22f2a7e6f98ac0aabda"; + version = "0.9.3"; + sha256 = "82d5200e79ea18df196a5d8543d32f1dcf7e3ff43579590dcba80e78c712c288"; libraryHaskellDepends = [ aeson base bytestring containers either http-client http-client-tls - http-types mtl network old-locale random text time transformers - unordered-containers vector + http-types mtl network old-locale profunctors random text time + transformers unordered-containers vector ]; homepage = "https://github.com/jonschoning/pinboard"; description = "Access to the Pinboard API"; @@ -156408,7 +157304,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-binary" = callPackage + "pipes-binary_0_4_0_5" = callPackage ({ mkDerivation, base, binary, bytestring, ghc-prim , lens-family-core, pipes, pipes-bytestring, pipes-parse , smallcheck, tasty, tasty-hunit, tasty-smallcheck, transformers @@ -156428,6 +157324,29 @@ self: { homepage = "https://github.com/k0001/pipes-binary"; description = "Encode and decode binary streams using the pipes and binary libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-binary" = callPackage + ({ mkDerivation, base, binary, bytestring, ghc-prim + , lens-family-core, pipes, pipes-bytestring, pipes-parse + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, transformers + }: + mkDerivation { + pname = "pipes-binary"; + version = "0.4.1"; + sha256 = "1b6e79748f2579285ba416c02c1461fee394309f79b94f9d5c874bbf6f79d637"; + libraryHaskellDepends = [ + base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse + transformers + ]; + testHaskellDepends = [ + base binary bytestring ghc-prim lens-family-core pipes pipes-parse + smallcheck tasty tasty-hunit tasty-smallcheck transformers + ]; + homepage = "https://github.com/k0001/pipes-binary"; + description = "Encode and decode binary streams using the pipes and binary libraries"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-bytestring" = callPackage @@ -156937,7 +157856,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-parse" = callPackage + "pipes-parse_3_0_3" = callPackage ({ mkDerivation, base, pipes, transformers }: mkDerivation { pname = "pipes-parse"; @@ -156946,6 +157865,18 @@ self: { libraryHaskellDepends = [ base pipes transformers ]; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-parse" = callPackage + ({ mkDerivation, base, pipes, transformers }: + mkDerivation { + pname = "pipes-parse"; + version = "3.0.4"; + sha256 = "be1d15fc1fd4b3a8631f3202967fbdcd916f8567eedcf7ee17801296830c3705"; + libraryHaskellDepends = [ base pipes transformers ]; + description = "Parsing infrastructure for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-postgresql-simple" = callPackage @@ -157103,17 +158034,17 @@ self: { "pipes-transduce" = callPackage ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest - , foldl, free, lens-family-core, pipes, pipes-bytestring - , pipes-concurrency, pipes-group, pipes-parse, pipes-safe - , pipes-text, tasty, tasty-hunit, text, transformers, void + , foldl, free, pipes, pipes-bytestring, pipes-concurrency + , pipes-group, pipes-parse, pipes-safe, pipes-text, tasty + , tasty-hunit, text, transformers, void }: mkDerivation { pname = "pipes-transduce"; - version = "0.3.3.0"; - sha256 = "af40b285eb0e55f8ba17223890b09b4b9cc9b9774d55c7539d878e1d3d68c49b"; + version = "0.3.4.0"; + sha256 = "82c850ba718f4467e2742418249a584b1d3521815083a87cbe51543bc3486833"; libraryHaskellDepends = [ - base bifunctors bytestring conceit foldl free lens-family-core - pipes pipes-bytestring pipes-concurrency pipes-group pipes-parse + base bifunctors bytestring conceit foldl free pipes + pipes-bytestring pipes-concurrency pipes-group pipes-parse pipes-safe pipes-text text transformers void ]; testHaskellDepends = [ @@ -159122,6 +160053,7 @@ self: { tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; @@ -159201,8 +160133,8 @@ self: { }: mkDerivation { pname = "postgresql-binary"; - version = "0.8"; - sha256 = "401fe41d1bbf31ec0c5cf61ef6370cc56c61ae5f49a92a5f464981bc535c09c2"; + version = "0.8.1"; + sha256 = "e5745c009806fb10705f1f5f23c2af4028b47a7178e1ea09e102cf697cc2581b"; libraryHaskellDepends = [ aeson base base-prelude binary-parser bytestring foldl loch-th placeholders scientific text time transformers uuid vector @@ -159220,35 +160152,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "postgresql-binary_0_8_1" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, conversion, conversion-bytestring, conversion-text - , either, foldl, json-ast, loch-th, placeholders, postgresql-libpq - , QuickCheck, quickcheck-instances, rebase, scientific, tasty - , tasty-hunit, tasty-quickcheck, tasty-smallcheck, text, time - , transformers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.8.1"; - sha256 = "e5745c009806fb10705f1f5f23c2af4028b47a7178e1ea09e102cf697cc2581b"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring foldl loch-th - placeholders scientific text time transformers uuid vector - ]; - testHaskellDepends = [ - aeson base bytestring conversion conversion-bytestring - conversion-text either json-ast loch-th placeholders - postgresql-libpq QuickCheck quickcheck-instances rebase scientific - tasty tasty-hunit tasty-quickcheck tasty-smallcheck text time - transformers uuid vector - ]; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "postgresql-config" = callPackage ({ mkDerivation, aeson, base, bytestring, monad-control, mtl , postgresql-simple, resource-pool, time @@ -160740,8 +161643,8 @@ self: { ({ mkDerivation, base, split }: mkDerivation { pname = "print-debugger"; - version = "1.1.7"; - sha256 = "3e0333a2ded92a164a8c6e33f84ee8014efb0474b8a55011c16194fabf8d6d6c"; + version = "1.1.9"; + sha256 = "e89a0e2d8bc5bf67ca3c079ad690b48602241afb0de557fa6abefc099c6e8481"; libraryHaskellDepends = [ base split ]; homepage = "https://github.com/JohnReedLOL/HaskellPrintDebugger"; description = "Debug print formatting library"; @@ -162273,6 +163176,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "proxied" = callPackage + ({ mkDerivation, base, generic-deriving, tagged }: + mkDerivation { + pname = "proxied"; + version = "0.1.1"; + sha256 = "dc4f7f3553dfcc2ff40dd967d5c04bed58ac3d8d210b77a62df45623b36be087"; + libraryHaskellDepends = [ base generic-deriving tagged ]; + homepage = "https://github.com/RyanGlScott/proxied"; + description = "Make functions consume Proxy instead of undefined"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "proxy-kindness" = callPackage ({ mkDerivation, base, tagged }: mkDerivation { @@ -164536,13 +165451,12 @@ self: { }: mkDerivation { pname = "radium"; - version = "0.4.2"; - sha256 = "7a582411a33481d23b518dbf581acc71d00eb8bfcd086aa4658dcbbbf1d98bcf"; + version = "0.5"; + sha256 = "17572031f5bf539dc9c73670f06375c797262e233a553ca0c008d12c8fef0aee"; libraryHaskellDepends = [ base containers parsec ]; testHaskellDepends = [ base Cabal containers hspec parsec QuickCheck ]; - jailbreak = true; homepage = "https://github.com/klangner/radium"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; @@ -164713,7 +165627,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rainbox" = callPackage + "rainbox_0_18_0_4" = callPackage ({ mkDerivation, base, bytestring, containers, lens, QuickCheck , rainbow, tasty, tasty-quickcheck, text }: @@ -164728,13 +165642,13 @@ self: { base bytestring containers lens QuickCheck rainbow tasty tasty-quickcheck text ]; - doCheck = false; homepage = "http://www.github.com/massysett/rainbox"; description = "Two-dimensional box pretty printing, with colors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rainbox_0_18_0_6" = callPackage + "rainbox" = callPackage ({ mkDerivation, base, bytestring, containers, lens, QuickCheck , rainbow, tasty, tasty-quickcheck, text }: @@ -164752,7 +165666,6 @@ self: { homepage = "http://www.github.com/massysett/rainbox"; description = "Two-dimensional box pretty printing, with colors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rake" = callPackage @@ -165246,7 +166159,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rank1dynamic" = callPackage + "rank1dynamic_0_3_1_1" = callPackage ({ mkDerivation, base, binary, ghc-prim, HUnit, test-framework , test-framework-hunit }: @@ -165262,6 +166175,24 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rank1dynamic" = callPackage + ({ mkDerivation, base, binary, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "rank1dynamic"; + version = "0.3.2.0"; + sha256 = "e2ddd96d1908a61bd244e13884a041b64837ac25370198934b0dbd4a449e1deb"; + libraryHaskellDepends = [ base binary ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; + license = stdenv.lib.licenses.bsd3; }) {}; "rascal" = callPackage @@ -165348,7 +166279,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rasterific-svg" = callPackage + "rasterific-svg_0_2_3_2" = callPackage ({ mkDerivation, base, binary, bytestring, containers, directory , filepath, FontyFruity, JuicyPixels, lens, linear, mtl , optparse-applicative, Rasterific, scientific, svg-tree, text @@ -165369,6 +166300,33 @@ self: { base directory filepath FontyFruity JuicyPixels optparse-applicative Rasterific svg-tree ]; + jailbreak = true; + description = "SVG renderer based on Rasterific"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rasterific-svg" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, FontyFruity, JuicyPixels, lens, linear, mtl + , optparse-applicative, Rasterific, scientific, svg-tree, text + , transformers, vector + }: + mkDerivation { + pname = "rasterific-svg"; + version = "0.3"; + sha256 = "909c07e2db1ecd9f67aaa4728386d7b17932e53f3c68c7afef45726142eb9425"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath FontyFruity + JuicyPixels lens linear mtl Rasterific scientific svg-tree text + transformers vector + ]; + executableHaskellDepends = [ + base directory filepath FontyFruity JuicyPixels + optparse-applicative Rasterific svg-tree + ]; description = "SVG renderer based on Rasterific"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -166070,8 +167028,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "0.4.2"; - sha256 = "185cb219a41c323be3b850efae9b8a95f9b5b4abe3934cad85238c5f0023c8c7"; + version = "0.4.3"; + sha256 = "375e6cb300a7d93b8c64bad5edd69464b787d5d5b22ac80e3705ad2c0f07bde5"; libraryHaskellDepends = [ base base-prelude bifunctors bytestring containers contravariant contravariant-extras deepseq dlist either hashable mtl profunctors @@ -166106,6 +167064,7 @@ self: { libraryHaskellDepends = [ base base-prelude basic-lens template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/record"; description = "Anonymous records"; license = stdenv.lib.licenses.mit; @@ -166168,6 +167127,7 @@ self: { base base-prelude conversion conversion-text record-syntax text ]; doHaddock = false; + jailbreak = true; homepage = "https://github.com/nikita-volkov/record-preprocessor"; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = stdenv.lib.licenses.mit; @@ -166834,7 +167794,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "reflection" = callPackage + "reflection_2_1_1_1" = callPackage ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "reflection"; @@ -166844,9 +167804,10 @@ self: { homepage = "http://github.com/ekmett/reflection"; description = "Reifies arbitrary terms into types that can be reflected back into terms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "reflection_2_1_2" = callPackage + "reflection" = callPackage ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "reflection"; @@ -166856,7 +167817,6 @@ self: { homepage = "http://github.com/ekmett/reflection"; description = "Reifies arbitrary terms into types that can be reflected back into terms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflection-extras" = callPackage @@ -166963,14 +167923,13 @@ self: { }: mkDerivation { pname = "reflex-dom-contrib"; - version = "0.4"; - sha256 = "7bceed2b8347bdb8618e21d860a787d53187236a2253c83ab02bd51608a9236e"; + version = "0.4.1"; + sha256 = "e0c075de9b5b5c145ad7cd70fc214d1d2f8e76a0e640fde2e6202a9172573ed5"; libraryHaskellDepends = [ aeson base bifunctors bytestring containers data-default ghcjs-dom http-types lens mtl random readable reflex reflex-dom safe string-conv text time transformers ]; - jailbreak = true; homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; @@ -167949,15 +168908,15 @@ self: { "relational-postgresql8" = callPackage ({ mkDerivation, base, containers, HDBC, names-th , persistable-record, relational-query, relational-query-HDBC - , template-haskell, time + , template-haskell, time, transformers }: mkDerivation { pname = "relational-postgresql8"; - version = "0.1.0.0"; - sha256 = "0efd30853afa6bab8138317dbd0166638f152d76a6175fa32ed92fb6f059afba"; + version = "0.2.0.0"; + sha256 = "3fff0abc19ae8e6edb2c51430fc77326f57835d329355ccb253f8001e6e237a2"; libraryHaskellDepends = [ base containers HDBC names-th persistable-record relational-query - relational-query-HDBC template-haskell time + relational-query-HDBC template-haskell time transformers ]; homepage = "https://github.com/yuga/haskell-relational-record-driver-postgresql8"; description = "PostgreSQL v8.x driver for haskell-relational-record"; @@ -168161,6 +169120,7 @@ self: { QuickCheck quickcheck-instances random scientific tasty tasty-quickcheck text ]; + jailbreak = true; description = "Remote Monad implementation of the JSON RPC protocol"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -169300,7 +170260,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet" = callPackage + "resourcet_1_1_7_1" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -169317,6 +170277,26 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "resourcet" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, monad-control, mtl, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "resourcet"; + version = "1.1.7.2"; + sha256 = "c1c71985d3f0fcc511a10dec89f8abfe31e0caa6355b8697e8d1ae3d6d14de86"; + libraryHaskellDepends = [ + base containers exceptions lifted-base mmorph monad-control mtl + transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base hspec lifted-base transformers ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Deterministic allocation and freeing of scarce resources"; + license = stdenv.lib.licenses.bsd3; }) {}; "respond" = callPackage @@ -171169,25 +172149,31 @@ self: { }) {}; "riemann" = callPackage - ({ mkDerivation, base, cereal, containers, data-default, either - , errors, HUnit, lens, network, protobuf, QuickCheck - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time, transformers + ({ mkDerivation, base, bytestring, cereal, containers, data-default + , directory, doctest, errors, filepath, http-client, HUnit, lens + , mtl, network, protobuf, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , transformers, wreq }: mkDerivation { pname = "riemann"; - version = "0.1.0.2"; - sha256 = "7399d2b85839ef9c44aab66ad3b2f3a35e6a893fd8f5ab1aa1626a0f04128708"; + version = "0.1.1.0"; + sha256 = "8905d4997974028b71cf57f15cd6c4939d871f90fbd5130b0c09705f3e6d10c0"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base cereal containers data-default either errors lens network - protobuf text time transformers + base bytestring cereal containers data-default errors lens mtl + network protobuf text time transformers + ]; + executableHaskellDepends = [ + base bytestring cereal containers data-default errors http-client + lens mtl network protobuf text time transformers wreq ]; testHaskellDepends = [ - base either errors HUnit QuickCheck test-framework - test-framework-hunit test-framework-quickcheck2 transformers + base directory doctest filepath HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; - homepage = "https://github.com/telser/riemann-hs"; + homepage = "https://github.com/tel/riemann-hs"; description = "A Riemann client for Haskell"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -171755,8 +172741,8 @@ self: { }: mkDerivation { pname = "rose-trie"; - version = "0.1.0.0"; - sha256 = "f22b4fa41ff69462fbeb551a4bbc92faf26a1ab3910768a9fe75889d4f01ef69"; + version = "1.0.0.1"; + sha256 = "669269bdf1cdbec5f3023954fa6c4aee3676253db82fe69e785128afb4ed2805"; libraryHaskellDepends = [ base containers deepseq minilens mtl transformers ]; @@ -174543,6 +175529,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "scotty-params-parser" = callPackage + ({ mkDerivation, base-prelude, scotty, success, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "scotty-params-parser"; + version = "0.4"; + sha256 = "e334daaa407a407e4ececb0cd6d79b4037949abbc912d0d96641f007f041b631"; + libraryHaskellDepends = [ + base-prelude scotty success text transformers unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/sannsyn/scotty-params-parser"; + description = "HTTP-request's query parameters parser abstraction for \"scotty\""; + license = stdenv.lib.licenses.mit; + }) {}; + "scotty-rest" = callPackage ({ mkDerivation, base, base-prelude, bytestring, convertible , data-default-class, hspec, hspec-wai, http-date, http-media @@ -175124,7 +176127,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "second-transfer" = callPackage + "second-transfer_0_7_1_0" = callPackage ({ mkDerivation, attoparsec, base, base16-bytestring, binary , bytestring, clock, conduit, containers, cpphs, deepseq , exceptions, hashable, hashtables, hslogger, http2, HUnit, lens @@ -175154,8 +176157,38 @@ self: { homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; + "second-transfer" = callPackage + ({ mkDerivation, attoparsec, base, base16-bytestring, binary + , BoundedChan, bytestring, clock, conduit, containers, cpphs + , deepseq, exceptions, hashable, hashtables, http2, HUnit, lens + , mmorph, network, network-uri, pqueue, resourcet, stm, text, time + , transformers, unordered-containers, vector, vector-algorithms + }: + mkDerivation { + pname = "second-transfer"; + version = "0.10.0.2"; + sha256 = "9a0a8851a4d12e2d7b1f84bb7af19a9118c206c24b65d06500f10ea718e88828"; + libraryHaskellDepends = [ + attoparsec base base16-bytestring binary BoundedChan bytestring + clock conduit containers deepseq exceptions hashable hashtables + http2 lens mmorph network network-uri pqueue resourcet stm text + time transformers vector vector-algorithms + ]; + libraryToolDepends = [ cpphs ]; + testHaskellDepends = [ + base binary bytestring conduit containers hashtables http2 HUnit + lens network network-uri stm text transformers unordered-containers + ]; + testToolDepends = [ cpphs ]; + doCheck = false; + homepage = "https://www.httptwo.com/second-transfer/"; + description = "Second Transfer HTTP/2 web server"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "secp256k1" = callPackage ({ mkDerivation, base, base16-bytestring, binary, bytestring , cryptohash, entropy, HUnit, largeword, mtl, QuickCheck @@ -175164,8 +176197,8 @@ self: { }: mkDerivation { pname = "secp256k1"; - version = "0.4.3"; - sha256 = "fb4d0187d3e6189a933b95b5f884c9545b06c26c637af239ca9ceff98b2335a5"; + version = "0.4.4"; + sha256 = "33532973312cafa00b12f5fe21ed65bd89810bd8e19be95b29c5d5aa0b9946d2"; libraryHaskellDepends = [ base base16-bytestring binary bytestring entropy largeword mtl QuickCheck string-conversions @@ -176285,6 +177318,8 @@ self: { pname = "servant"; version = "0.4.4"; sha256 = "d2b95b9f9b8173fe83d08166707d564b2cb60526493fc7b4099e09f9480a16ec"; + revision = "1"; + editedCabalFile = "8744311d3ae2ecbd905ab71e1b4c568b02d5179346c3d085bdd19d8632b98dc5"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-conversion case-insensitive http-media http-types network-uri @@ -176313,6 +177348,8 @@ self: { pname = "servant"; version = "0.4.4.2"; sha256 = "fc5c80822fef28b63d8a63bd63efd0bdd86c7d13f06d1cc6e9b0768c4efe61aa"; + revision = "1"; + editedCabalFile = "230a38d3c063c561c11a5570bb725f715bff776e507a734a62dac5aa463b5c08"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-conversion case-insensitive http-media http-types network-uri @@ -176341,6 +177378,8 @@ self: { pname = "servant"; version = "0.4.4.4"; sha256 = "182842071c4905a3429c1ccbff020af255b6abfd1e7a6473253713c0da80f280"; + revision = "1"; + editedCabalFile = "5bcd8a6a295b2e58c802750441e3ffac259cfa6e12037b7ccd176b1ef8381288"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-conversion case-insensitive http-media http-types network-uri @@ -176369,6 +177408,8 @@ self: { pname = "servant"; version = "0.4.4.5"; sha256 = "b82abafe5bd1357c64c36c344ab38dc8fa8ad8f40126b86323da9bfc4047f544"; + revision = "1"; + editedCabalFile = "a6c733d905643e01e57adeb803dc15951eca7c7f4d7f09abac650b1c3efcc89c"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-conversion case-insensitive http-media http-types network-uri @@ -176396,6 +177437,8 @@ self: { pname = "servant"; version = "0.4.4.6"; sha256 = "6adeba12f74f809c3bd9846d2563e1bffb9826d8731084bcea17bce7a145ee6a"; + revision = "1"; + editedCabalFile = "821919911076b83763ba559388851ea582c40c2171ae38b95006ee2fb717ac6b"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-conversion case-insensitive http-media http-types network-uri @@ -176830,6 +177873,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-elm" = callPackage + ({ mkDerivation, aeson, base, data-default, elm-export, hspec, lens + , servant, servant-foreign, text + }: + mkDerivation { + pname = "servant-elm"; + version = "0.1.0.1"; + sha256 = "8e44d664e4484135c4b19d2477131b1f75863c999ff747a6b69052ac12f6d15d"; + libraryHaskellDepends = [ + base elm-export lens servant servant-foreign text + ]; + testHaskellDepends = [ + aeson base data-default elm-export hspec servant + ]; + jailbreak = true; + homepage = "http://github.com/mattjbray/servant-elm#readme"; + description = "Automatically derive Elm functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + broken = true; + }) {elm-export = null; servant-foreign = null;}; + "servant-examples" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, either , http-types, js-jquery, lucid, random, servant, servant-client @@ -181419,7 +182483,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "slave-thread" = callPackage + "slave-thread_1_0_0_0" = callPackage ({ mkDerivation, base, base-prelude, HTF, list-t, mmorph , partial-handler, QuickCheck, quickcheck-instances, SafeSemaphore , stm-containers, transformers @@ -181440,9 +182504,10 @@ self: { homepage = "https://github.com/nikita-volkov/slave-thread"; description = "A principal solution to ghost threads and silent exceptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "slave-thread_1_0_1" = callPackage + "slave-thread" = callPackage ({ mkDerivation, base, base-prelude, HTF, list-t, mmorph , partial-handler, QuickCheck, quickcheck-instances, SafeSemaphore , stm-containers, transformers @@ -181458,10 +182523,10 @@ self: { testHaskellDepends = [ base base-prelude HTF QuickCheck quickcheck-instances SafeSemaphore ]; + doCheck = false; homepage = "https://github.com/nikita-volkov/slave-thread"; description = "A principal solution to ghost threads and silent exceptions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slice-cpp-gen" = callPackage @@ -185000,10 +186065,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "spir-v"; - version = "0.0.0.2"; - sha256 = "6933c99a6e0ce0bb540884c76542b9f2d3095ca43718a0ca9475502f33f9262a"; - revision = "1"; - editedCabalFile = "71fa7971fad8f2ce6d0eab96c2e817235822e5e0e048a844ac1288d35dee278f"; + version = "0.0.1.0"; + sha256 = "59d7b176ddafbb73aff8dd4b1a8f9557f748728e4f5262a9575108ff6e62d6ca"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/expipiplus1/spir-v"; description = "Some utilities for reading and writing SPIR-V files"; @@ -186578,6 +187641,71 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; + "stack_1_0_4" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base + , base16-bytestring, base64-bytestring, binary, binary-tagged + , blaze-builder, byteable, bytestring, Cabal, conduit + , conduit-extra, containers, cryptohash, cryptohash-conduit + , deepseq, directory, edit-distance, either, enclosed-exceptions + , errors, exceptions, extra, fast-logger, filelock, filepath + , fsnotify, gitrev, hashable, hastache, hpack, hpc, hspec + , http-client, http-client-tls, http-conduit, http-types + , lifted-base, monad-control, monad-logger, mtl + , optparse-applicative, optparse-simple, path, path-io, persistent + , persistent-sqlite, persistent-template, pretty, process + , project-template, QuickCheck, resourcet, retry, safe, semigroups + , split, stm, streaming-commons, tar, template-haskell, temporary + , text, text-binary, time, transformers, transformers-base, unix + , unix-compat, unordered-containers, uuid, vector + , vector-binary-instances, yaml, zip-archive, zlib + }: + mkDerivation { + pname = "stack"; + version = "1.0.4"; + sha256 = "f252c2f916b48d4b32722e2a4f3069ef55ac80454552316ce2dde0c5d486d85f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal async attoparsec base base16-bytestring + base64-bytestring binary binary-tagged blaze-builder byteable + bytestring Cabal conduit conduit-extra containers cryptohash + cryptohash-conduit deepseq directory edit-distance either + enclosed-exceptions errors exceptions extra fast-logger filelock + filepath fsnotify hashable hastache hpack hpc http-client + http-client-tls http-conduit http-types lifted-base monad-control + monad-logger mtl optparse-applicative path path-io persistent + persistent-sqlite persistent-template pretty process + project-template resourcet retry safe semigroups split stm + streaming-commons tar template-haskell temporary text text-binary + time transformers transformers-base unix unix-compat + unordered-containers uuid vector vector-binary-instances yaml + zip-archive zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal containers directory filelock filepath gitrev + http-client lifted-base monad-control monad-logger mtl + optparse-applicative optparse-simple path path-io text transformers + ]; + testHaskellDepends = [ + async attoparsec base bytestring Cabal conduit conduit-extra + containers cryptohash directory exceptions filepath hspec + http-conduit monad-logger path path-io process QuickCheck resourcet + retry temporary text transformers unix-compat + ]; + jailbreak = true; + enableSharedExecutables = false; + postInstall = '' + exe=$out/bin/stack + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack + ''; + homepage = "http://haskellstack.org"; + description = "The Haskell Tool Stack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + "stack-hpc-coveralls" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, deepseq , docopt, filepath, hlint, hpc, hspec, hspec-contrib, http-client @@ -188408,7 +189536,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-containers" = callPackage + "stm-containers_0_2_9" = callPackage ({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t , loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck , transformers, unordered-containers @@ -188430,9 +189558,10 @@ self: { homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-containers_0_2_10" = callPackage + "stm-containers" = callPackage ({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t , loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck , transformers, unordered-containers @@ -188449,10 +189578,10 @@ self: { base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude placeholders primitive QuickCheck transformers unordered-containers ]; + doCheck = false; homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-delay" = callPackage @@ -189292,6 +190421,27 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "streaming-png" = callPackage + ({ mkDerivation, base, bytestring, cereal, exceptions, JuicyPixels + , mmorph, mtl, resourcet, streaming, streaming-bytestring + , streaming-commons, transformers, vector + }: + mkDerivation { + pname = "streaming-png"; + version = "0.1.0.0"; + sha256 = "ecb3509c29481d7deb3b65c976cc08fb9a859cff9f52ad48c16402d9439420ca"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring cereal exceptions JuicyPixels mmorph mtl resourcet + streaming streaming-bytestring streaming-commons transformers + vector + ]; + homepage = "http://github.com/bch29/streaming-png#readme"; + description = "Perfectly streaming PNG image decoding"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "streaming-utils" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, http-client , http-client-tls, json-stream, mtl, pipes, resourcet, streaming @@ -190794,6 +191944,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "svg-builder" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, hashable, text + , unordered-containers + }: + mkDerivation { + pname = "svg-builder"; + version = "0.1.0.1"; + sha256 = "91c1a879e4b656355e9c843f29761a46dba6fd6c96c38a073dbb61b101923c9d"; + libraryHaskellDepends = [ + base blaze-builder bytestring hashable text unordered-containers + ]; + homepage = "http://github.com/jeffreyrosenbluth/svg-builder.git"; + description = "DSL for building SVG"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "svg-tree_0_1_0_2" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , JuicyPixels, lens, linear, mtl, scientific, text, transformers @@ -190850,7 +192016,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "svg-tree" = callPackage + "svg-tree_0_3_2" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , JuicyPixels, lens, linear, mtl, scientific, text, transformers , vector, xml @@ -190865,24 +192031,24 @@ self: { ]; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "svg-tree_0_3_2_2" = callPackage + "svg-tree" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , JuicyPixels, lens, linear, mtl, scientific, text, transformers , vector, xml }: mkDerivation { pname = "svg-tree"; - version = "0.3.2.2"; - sha256 = "f1dfee9879672dc9ad3a4de3850ce9d120e45f33ca02642da5cc15bd5d9dc85a"; + version = "0.4.1"; + sha256 = "eacdf66bad077c31d05979d82090dac7839a909d43e50876698d6c61eb0f7fe5"; libraryHaskellDepends = [ attoparsec base bytestring containers JuicyPixels lens linear mtl scientific text transformers vector xml ]; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svg2q" = callPackage @@ -194019,7 +195185,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "tasty-th" = callPackage + "tasty-th_0_1_3" = callPackage ({ mkDerivation, base, language-haskell-extract, tasty , template-haskell }: @@ -194033,6 +195199,19 @@ self: { homepage = "http://github.com/bennofs/tasty-th"; description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-th" = callPackage + ({ mkDerivation, base, tasty, template-haskell }: + mkDerivation { + pname = "tasty-th"; + version = "0.1.4"; + sha256 = "18a14d693e709046eba3bb1a4e9febfce09d04059342728f06178788a24ece35"; + libraryHaskellDepends = [ base tasty template-haskell ]; + homepage = "http://github.com/bennofs/tasty-th"; + description = "Automatic tasty test case discovery using TH"; + license = stdenv.lib.licenses.bsd3; }) {}; "tateti-tateti" = callPackage @@ -196152,8 +197331,8 @@ self: { }: mkDerivation { pname = "text-postgresql"; - version = "0.0.1.0"; - sha256 = "632eafe17cc8ea54571dbae82e85e14ded973f28772c82432e5025f68b4dde5f"; + version = "0.0.2.0"; + sha256 = "abd84b2f205694f58be46ca9f8a2a98f1d407e74da27092aebaba1e26d48dc54"; libraryHaskellDepends = [ base dlist transformers ]; testHaskellDepends = [ base QuickCheck quickcheck-simple ]; homepage = "http://khibino.github.io/haskell-relational-record/"; @@ -196313,8 +197492,8 @@ self: { }: mkDerivation { pname = "text-show"; - version = "3"; - sha256 = "49e8110e4bd5f67fa6dbe4ce07614633fc2e65bd3dae14b0759df10e3f1b98b2"; + version = "3.0.1"; + sha256 = "39806d6d3098f099ede1a740f6fb55e84144a34442496145063b408262b899ca"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups @@ -196325,9 +197504,8 @@ self: { array base base-compat base-orphans bifunctors bytestring bytestring-builder containers generic-deriving ghc-prim hspec integer-gmp nats QuickCheck quickcheck-instances semigroups tagged - template-haskell text transformers transformers-compat void + template-haskell text th-lift transformers transformers-compat void ]; - doHaddock = false; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; @@ -197824,17 +199002,18 @@ self: { "tidal" = callPackage ({ mkDerivation, base, binary, bytestring, colour, containers - , hashable, hmt, hosc, mersenne-random-pure64, mtl, parsec, process - , text, time, transformers, websockets + , hashable, hmt, hosc, mersenne-random-pure64, mtl, parsec + , PortMidi, process, serialport, text, time, transformers + , websockets }: mkDerivation { pname = "tidal"; - version = "0.6"; - sha256 = "c82a1b123f9fb831d086642f10ecd06b57e29eab4597077de8d1b82766012b67"; + version = "0.7"; + sha256 = "740fed95c4eacdf2abea0965d81f2d6e747a303868adf0d9472b7413952a5aa1"; libraryHaskellDepends = [ base binary bytestring colour containers hashable hmt hosc - mersenne-random-pure64 mtl parsec process text time transformers - websockets + mersenne-random-pure64 mtl parsec PortMidi process serialport text + time transformers websockets ]; homepage = "http://tidal.lurk.org/"; description = "Pattern language for improvised music"; @@ -199806,12 +200985,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers_0_5_1_0" = callPackage + "transformers_0_5_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "transformers"; - version = "0.5.1.0"; - sha256 = "d1bd8fefc1bb73ac3bad35ade9af0919bed2be6d6734cdf959d9a31ba1e70cdd"; + version = "0.5.2.0"; + sha256 = "6c408713a8ba7dd7a6573a4644e0c17fe11747f5bf259eab958421a7358a70e2"; libraryHaskellDepends = [ base ]; description = "Concrete functor and monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -201567,7 +202746,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "twitter-feed" = callPackage + "twitter-feed_0_2_0_4" = callPackage ({ mkDerivation, aeson, authenticate-oauth, base, bytestring , containers, http-conduit, HUnit, test-framework , test-framework-hunit @@ -201585,6 +202764,27 @@ self: { homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-feed" = callPackage + ({ mkDerivation, aeson, authenticate-oauth, base, bytestring + , containers, http-conduit, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "twitter-feed"; + version = "0.2.0.5"; + sha256 = "faf8a79a0c423d2aef9a88fab34084c0264f19efcebe721c71786e8fcd971773"; + libraryHaskellDepends = [ + aeson authenticate-oauth base bytestring http-conduit + ]; + testHaskellDepends = [ + base containers HUnit test-framework test-framework-hunit + ]; + homepage = "https://github.com/stackbuilders/twitter-feed"; + description = "Client for fetching Twitter timeline via Oauth"; + license = stdenv.lib.licenses.mit; }) {}; "twitter-types" = callPackage @@ -202732,10 +203932,8 @@ self: { }: mkDerivation { pname = "uhc-light"; - version = "1.1.9.2"; - sha256 = "f77b28c6e49fd36bb5369714283d72d37b8dc2f90b444e5789a5503e864d0ee7"; - revision = "1"; - editedCabalFile = "9281e38cd36593fbdd779caa5c3e678b4d4f967f496b5d3df5d55b1cd5a8a85f"; + version = "1.1.9.3"; + sha256 = "e1c4868e38987c2938c6c9379bb3d8b1bfcfbfc95541862e118e8ca9439343f3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -202748,7 +203946,6 @@ self: { hashable mtl network old-locale primitive process syb transformers uhc-util uulib vector ]; - jailbreak = true; homepage = "https://github.com/UU-ComputerScience/uhc"; description = "Part of UHC packaged as cabal/hackage installable library"; license = stdenv.lib.licenses.bsd3; @@ -202757,20 +203954,17 @@ self: { "uhc-util" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers - , directory, fclabels, fgl, hashable, mtl, process, syb, time - , time-compat, uulib + , directory, fclabels, fgl, hashable, logict-state, mtl, process + , syb, time, time-compat, uulib }: mkDerivation { pname = "uhc-util"; - version = "0.1.6.3"; - sha256 = "6d64396e186a2a05a5f3a0ace58b768e83e9655b22ab3fde42d0154152358046"; - revision = "1"; - editedCabalFile = "eedc35cfdb41a84edc0a70661797a7ea98684f7b30a506309d40975370f55c0a"; + version = "0.1.6.5"; + sha256 = "a296ebd71c34353f69ad42b6b8979dbdc5e2bb5fb117b5e8953ff77ccbc378fc"; libraryHaskellDepends = [ array base binary bytestring containers directory fclabels fgl - hashable mtl process syb time time-compat uulib + hashable logict-state mtl process syb time time-compat uulib ]; - jailbreak = true; homepage = "https://github.com/UU-ComputerScience/uhc-util"; description = "UHC utilities"; license = stdenv.lib.licenses.bsd3; @@ -203391,8 +204585,8 @@ self: { ({ mkDerivation, base, deepseq, ShowF }: mkDerivation { pname = "uniform-pair"; - version = "0.1.9"; - sha256 = "10670c5aa26cf1c1555aa0c8f21e3edf1eca7577c9bc205c159dbf7edd6063fa"; + version = "0.1.10"; + sha256 = "f27805fca8cd9574d0b7c535693c9dda9c9d945af1a50fc36abeb80fb332a2ff"; libraryHaskellDepends = [ base deepseq ShowF ]; homepage = "https://github.com/conal/uniform-pair/"; description = "Uniform pairs with class instances"; @@ -203785,6 +204979,8 @@ self: { pname = "unix-compat"; version = "0.4.1.4"; sha256 = "fafa1a9eefc93287c028cc61f17a91f886f164b3f64392f1756f8a7f8b3cb34b"; + revision = "1"; + editedCabalFile = "401047ed04906f81b78929274ebe1b3f321e2c61a52124a034da7bacccd3b03c"; libraryHaskellDepends = [ base unix ]; homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; @@ -203979,7 +205175,7 @@ self: { license = "GPL"; }) {}; - "unordered-containers" = callPackage + "unordered-containers_0_2_5_1" = callPackage ({ mkDerivation, base, ChasingBottoms, containers, deepseq , hashable, HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 @@ -203998,17 +205194,18 @@ self: { homepage = "https://github.com/tibbe/unordered-containers"; description = "Efficient hashing-based container types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unordered-containers_0_2_6_0" = callPackage + "unordered-containers" = callPackage ({ mkDerivation, base, ChasingBottoms, containers, deepseq , hashable, HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "unordered-containers"; - version = "0.2.6.0"; - sha256 = "5f9fbba5f616344bd3b1b633d45f820cf9c840ad101e1110e698abc77d9de3f3"; + version = "0.2.7.0"; + sha256 = "6503226d24069698bbb454c15c53a7f9f245aba228e142c6b6ab2d31cecc5ef6"; libraryHaskellDepends = [ base deepseq hashable ]; testHaskellDepends = [ base ChasingBottoms containers hashable HUnit QuickCheck @@ -204017,7 +205214,6 @@ self: { homepage = "https://github.com/tibbe/unordered-containers"; description = "Efficient hashing-based container types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unordered-containers-rematch" = callPackage @@ -204843,7 +206039,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "userid" = callPackage + "userid_0_1_2_3" = callPackage ({ mkDerivation, aeson, base, boomerang, lens, safecopy, web-routes , web-routes-th }: @@ -204857,6 +206053,23 @@ self: { homepage = "http://www.github.com/Happstack/userid"; description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "userid" = callPackage + ({ mkDerivation, aeson, base, boomerang, lens, safecopy, web-routes + , web-routes-th + }: + mkDerivation { + pname = "userid"; + version = "0.1.2.4"; + sha256 = "f4f0e89d43046408b0083a18030af0fb33a23603874efa0763caf1cf28ce6b5b"; + libraryHaskellDepends = [ + aeson base boomerang lens safecopy web-routes web-routes-th + ]; + homepage = "http://www.github.com/Happstack/userid"; + description = "The UserId type and useful instances for web development"; + license = stdenv.lib.licenses.bsd3; }) {}; "users_0_1_0_0" = callPackage @@ -206105,7 +207318,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vault" = callPackage + "vault_0_3_0_5" = callPackage ({ mkDerivation, base, containers, hashable, unordered-containers }: mkDerivation { @@ -206118,9 +207331,10 @@ self: { homepage = "https://github.com/HeinrichApfelmus/vault"; description = "a persistent store for values of arbitrary types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vault_0_3_0_6" = callPackage + "vault" = callPackage ({ mkDerivation, base, containers, hashable, unordered-containers }: mkDerivation { @@ -206133,7 +207347,6 @@ self: { homepage = "https://github.com/HeinrichApfelmus/vault"; description = "a persistent store for values of arbitrary types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vaultaire-common" = callPackage @@ -206817,13 +208030,13 @@ self: { }) {}; "vector-space-map" = callPackage - ({ mkDerivation, base, containers, vector-space }: + ({ mkDerivation, base, containers, doctest, vector-space }: mkDerivation { pname = "vector-space-map"; - version = "0.1.0.1"; - sha256 = "0be56ed053c67ed18583f581585392aeb5161fce5b318ced882af045db81b0e8"; + version = "0.2.0"; + sha256 = "ceec244a880e7abba75dd9c3324f6a6421a085ff270b30480455a30883c95424"; libraryHaskellDepends = [ base containers vector-space ]; - jailbreak = true; + testHaskellDepends = [ base doctest ]; homepage = "https://github.com/conklech/vector-space-map"; description = "vector-space operations for finite maps using Data.Map"; license = stdenv.lib.licenses.mit; @@ -206940,7 +208153,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_3" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; @@ -206952,6 +208165,19 @@ self: { testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-th-unbox" = callPackage + ({ mkDerivation, base, data-default, template-haskell, vector }: + mkDerivation { + pname = "vector-th-unbox"; + version = "0.2.1.4"; + sha256 = "a765f8a679d2c59d0ab73d8c158cb020a362ab9e825c845f8202cd11ba660551"; + libraryHaskellDepends = [ base template-haskell vector ]; + testHaskellDepends = [ base data-default vector ]; + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "verbalexpressions" = callPackage @@ -208444,34 +209670,28 @@ self: { , Cabal-ide-backend, directory, file-embed, filepath, fsnotify, ghc , Glob, hspec, http-client, http-conduit, http-reverse-proxy , http-types, ide-backend, MissingH, network, optparse-applicative - , process, shakespeare, stm, streaming-commons, system-filepath - , text, time, transformers, wai, warp, websockets + , process, shakespeare, split, stm, streaming-commons + , system-filepath, text, time, transformers, wai, warp, websockets }: mkDerivation { pname = "wai-devel"; - version = "0.0.0.2"; - sha256 = "2783d78ed3b5b76000182b1f51f9d2772de0460e09e02eb6be6d69127081cf9d"; + version = "0.0.0.3"; + sha256 = "3ff4291b31a24e02b859f44b2aba55dcce7dc55850c29a9802570b2431fdf646"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base blaze-html bytestring Cabal-ide-backend directory file-embed filepath fsnotify ghc Glob http-client http-conduit http-reverse-proxy http-types ide-backend MissingH network - optparse-applicative process shakespeare stm streaming-commons - system-filepath text time transformers wai warp websockets - ]; - executableHaskellDepends = [ - base blaze-html bytestring Cabal-ide-backend directory file-embed - filepath fsnotify ghc Glob http-client http-conduit - http-reverse-proxy http-types ide-backend MissingH network - optparse-applicative process shakespeare stm streaming-commons - system-filepath text time transformers wai warp websockets + optparse-applicative process shakespeare split stm + streaming-commons system-filepath text time transformers wai warp + websockets ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ base hspec stm ]; - jailbreak = true; homepage = "https://github.com/urbanslug/wai-devel"; description = "A web server for the development of WAI compliant web applications"; - license = stdenv.lib.licenses.gpl3; + license = stdenv.lib.licenses.mit; }) {}; "wai-digestive-functors" = callPackage @@ -210026,6 +211246,7 @@ self: { base bytestring hlint hspec http-types HUnit stm transformers wai wai-extra ]; + doCheck = false; description = "WAI Middleware for Request Throttling"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -210080,7 +211301,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-predicates" = callPackage + "wai-predicates_0_8_5" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , bytestring-conversion, case-insensitive, cookie, http-types , singletons, tasty, tasty-hunit, tasty-quickcheck, transformers @@ -210101,9 +211322,10 @@ self: { homepage = "https://github.com/twittner/wai-predicates/"; description = "WAI request predicates"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-predicates_0_8_6" = callPackage + "wai-predicates" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , bytestring-conversion, case-insensitive, cookie, http-types , singletons, tasty, tasty-hunit, tasty-quickcheck, transformers @@ -210124,7 +211346,6 @@ self: { homepage = "https://gitlab.com/twittner/wai-predicates/"; description = "WAI request predicates"; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-request-spec" = callPackage @@ -210281,7 +211502,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-routes" = callPackage + "wai-routes_0_9_6" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , case-insensitive, containers, cookie, data-default-class , filepath, hspec, hspec-wai, hspec-wai-json, http-types @@ -210304,9 +211525,10 @@ self: { homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-routes_0_9_7" = callPackage + "wai-routes" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , case-insensitive, containers, cookie, data-default-class , filepath, hspec, hspec-wai, hspec-wai-json, http-types @@ -210329,7 +211551,6 @@ self: { homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-routing_0_12_1" = callPackage @@ -210357,7 +211578,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-routing" = callPackage + "wai-routing_0_12_2" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , bytestring-conversion, case-insensitive, containers, cookie , http-types, tasty, tasty-hunit, tasty-quickcheck, transformers @@ -210379,6 +211600,31 @@ self: { homepage = "https://github.com/twittner/wai-routing/"; description = "Declarative routing for WAI"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-routing" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, bytestring + , bytestring-conversion, case-insensitive, containers, cookie + , http-types, tasty, tasty-hunit, tasty-quickcheck, transformers + , wai, wai-predicates, wai-route + }: + mkDerivation { + pname = "wai-routing"; + version = "0.12.3"; + sha256 = "9ce8d30b45ac65162589236b33f4ea417f784c70a1cc10b564880819d2620b0b"; + libraryHaskellDepends = [ + attoparsec base bytestring bytestring-conversion case-insensitive + cookie http-types transformers wai wai-predicates wai-route + ]; + testHaskellDepends = [ + base blaze-builder bytestring bytestring-conversion + case-insensitive containers http-types tasty tasty-hunit + tasty-quickcheck wai wai-predicates + ]; + homepage = "https://gitlab.com/twittner/wai-routing/"; + description = "Declarative routing for WAI"; + license = stdenv.lib.licenses.mpl20; }) {}; "wai-session" = callPackage @@ -213422,8 +214668,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "0.4.4.0"; - sha256 = "247a99b23a409c11344a70f4fbfc3b939eda436e0e52bd7363c376615644dad8"; + version = "0.4.6.0"; + sha256 = "9ee65c21f4310c81dbde660482680bb73a5d8423436b844d9c4402aa511f2118"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -213431,8 +214677,8 @@ self: { random-shuffle text transformers ]; executableHaskellDepends = [ - aeson base directory extra filepath lens mtl optparse-applicative - text transformers + aeson base directory extra filepath lens MonadRandom mtl + optparse-applicative random-shuffle text transformers ]; testHaskellDepends = [ base containers extra lens mtl QuickCheck tasty tasty-quickcheck @@ -215483,18 +216729,21 @@ self: { }) {}; "xdot" = callPackage - ({ mkDerivation, base, cairo, graphviz, gtk, mtl, polyparse, text + ({ mkDerivation, base, cairo, graphviz, gtk3, mtl, polyparse, text + , transformers }: mkDerivation { pname = "xdot"; - version = "0.2.4.9"; - sha256 = "a2ace6970b425d1721b06b054422eef097837e31555579deee3fe532c11a0cda"; + version = "0.3"; + sha256 = "27f87b5a772d9a86ffc1866fc7f1b76a2ae14fdfaf791a5fcbedd32c5b15e104"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base cairo graphviz gtk mtl polyparse text + base cairo graphviz gtk3 mtl polyparse text + ]; + executableHaskellDepends = [ + base cairo graphviz gtk3 text transformers ]; - executableHaskellDepends = [ base cairo graphviz gtk text ]; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -216596,6 +217845,7 @@ self: { version = "0.9.0.2"; sha256 = "008d596529cffde397c55026c10c8a20951272959e2a6e35cfdfef499719ec7b"; libraryHaskellDepends = [ base-prelude free text ]; + jailbreak = true; homepage = "https://github.com/sannsyn/xml-query"; description = "A parser-agnostic declarative API for querying XML-documents"; license = stdenv.lib.licenses.mit; @@ -216613,6 +217863,7 @@ self: { base-prelude text xml-conduit xml-query xml-query-xml-types xml-types ]; + jailbreak = true; homepage = "https://github.com/sannsyn/xml-query-xml-conduit"; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = stdenv.lib.licenses.mit; @@ -216638,6 +217889,7 @@ self: { quickcheck-instances tasty tasty-hunit tasty-quickcheck tasty-smallcheck text xml-conduit xml-query xml-types ]; + jailbreak = true; homepage = "https://github.com/sannsyn/xml-query-xml-types"; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = stdenv.lib.licenses.mit; @@ -217942,7 +219194,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libyaml;}; - "yaml" = callPackage + "yaml_0_8_15_3" = callPackage ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat , bytestring, conduit, containers, directory, enclosed-exceptions , filepath, hspec, HUnit, libyaml, mockery, resourcet, scientific @@ -217969,6 +219221,36 @@ self: { homepage = "http://github.com/snoyberg/yaml/"; description = "Support for parsing and rendering YAML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libyaml;}; + + "yaml" = callPackage + ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat + , bytestring, conduit, containers, directory, enclosed-exceptions + , filepath, hspec, HUnit, libyaml, mockery, resourcet, scientific + , semigroups, text, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "yaml"; + version = "0.8.16"; + sha256 = "d68ad3dd16e4b8ba943d0f58666d1f53be24923088df15f46be44bbbaf85c529"; + configureFlags = [ "-fsystem-libyaml" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring conduit containers directory + enclosed-exceptions filepath resourcet scientific semigroups text + transformers unordered-containers vector + ]; + libraryPkgconfigDepends = [ libyaml ]; + executableHaskellDepends = [ aeson base bytestring ]; + testHaskellDepends = [ + aeson aeson-qq base base-compat bytestring conduit hspec HUnit + mockery resourcet text transformers unordered-containers vector + ]; + homepage = "http://github.com/snoyberg/yaml/"; + description = "Support for parsing and rendering YAML documents"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) libyaml;}; "yaml-config" = callPackage @@ -224876,7 +226158,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "zlib-lens" = callPackage + "zlib-lens_0_1_2" = callPackage ({ mkDerivation, base, bytestring, profunctors, zlib }: mkDerivation { pname = "zlib-lens"; @@ -224888,9 +226170,10 @@ self: { homepage = "http://lens.github.io/"; description = "Lenses for zlib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "zlib-lens_0_1_2_1" = callPackage + "zlib-lens" = callPackage ({ mkDerivation, base, bytestring, profunctors, zlib }: mkDerivation { pname = "zlib-lens"; @@ -224900,7 +226183,6 @@ self: { homepage = "http://lens.github.io/"; description = "Lenses for zlib"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zmcat" = callPackage From 2191fb106cf1cc5f0487fb3ce4031de9d9d0a34b Mon Sep 17 00:00:00 2001 From: desiderius Date: Wed, 17 Feb 2016 12:27:47 +0100 Subject: [PATCH 093/291] pythonPackages.pyrsistent: init at 0.11.12 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cfb92eb5b8a..46dcc852280 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16629,6 +16629,28 @@ in modules // { }; }); + pyrsistent = buildPythonPackage (rec { + name = "pyrsistent-0.11.12"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/p/pyrsistent/${name}.tar.gz"; + sha256 = "0jgyhkkq36wn36rymn4jiyqh2vdslmradq4a2mjkxfbk2cz6wpi5"; + }; + + buildInputs = with self; [ six pytest hypothesis ] ++ optional (!isPy3k) modules.sqlite3; + + checkPhase = '' + py.test + ''; + + meta = { + homepage = http://github.com/tobgu/pyrsistent/; + description = "Persistent/Functional/Immutable data structures"; + license = licenses.mit; + maintainers = with maintainers; [ desiderius ]; + }; + }); + pyrss2gen = buildPythonPackage (rec { name = "PyRSS2Gen-1.0.0"; From 312494180d4644acba05ec133217748dec1f392b Mon Sep 17 00:00:00 2001 From: Michel Kuhlmann Date: Mon, 22 Feb 2016 08:52:22 +0100 Subject: [PATCH 094/291] nixpkgs manual: add basic R documentation, fixes #13362 also fixes #13243 --- doc/default.nix | 5 ++- doc/languages-frameworks/index.xml | 1 + pkgs/development/r-modules/README.md | 55 ++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/r-modules/README.md diff --git a/doc/default.nix b/doc/default.nix index 65e12254f78..196b9e44539 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -56,8 +56,11 @@ stdenv.mkDerivation { inputFile = ./../pkgs/development/idris-modules/README.md; outputFile = "languages-frameworks/idris.xml"; } + + toDocbook { + inputFile = ./../pkgs/development/r-modules/README.md; + outputFile = "languages-frameworks/r.xml"; + } + '' - cat languages-frameworks/idris.xml echo ${nixpkgsVersion} > .version xmllint --noout --nonet --xinclude --noxincludenode \ diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index 743a1b70be7..e63ff3ab140 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -21,6 +21,7 @@ such as Perl or Haskell. These are described in this chapter. + diff --git a/pkgs/development/r-modules/README.md b/pkgs/development/r-modules/README.md new file mode 100644 index 00000000000..3a88f45b4cc --- /dev/null +++ b/pkgs/development/r-modules/README.md @@ -0,0 +1,55 @@ +R packages +========== + +## Installation + +Define an environment for R that contains all the libraries that you'd like to +use by adding the following snippet to your $HOME/.nixpkgs/config.nix file: + +```nix +{ + packageOverrides = super: let self = super.pkgs; in + { + + rEnv = super.rWrapper.override { + packages = with self.rPackages; [ + devtools + ggplot2 + reshape2 + yaml + optparse + ]; + }; + }; +} +``` + +Then you can use `nix-env -f "" -iA rEnv` to install it into your user +profile. The set of available libraries can be discovered by running the +command `nix-env -f "" -qaP -A rPackages`. The first column from that +output is the name that has to be passed to rWrapper in the code snipped above. + +## Updating the package set + +```bash +Rscript generate-r-packages.R cran > cran-packages.nix.new +mv cran-packages.nix.new cran-packages.nix + +Rscript generate-r-packages.R bioc > bioc-packages.nix.new +mv bioc-packages.nix.new bioc-packages.nix + +Rscript generate-r-packages.R irkernel > irkernel-packages.nix.new +mv irkernel-packages.nix.new irkernel-packages.nix +``` + +`generate-r-packages.R ` reads `-packages.nix`, therefor the renaming. + + +## Testing if the Nix-expression could be evaluated + +```bash +nix-build test-evaluation.nix --dry-run +``` + +If this exits fine, the expression is ok. If not, you have to edit `default.nix` + From 9b99fd78fb4a52c7141def7eeb51ae01427b997f Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 22 Feb 2016 10:33:13 +0100 Subject: [PATCH 095/291] pythonPackages.github-cli: init at 1.0.0 --- pkgs/top-level/python-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1b125b6c938..f3905760b95 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2737,6 +2737,19 @@ in modules // { }; }; + github-cli = buildPythonPackage rec { + name = "github-cli-1.0.0"; + + propagatedBuildInputs = with self; [ simplejson ]; + doCheck = false; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/github-cli/${name}.tar.gz"; + sha256 = "0csr8q208a0nixxs8mx6nbak19sylcpjcng50c2i6qldsxfbh1af"; + }; + meta.maintainers = with maintainers; [ garbas ]; + }; + cassandra-driver = buildPythonPackage rec { name = "cassandra-driver-2.6.0c2"; From 1a025a4a9649bbe581a6d6da68bb61cdf7109c81 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 13 Jan 2016 19:46:41 +0300 Subject: [PATCH 096/291] cups: 2.0.4 -> 2.1.3 Also enable parallel building and don't install rc.d scripts. --- pkgs/misc/cups/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix index 82fd1d65baf..43730065041 100644 --- a/pkgs/misc/cups/default.nix +++ b/pkgs/misc/cups/default.nix @@ -5,7 +5,7 @@ ### IMPORTANT: before updating cups, make sure the nixos/tests/printing.nix test ### works at least for your platform. -let version = "2.0.4"; in +let version = "2.1.3"; in with stdenv.lib; stdenv.mkDerivation { @@ -15,7 +15,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.cups.org/software/${version}/cups-${version}-source.tar.bz2"; - sha256 = "1gaakz24k6x5nc09rmpiq0xq20j1qdjc3szag8qwmyi4ky6ydmg1"; + sha256 = "1lyl3z01xhg9xb9c8m42398c6h9kw8qr6jwiv8bjdsjab11hv9rn"; }; buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls libpaper ] @@ -53,7 +53,6 @@ stdenv.mkDerivation { # Idem for /etc. "PAMDIR=$(out)/etc/pam.d" "DBUSDIR=$(out)/etc/dbus-1" - "INITDIR=$(out)/etc/rc.d" "XINETD=$(out)/etc/xinetd.d" "SERVERROOT=$(out)/etc/cups" # Idem for /usr. @@ -63,6 +62,8 @@ stdenv.mkDerivation { "CUPS_PRIMARY_SYSTEM_GROUP=root" ]; + enableParallelBuilding = true; + postInstall = '' # Delete obsolete stuff that conflicts with cups-filters. rm -rf $out/share/cups/banners $out/share/cups/data/testprint From 8b124b752179a5e28dc75bf4adbfd6f49bb85cdb Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 22 Feb 2016 12:22:29 +0300 Subject: [PATCH 097/291] nixos.tests.printing: fix for new CUPS version It looks like now queue is not immediately cleared from cancelled jobs. Instead, files like "c00001" are left alongside "d00001-001", and cleanup happens at some later point of time. Also, all new jobs are assigned consecutive numbers now (00002, 00003 etc.). So when original d00001 file is finally cleaned, it breaks the test. Fixed by checking for any "d*" file inside the queue and cleaning it by ourselves to ensure that each job works correctly. --- nixos/tests/printing.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/tests/printing.nix b/nixos/tests/printing.nix index 02980cee2fb..10d69b446cd 100644 --- a/nixos/tests/printing.nix +++ b/nixos/tests/printing.nix @@ -78,7 +78,7 @@ import ./make-test.nix ({pkgs, ... }: { # (showing that the right filters have been applied). Of # course, since there is no actual USB printer attached, the # file will stay in the queue forever. - $server->waitForFile("/var/spool/cups/d00001-001"); + $server->waitForFile("/var/spool/cups/d*-001"); $server->sleep(10); $server->succeed("lpq -a") =~ /$fn/ or die; @@ -90,6 +90,9 @@ import ./make-test.nix ({pkgs, ... }: { Machine::retry sub { return 1 if $server->succeed("lpq -a") =~ /no entries/; }; + # The queue is empty already, so this should be safe. + # Otherwise, pairs of "c*"-"d*-001" files might persist. + $server->execute("rm /var/spool/cups/*"); }; } ''; From 04ef62d557ac31e734942d5ddffc4a3bee426672 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Mon, 22 Feb 2016 11:01:17 +0100 Subject: [PATCH 098/291] pythonPackages.flask_sqlalchemy: init at 2.1 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f3905760b95..11fcde3f5d9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8833,6 +8833,24 @@ in modules // { }; }; + flask_sqlalchemy = buildPythonPackage rec { + name = "Flask-SQLAlchemy-${version}"; + version = "2.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/F/Flask-SQLAlchemy/${name}.tar.gz"; + sha256 = "1i9ps5d5snih9xlqhrvmi3qfiygkmqzxh92n25kj4pf89kj4s965"; + }; + + propagatedBuildInputs = with self ; [ flask sqlalchemy_1_0 ]; + + meta = { + description = "SQLAlchemy extension for Flask"; + homepage = http://flask-sqlalchemy.pocoo.org/; + license = licenses.bsd3; + }; + }; + wtforms = buildPythonPackage rec { version = "2.0.2"; name = "wtforms-${version}"; From 1053cfa4d5e2fff51c399fcbbdca0c19a6727e10 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Mon, 22 Feb 2016 11:01:40 +0100 Subject: [PATCH 099/291] pythonPackages.flask_migrate: init at 1.7.0 --- pkgs/top-level/python-packages.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 11fcde3f5d9..cc7bf8328ce 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8774,6 +8774,31 @@ in modules // { }; }; + flask_migrate = buildPythonPackage rec { + name = "Flask-Migrate-${version}"; + version = "1.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/F/Flask-Migrate/Flask-Migrate-1.7.0.tar.gz"; + sha256 = "16d7vnaj9xmxvb3qbcmhahm3ldfdhzzi6y221h62x4v1v1jayx7v"; + }; + + # When tests run with python3*, tests should run commands as "python3 ", + # not "python " + patchPhase = '' + substituteInPlace tests/test_migrate.py --replace "python" "${python.executable}" + substituteInPlace tests/test_multidb_migrate.py --replace "python" "${python.executable}" + ''; + + propagatedBuildInputs = with self ; [ flask flask_sqlalchemy flask_script alembic ]; + + meta = { + description = "SQLAlchemy database migrations for Flask applications using Alembic"; + license = licenses.mit; + homepage = https://github.com/miguelgrinberg/Flask-Migrate; + }; + }; + flask_principal = buildPythonPackage rec { name = "Flask-Principal-${version}"; version = "0.4.0"; From 389d04cbe7e346e3f0e628a22d5dc5e7286d1843 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 22 Feb 2016 11:41:21 +0100 Subject: [PATCH 100/291] curl: 7.47.0 -> 7.47.1 --- pkgs/tools/networking/curl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix index 910d86066d9..c75cceb46a5 100644 --- a/pkgs/tools/networking/curl/default.nix +++ b/pkgs/tools/networking/curl/default.nix @@ -18,11 +18,11 @@ assert scpSupport -> libssh2 != null; assert c-aresSupport -> c-ares != null; stdenv.mkDerivation rec { - name = "curl-7.47.0"; + name = "curl-7.47.1"; src = fetchurl { url = "http://ngcobalt13.uxnr.de/mirror/curl/${name}.tar.bz2"; - sha256 = "0riz70pjg82gbcfi2ndvsksb2dv55g31ir8piph2p6zvhy9ny29b"; + sha256 = "13z9gba3q2ybp50z0gdkzhwcx9m0i7qkvm278yz4pql2jfml7inx"; }; nativeBuildInputs = [ pkgconfig perl ]; From ac9ab2c3f5d3bfb22c86945293e82ffca324ee23 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 18 Feb 2016 19:26:17 +0300 Subject: [PATCH 101/291] PULL_REQUEST_TEMPLATE: init --- .github/PULL_REQUEST_TEMPLATE.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000000..787524c7575 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ +###### Things done: +- [ ] Tested via `nix.useChroot`. +- [ ] Built on platform(s): . +- [ ] Tested compilation of all pkgs that depend on this change. +- [ ] Tested execution of binary products. +- [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md). + +###### Extra +Fixes # . + +cc @ . + +--- + +_Please note, that points are not mandatory._ From 32e3475e93f9193dbf47961cf43e0440b936331b Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 22 Feb 2016 12:27:34 +0100 Subject: [PATCH 102/291] pythonPackages.github-cli: enable tests --- pkgs/top-level/python-packages.nix | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f3905760b95..7a667a81359 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2738,15 +2738,22 @@ in modules // { }; github-cli = buildPythonPackage rec { - name = "github-cli-1.0.0"; - - propagatedBuildInputs = with self; [ simplejson ]; - doCheck = false; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/github-cli/${name}.tar.gz"; - sha256 = "0csr8q208a0nixxs8mx6nbak19sylcpjcng50c2i6qldsxfbh1af"; + version = "1.0.0"; + name = "github-cli-${version}"; + src = pkgs.fetchFromGitHub { + owner = "jsmits"; + repo = "github-cli"; + rev = version; + sha256 = "16bwn42wqd76zs97v8p6mqk79p5i2mb06ljk67lf8gy6kvqc1x8y"; }; + + buildInputs = with self; [ nose pkgs.git ]; + propagatedBuildInputs = with self; [ simplejson ]; + + # skipping test_issues_cli.py since it requires access to the github.com + patchPhase = "rm tests/test_issues_cli.py"; + checkPhase = "nosetests tests/"; + meta.maintainers = with maintainers; [ garbas ]; }; From 0918c6f08f2f6e9794afc7a1111a32e47e7dd06c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 22 Feb 2016 12:43:53 +0100 Subject: [PATCH 103/291] Add LTS Haskell 5.3. Also add aliases that point to the respective latest LTS version. --- pkgs/top-level/haskell-packages.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 2eadcbeefef..404d0968d40 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -154,6 +154,7 @@ rec { lts-0_7 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.7.nix { }; }; + lts-0 = packages.lts-0_7; lts-1_0 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.0.nix { }; @@ -197,6 +198,7 @@ rec { lts-1_15 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.15.nix { }; }; + lts-1 = packages.lts-1_15; lts-2_0 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.0.nix { }; @@ -267,6 +269,7 @@ rec { lts-2_22 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.22.nix { }; }; + lts-2 = packages.lts-2_22; lts-3_0 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.0.nix { }; @@ -331,6 +334,7 @@ rec { lts-3_20 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.20.nix { }; }; + lts-3 = packages.lts-3_20; lts-4_0 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-4.0.nix { }; @@ -341,6 +345,7 @@ rec { lts-4_2 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-4.2.nix { }; }; + lts-4 = packages.lts-4_2; lts-5_0 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.0.nix { }; @@ -351,6 +356,11 @@ rec { lts-5_2 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.2.nix { }; }; + lts-5_3 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.3.nix { }; + }; + lts-5 = packages.lts-5_3; + lts = packages.lts-5; }; } From 5f772ebf5546f3ec5e8633ff54cf0c8581cf5463 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 22 Feb 2016 06:18:27 -0600 Subject: [PATCH 104/291] melpaStablePackages 2016-02-22 --- .../emacs-modes/melpa-stable-generated.nix | 3338 +++++++++-------- 1 file changed, 1838 insertions(+), 1500 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix index b682fdb830c..559418bd05c 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix @@ -10,7 +10,7 @@ sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; @@ -31,7 +31,7 @@ sha256 = "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; @@ -52,7 +52,7 @@ sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; @@ -73,7 +73,7 @@ sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; @@ -94,7 +94,7 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; @@ -115,7 +115,7 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; @@ -136,7 +136,7 @@ sha256 = "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; @@ -157,7 +157,7 @@ sha256 = "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; @@ -178,7 +178,7 @@ sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; @@ -199,7 +199,7 @@ sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; @@ -220,7 +220,7 @@ sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; @@ -241,7 +241,7 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; @@ -262,7 +262,7 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; @@ -283,7 +283,7 @@ sha256 = "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; @@ -304,7 +304,7 @@ sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; @@ -325,7 +325,7 @@ sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; @@ -346,7 +346,7 @@ sha256 = "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; @@ -367,7 +367,7 @@ sha256 = "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; @@ -388,7 +388,7 @@ sha256 = "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; @@ -409,7 +409,7 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; @@ -430,7 +430,7 @@ sha256 = "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; @@ -451,7 +451,7 @@ sha256 = "0qz8q9qzr7nqdhyjf01p50949bkps62nckampahv9bli4w92xckz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-php"; sha256 = "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk"; name = "ac-php"; }; @@ -483,7 +483,7 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; @@ -504,7 +504,7 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; @@ -525,7 +525,7 @@ sha256 = "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; @@ -546,7 +546,7 @@ sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; @@ -567,7 +567,7 @@ sha256 = "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; @@ -580,15 +580,15 @@ ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "ace-jump-helm-line"; - version = "0.3.3"; + version = "0.4.0"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-jump-helm-line"; - rev = "8259c2bd34486c3929c3425f3354d70cdb478c69"; - sha256 = "0rrdh7jq23dyplq5rsf6f3a8v5f8smrzi85dgvqagasv74d19jbv"; + rev = "0f9a440f0d263a5f99c2a978e5b41310bf73d7ea"; + sha256 = "1hsnsncarhvkhl2r6cg1x23vgfqzrwcbmdfkwasfgs7pgnd722m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; @@ -609,7 +609,7 @@ sha256 = "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; @@ -630,7 +630,7 @@ sha256 = "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; @@ -651,7 +651,7 @@ sha256 = "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; @@ -672,7 +672,7 @@ sha256 = "1614xypwiv8xri7w921w7gj26zx7pvwk3212k71qn0capq7hs32g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; @@ -693,7 +693,7 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; @@ -714,7 +714,7 @@ sha256 = "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; @@ -735,7 +735,7 @@ sha256 = "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; @@ -756,7 +756,7 @@ sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; @@ -777,7 +777,7 @@ sha256 = "1mb7dlyd5w161xagwn6w5h4q660dppkd50m71vz0w3zmxsc9a0vq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; @@ -798,7 +798,7 @@ sha256 = "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; @@ -819,7 +819,7 @@ sha256 = "0hpsv2zyhhfm53hrd2lzvc9gpvfn6g5dpwmzxfl8l1sqjisips2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; @@ -832,15 +832,15 @@ aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "1.4.2"; + version = "1.5"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; - rev = "970c5e3bd4519deed8b8b604a5a96269166bf697"; - sha256 = "0nss26rz8qly0q00iq7i7q4ss3xvs4s5ndjjmfxhybmnb71a8y9k"; + rev = "1b831d21ac9688e3f31703f0b492202f6d24a75b"; + sha256 = "0g8mhfab55a4jvb00kcv9f8cyx4l4d5qyfvp7sf7z12qnkik7b6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; @@ -861,7 +861,7 @@ sha256 = "1qqrf9ncc3blkv4p2bhh9q6y41pp9p4wr667mm80vb5j8rkpsaa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; @@ -882,7 +882,7 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; @@ -903,7 +903,7 @@ sha256 = "0m05wxvvygc4rpkgnnmk6zrp3d8fylzzjz5ag7lh0jk5al4gfay5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; @@ -924,7 +924,7 @@ sha256 = "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; @@ -945,7 +945,7 @@ sha256 = "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; @@ -966,7 +966,7 @@ sha256 = "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; @@ -987,7 +987,7 @@ sha256 = "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; @@ -1008,7 +1008,7 @@ sha256 = "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; @@ -1029,7 +1029,7 @@ sha256 = "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; @@ -1050,7 +1050,7 @@ sha256 = "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; @@ -1071,7 +1071,7 @@ sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; @@ -1092,7 +1092,7 @@ sha256 = "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; @@ -1113,7 +1113,7 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; @@ -1134,7 +1134,7 @@ sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansi"; sha256 = "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1"; name = "ansi"; }; @@ -1155,7 +1155,7 @@ sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; @@ -1176,7 +1176,7 @@ sha256 = "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; @@ -1197,7 +1197,7 @@ sha256 = "1i1xb04g17f6029w0n8fp55gklgr9kh6c24m9dfrkn5q3dlvd26p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; @@ -1218,7 +1218,7 @@ sha256 = "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; @@ -1238,7 +1238,7 @@ sha256 = "86b90766ccb31a492998299092a3d0b892a8ac0bdb8e1833ef75fa6d79c7c721"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; @@ -1259,7 +1259,7 @@ sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; @@ -1280,7 +1280,7 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; @@ -1301,7 +1301,7 @@ sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; @@ -1322,7 +1322,7 @@ sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; @@ -1343,7 +1343,7 @@ sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; @@ -1364,7 +1364,7 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; @@ -1385,7 +1385,7 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; @@ -1406,7 +1406,7 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; @@ -1427,7 +1427,7 @@ sha256 = "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; @@ -1448,7 +1448,7 @@ sha256 = "01ig5v5f2xya7hyq678nd8j8x972yfbni813c0imxkkba996a2k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; @@ -1469,7 +1469,7 @@ sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/aurora-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurora-config-mode"; sha256 = "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm"; name = "aurora-config-mode"; }; @@ -1490,7 +1490,7 @@ sha256 = "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; @@ -1511,7 +1511,7 @@ sha256 = "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; @@ -1532,7 +1532,7 @@ sha256 = "0q880dksf3bj1hixa4zhj3ybvrqf1wcnjnmb37i49qwdy6p1ma06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; @@ -1553,7 +1553,7 @@ sha256 = "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; @@ -1574,7 +1574,7 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; @@ -1595,7 +1595,7 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; @@ -1616,7 +1616,7 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; @@ -1637,7 +1637,7 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; @@ -1658,7 +1658,7 @@ sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; @@ -1679,7 +1679,7 @@ sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; @@ -1700,7 +1700,7 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; @@ -1721,7 +1721,7 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; @@ -1742,7 +1742,7 @@ sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; @@ -1763,7 +1763,7 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; @@ -1784,7 +1784,7 @@ sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; @@ -1805,7 +1805,7 @@ sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; @@ -1826,7 +1826,7 @@ sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; @@ -1847,7 +1847,7 @@ sha256 = "1564yv9330vjymw3xnikc2lz20f65n40fbl8m1zs1gp4nlgzkk38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; @@ -1860,15 +1860,15 @@ avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "avy-migemo"; - version = "0.2.11"; + version = "0.3"; src = fetchFromGitHub { owner = "momomo5717"; repo = "avy-migemo"; - rev = "f2498ed4a476a554c84716f5a8131f9b78a45185"; - sha256 = "098bkqb2cndjx93jacj6p54xfy14m1iknvpv1y5rffy9p4l2cbd3"; + rev = "d95d0485f2fc580a918c4769f669d273c7a6c334"; + sha256 = "0n1c5xvr782zgvby38w6wxrqac1lx35n0m7rl4ki325c6dchkgsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; @@ -1889,7 +1889,7 @@ sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; @@ -1910,7 +1910,7 @@ sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; @@ -1931,7 +1931,7 @@ sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -1958,7 +1958,7 @@ sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; @@ -1979,7 +1979,7 @@ sha256 = "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; @@ -2000,7 +2000,7 @@ sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; @@ -2021,7 +2021,7 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; @@ -2042,7 +2042,7 @@ sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; @@ -2063,7 +2063,7 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; @@ -2084,7 +2084,7 @@ sha256 = "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/beeminder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beeminder"; sha256 = "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx"; name = "beeminder"; }; @@ -2105,7 +2105,7 @@ sha256 = "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; @@ -2126,7 +2126,7 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; @@ -2147,7 +2147,7 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; @@ -2168,7 +2168,7 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; @@ -2189,7 +2189,7 @@ sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; @@ -2210,7 +2210,7 @@ sha256 = "1j2ar9sinbrraqvymqmjray48xbr1arhpigzgkgnhkc2zzqv8dwb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; @@ -2231,7 +2231,7 @@ sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; @@ -2252,7 +2252,7 @@ sha256 = "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; @@ -2273,7 +2273,7 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; @@ -2294,7 +2294,7 @@ sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; @@ -2315,7 +2315,7 @@ sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; @@ -2336,7 +2336,7 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; @@ -2357,7 +2357,7 @@ sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; @@ -2378,7 +2378,7 @@ sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; @@ -2399,7 +2399,7 @@ sha256 = "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; @@ -2420,7 +2420,7 @@ sha256 = "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; @@ -2441,7 +2441,7 @@ sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; @@ -2462,7 +2462,7 @@ sha256 = "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; @@ -2483,7 +2483,7 @@ sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; @@ -2504,7 +2504,7 @@ sha256 = "0lpfx7q0qrclxii4ffrrjffb678bsx908za91nsy7mc2g0cxcapb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; @@ -2525,7 +2525,7 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; @@ -2546,7 +2546,7 @@ sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; @@ -2567,7 +2567,7 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; @@ -2588,7 +2588,7 @@ sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; @@ -2609,7 +2609,7 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; @@ -2630,7 +2630,7 @@ sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; @@ -2651,7 +2651,7 @@ sha256 = "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; @@ -2672,7 +2672,7 @@ sha256 = "152d5ym4bqnlnp6rafgy8fafx8246n78ymlcx9k2nyfar4c0lir2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; @@ -2693,7 +2693,7 @@ sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; @@ -2714,7 +2714,7 @@ sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; @@ -2735,7 +2735,7 @@ sha256 = "0padb1zfjkmx9kbqnqh744qvpd3ln0khwxifxld9cpcpdp5k04vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; @@ -2756,7 +2756,7 @@ sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; @@ -2777,7 +2777,7 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; @@ -2798,7 +2798,7 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; @@ -2819,7 +2819,7 @@ sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; @@ -2840,7 +2840,7 @@ sha256 = "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; @@ -2861,7 +2861,7 @@ sha256 = "190gr30bscl80awilcjflwy9n7nvlz0hzmzmpx1wsa3wj3zf89yy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; @@ -2882,7 +2882,7 @@ sha256 = "0vb03k10i8vwy5wv65xl15kcsh9zz4y2xhpgndih87ssckdnhhlw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; @@ -2903,7 +2903,7 @@ sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; @@ -2924,7 +2924,7 @@ sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; @@ -2945,7 +2945,7 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; @@ -2966,7 +2966,7 @@ sha256 = "1bk7h7h6sqf1qb5lpmmigx7aviyw65dnj3724q55ld6pgpy5q6vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; @@ -2987,7 +2987,7 @@ sha256 = "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; @@ -3008,7 +3008,7 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; @@ -3029,7 +3029,7 @@ sha256 = "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; @@ -3050,7 +3050,7 @@ sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; @@ -3060,18 +3060,39 @@ license = lib.licenses.free; }; }) {}; + click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "click-mode"; + version = "0.0.3"; + src = fetchFromGitHub { + owner = "bmalehorn"; + repo = "click-mode"; + rev = "4e39ef28e65124671f53fb5eaef8c7b87c4deab8"; + sha256 = "1n8114h0azjyavq4bzny2nasl4wsz8k7li002gqjvi0snw16yypn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/click-mode"; + sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; + name = "click-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/click-mode"; + license = lib.licenses.free; + }; + }) {}; cliphist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "cliphist"; - version = "0.1.1"; + version = "0.2.0"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cliphist"; - rev = "c0db2da95fa3d3a58160f465c636989bb4b251d5"; - sha256 = "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q"; + rev = "413af96bbd0dfc8b264f5b8e3920c319af065c50"; + sha256 = "07q8naxhag2q0m5cb9c2n5js6j5qdrjyyiqbcpxmq598b8mw8kzd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; @@ -3092,7 +3113,7 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; @@ -3102,18 +3123,18 @@ license = lib.licenses.free; }; }) {}; - clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: + clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: melpaBuild { pname = "clj-refactor"; - version = "1.1.0"; + version = "2.0.0"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clj-refactor.el"; - rev = "a0a35b6fb0a2f31973d5e5b711f0aac0314d7168"; - sha256 = "1w0lv2d916wxfakcy11avmn9f6nsmxff02dpyih5kx6ncgqv1bnd"; + rev = "9c628f2ca9ba6dfdfb1e24d804accc71d873fae0"; + sha256 = "1prqdyr36sqf3dzxriv9lb3p6021nlacf2xgn5xxj7k7hp3z8d85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -3122,6 +3143,8 @@ dash edn emacs + hydra + inflections multiple-cursors paredit s @@ -3143,7 +3166,7 @@ sha256 = "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; @@ -3164,7 +3187,7 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; @@ -3185,7 +3208,7 @@ sha256 = "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; @@ -3206,7 +3229,7 @@ sha256 = "1bhgvj4w8k4ycndnxgfnifc065jbxq8vsxfz3s6w64qx54biqxj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; @@ -3227,7 +3250,7 @@ sha256 = "1bhgvj4w8k4ycndnxgfnifc065jbxq8vsxfz3s6w64qx54biqxj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; @@ -3248,7 +3271,7 @@ sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; @@ -3269,7 +3292,7 @@ sha256 = "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; @@ -3290,7 +3313,7 @@ sha256 = "1bhnlcsvl1qsi36a5kz8i857spzybprsbsywpqrmjpndn74n8690"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; @@ -3311,7 +3334,7 @@ sha256 = "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; @@ -3324,15 +3347,15 @@ cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-mode"; - version = "3.5.0pre1"; + version = "3.5.0pre3"; src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "8a8d22cf1e5d20b7c3b32c1ec9b5f06b339c2a50"; - sha256 = "1yppsh0sh2m8m4x34abdiq1d2k7g4gjhf24m9av0h5kg8kd46f2b"; + rev = "d203761520f5dd21a9cc4de5c4ca0d0e4e188e34"; + sha256 = "0caxmqbx6lq9xarra1zxm2yvcf699fgk9fawp3mrg587yb3w0961"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; @@ -3353,7 +3376,7 @@ sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; @@ -3374,7 +3397,7 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; @@ -3395,7 +3418,7 @@ sha256 = "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; @@ -3416,7 +3439,7 @@ sha256 = "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; @@ -3437,7 +3460,7 @@ sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; @@ -3458,7 +3481,7 @@ sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; @@ -3479,7 +3502,7 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; @@ -3500,7 +3523,7 @@ sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; @@ -3521,7 +3544,7 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; @@ -3534,15 +3557,15 @@ commenter = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "commenter"; - version = "0.5.1"; + version = "0.5.2"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "commenter"; - rev = "eec3bf91a57ff3aa3b93c36611e136572f031571"; - sha256 = "1jvjwk776p9qrbr3j0368nqv8ydp8k0s6c66nfpcqf33rz4w1h1g"; + rev = "6d1885419434ba779270c6fda0e30d390bb074bd"; + sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; @@ -3563,7 +3586,7 @@ sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; @@ -3584,7 +3607,7 @@ sha256 = "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; @@ -3605,7 +3628,7 @@ sha256 = "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; @@ -3626,7 +3649,7 @@ sha256 = "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; @@ -3647,7 +3670,7 @@ sha256 = "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; @@ -3668,7 +3691,7 @@ sha256 = "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; @@ -3689,7 +3712,7 @@ sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; @@ -3710,7 +3733,7 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; @@ -3731,7 +3754,7 @@ sha256 = "1gdsaa8zcs3layivn3ndbd5z1zflblmbxl251ld67bq763ga49cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; @@ -3752,7 +3775,7 @@ sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; @@ -3773,7 +3796,7 @@ sha256 = "009f0p0sggfn0yz7sivkcv8zygvv4ssbwqykbxgdxh9n6zk4hjky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; @@ -3794,7 +3817,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; @@ -3807,15 +3830,15 @@ company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: melpaBuild { pname = "company-quickhelp"; - version = "1.2.0"; + version = "1.3.0"; src = fetchFromGitHub { owner = "expez"; repo = "company-quickhelp"; - rev = "05e0ee9b854f90ff2b007b3e19446a02513f43dc"; - sha256 = "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl"; + rev = "39e206f7797962992aa1e555c293b6d872d6718b"; + sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; @@ -3836,7 +3859,7 @@ sha256 = "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -3863,7 +3886,7 @@ sha256 = "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; @@ -3884,7 +3907,7 @@ sha256 = "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; @@ -3905,7 +3928,7 @@ sha256 = "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; @@ -3926,7 +3949,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; @@ -3947,7 +3970,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; @@ -3968,7 +3991,7 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; @@ -3989,7 +4012,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; @@ -4010,7 +4033,7 @@ sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; @@ -4031,7 +4054,7 @@ sha256 = "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; @@ -4052,7 +4075,7 @@ sha256 = "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; @@ -4062,18 +4085,39 @@ license = lib.licenses.free; }; }) {}; + coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }: + melpaBuild { + pname = "coverage"; + version = "0.2"; + src = fetchFromGitHub { + owner = "trezona-lecomte"; + repo = "coverage"; + rev = "f7e78bb9502d3893ef876274c992743f49c0a1a7"; + sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coverage"; + sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; + name = "coverage"; + }; + packageRequires = [ cl-lib ov ]; + meta = { + homepage = "http://melpa.org/#/coverage"; + license = lib.licenses.free; + }; + }) {}; cpputils-cmake = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cpputils-cmake"; - version = "0.5.2"; + version = "0.5.4"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cpputils-cmake"; - rev = "d11e5496a0bf885900e7d0d004decc66f95dda3f"; - sha256 = "03nzbrvvs31xgaqhxmrj9bypywsg42q06k4z4z1fpjssg9az0j4p"; + rev = "f18c96750b1b2f4e1537fac7df2818524ccda665"; + sha256 = "0ky59gz5pvi4m5b9rh13ywfmclrmiwalynpqw652rmc6yfzv0fnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; @@ -4094,7 +4138,7 @@ sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; @@ -4115,7 +4159,7 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; @@ -4128,15 +4172,15 @@ crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crux"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "bbatsov"; repo = "crux"; - rev = "7d4e425af79c5756c243f74e86884680e671c2e1"; - sha256 = "1way14a4rhrqkby40wr21q6yxhl4qi0a0x89jzf21jdzsbykvaik"; + rev = "1e591c5a1ecfa99fcd67105a58b2e7d782abf969"; + sha256 = "13kkpilijr0q455srgn8yhzqikxask11z8d3rji7cc1yw7kf6y0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; @@ -4157,7 +4201,7 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; @@ -4178,7 +4222,7 @@ sha256 = "0dqih7cy57sciqn5vz5fiwynpld96qldyl7jcgn9qpwnzb401ayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; @@ -4199,7 +4243,7 @@ sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; @@ -4218,7 +4262,7 @@ sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; @@ -4239,7 +4283,7 @@ sha256 = "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; @@ -4260,7 +4304,7 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; @@ -4281,7 +4325,7 @@ sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; @@ -4302,7 +4346,7 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; @@ -4323,7 +4367,7 @@ sha256 = "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; @@ -4344,7 +4388,7 @@ sha256 = "0kbk2gp2avp0da32mr003ziigmi98zi0fvwia4knylllmrkl3pvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; @@ -4365,7 +4409,7 @@ sha256 = "0apg6cpwjhp8spqq8yyfp56y3pn991sfc85kfnifyhz6v3y6vwv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; @@ -4386,7 +4430,7 @@ sha256 = "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/darcula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darcula-theme"; sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; name = "darcula-theme"; }; @@ -4407,7 +4451,7 @@ sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; @@ -4428,7 +4472,7 @@ sha256 = "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; @@ -4449,7 +4493,7 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; @@ -4470,7 +4514,7 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; @@ -4491,7 +4535,7 @@ sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; @@ -4512,7 +4556,7 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; @@ -4533,7 +4577,7 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; @@ -4554,7 +4598,7 @@ sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; @@ -4575,7 +4619,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; @@ -4596,7 +4640,7 @@ sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; @@ -4615,7 +4659,7 @@ sha256 = "eb5c178337c0bd6a001114aac685bb0d23167050970274203d93c1c0caece1e8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; @@ -4636,7 +4680,7 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; @@ -4657,7 +4701,7 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; @@ -4678,7 +4722,7 @@ sha256 = "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; @@ -4698,7 +4742,7 @@ sha256 = "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/desktop-registry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop-registry"; sha256 = "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr"; name = "desktop-registry"; }; @@ -4719,7 +4763,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; @@ -4740,7 +4784,7 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; @@ -4761,7 +4805,7 @@ sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; @@ -4782,7 +4826,7 @@ sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; @@ -4803,7 +4847,7 @@ sha256 = "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; @@ -4824,7 +4868,7 @@ sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; @@ -4845,7 +4889,7 @@ sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; @@ -4866,7 +4910,7 @@ sha256 = "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; @@ -4879,15 +4923,15 @@ dired-atool = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-atool"; - version = "0.1.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "HKey"; repo = "dired-atool"; - rev = "608675ead3bd57c180e6ef493aef04d9ac4035a3"; - sha256 = "0k4grfphl2ap8npnfrc8q3xv7nm3jc1lgblgxb1v8jm585ycb7fd"; + rev = "a2470f805c8cfbeee459b000edaaa5474bac35f9"; + sha256 = "1d813b4wiamif48v0za5invnss52mn7yw3hzrlxd4918gy5y2r74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; @@ -4908,7 +4952,7 @@ sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; @@ -4929,7 +4973,7 @@ sha256 = "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; @@ -4950,7 +4994,7 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; @@ -4971,7 +5015,7 @@ sha256 = "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; @@ -4992,7 +5036,7 @@ sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; @@ -5013,7 +5057,7 @@ sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; @@ -5034,7 +5078,7 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; @@ -5055,7 +5099,7 @@ sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; @@ -5076,7 +5120,7 @@ sha256 = "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; @@ -5097,7 +5141,7 @@ sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; @@ -5118,7 +5162,7 @@ sha256 = "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; @@ -5139,7 +5183,7 @@ sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; @@ -5160,7 +5204,7 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; @@ -5181,7 +5225,7 @@ sha256 = "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; @@ -5202,7 +5246,7 @@ sha256 = "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dracula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dracula-theme"; sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r"; name = "dracula-theme"; }; @@ -5223,7 +5267,7 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; @@ -5244,7 +5288,7 @@ sha256 = "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drag-stuff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drag-stuff"; sha256 = "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc"; name = "drag-stuff"; }; @@ -5265,7 +5309,7 @@ sha256 = "12lxqrcfv5salmcslw3kggymcwwc0lzq1b6iqd7x4zizp0sjf09s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; @@ -5286,7 +5330,7 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; @@ -5307,7 +5351,7 @@ sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; @@ -5317,6 +5361,27 @@ license = lib.licenses.free; }; }) {}; + dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + melpaBuild { + pname = "dumb-jump"; + version = "0.2.5"; + src = fetchFromGitHub { + owner = "jacktasia"; + repo = "dumb-jump"; + rev = "e1135a2bf8685726c9c083f444a9aa49d3ca56f5"; + sha256 = "1hrlsyrqd0kpapw119mic5ilksb7y5ddmmc62hzbaqs7xmhzp52j"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dumb-jump"; + sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; + name = "dumb-jump"; + }; + packageRequires = [ dash f s ]; + meta = { + homepage = "http://melpa.org/#/dumb-jump"; + license = lib.licenses.free; + }; + }) {}; dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dyalog-mode"; @@ -5327,7 +5392,7 @@ sha256 = "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; @@ -5348,7 +5413,7 @@ sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; @@ -5369,7 +5434,7 @@ sha256 = "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; @@ -5390,7 +5455,7 @@ sha256 = "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; @@ -5411,7 +5476,7 @@ sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; @@ -5432,7 +5497,7 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; @@ -5453,7 +5518,7 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; @@ -5474,7 +5539,7 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; @@ -5495,7 +5560,7 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; @@ -5516,7 +5581,7 @@ sha256 = "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; @@ -5537,7 +5602,7 @@ sha256 = "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; @@ -5558,7 +5623,7 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; @@ -5579,7 +5644,7 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; @@ -5589,6 +5654,27 @@ license = lib.licenses.free; }; }) {}; + ebf = callPackage ({ cl-lib ? null, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ebf"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "rexim"; + repo = "ebf"; + rev = "d0bd4fe1abbe327e7d9228eff09927fec57e8378"; + sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebf"; + sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; + name = "ebf"; + }; + packageRequires = [ cl-lib dash dash-functional ]; + meta = { + homepage = "http://melpa.org/#/ebf"; + license = lib.licenses.free; + }; + }) {}; ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: melpaBuild { pname = "ebib"; @@ -5600,7 +5686,7 @@ sha256 = "159w19hx3gmhv8n2amkm6i999vdrz5132bjwk28qpiq37v1v7dd5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; @@ -5621,7 +5707,7 @@ sha256 = "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; @@ -5642,7 +5728,7 @@ sha256 = "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; @@ -5663,7 +5749,7 @@ sha256 = "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; @@ -5684,7 +5770,7 @@ sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; @@ -5705,7 +5791,7 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; @@ -5726,7 +5812,7 @@ sha256 = "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; @@ -5739,15 +5825,15 @@ editorconfig = callPackage ({ editorconfig-core, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "0.7.2"; + version = "0.7.3"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "460be7416529ceecd3647f7e15d1d20a202f12b7"; - sha256 = "03vgcvxpp8inlhmxkd2cpp7ywjbl0ccz0lq7s46212dpk99fbd91"; + rev = "a327a42f3fdc2ab6d0e8226b3a22f4bab7e536bb"; + sha256 = "0x6kb6zwkacw344zp8lprfmhm1mz2x7arn9ddgm53x410sbs71kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/editorconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig"; sha256 = "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35"; name = "editorconfig"; }; @@ -5760,15 +5846,15 @@ editorconfig-core = callPackage ({ cl-lib ? null, editorconfig-fnmatch, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig-core"; - version = "0.7.2"; + version = "0.7.3"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "460be7416529ceecd3647f7e15d1d20a202f12b7"; - sha256 = "03vgcvxpp8inlhmxkd2cpp7ywjbl0ccz0lq7s46212dpk99fbd91"; + rev = "a327a42f3fdc2ab6d0e8226b3a22f4bab7e536bb"; + sha256 = "0x6kb6zwkacw344zp8lprfmhm1mz2x7arn9ddgm53x410sbs71kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/editorconfig-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-core"; sha256 = "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r"; name = "editorconfig-core"; }; @@ -5781,15 +5867,15 @@ editorconfig-fnmatch = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig-fnmatch"; - version = "0.7.2"; + version = "0.7.3"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "460be7416529ceecd3647f7e15d1d20a202f12b7"; - sha256 = "03vgcvxpp8inlhmxkd2cpp7ywjbl0ccz0lq7s46212dpk99fbd91"; + rev = "a327a42f3fdc2ab6d0e8226b3a22f4bab7e536bb"; + sha256 = "0x6kb6zwkacw344zp8lprfmhm1mz2x7arn9ddgm53x410sbs71kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/editorconfig-fnmatch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-fnmatch"; sha256 = "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv"; name = "editorconfig-fnmatch"; }; @@ -5810,7 +5896,7 @@ sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; @@ -5831,7 +5917,7 @@ sha256 = "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -5852,7 +5938,7 @@ sha256 = "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; @@ -5873,7 +5959,7 @@ sha256 = "16m7h477z10bmaymmgpj2id6l98iyrsp5wf69wd56534kh6qcajg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; @@ -5892,7 +5978,7 @@ sha256 = "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; @@ -5913,7 +5999,7 @@ sha256 = "1si9zk4iwgkfn5p9x48hy1laz8r5m5vbyahy1andxrfxnb9fi0kj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; @@ -5934,7 +6020,7 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; @@ -5955,7 +6041,7 @@ sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; @@ -5976,7 +6062,7 @@ sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; @@ -5997,7 +6083,7 @@ sha256 = "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; @@ -6018,7 +6104,7 @@ sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; @@ -6039,7 +6125,7 @@ sha256 = "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; @@ -6060,7 +6146,7 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; @@ -6081,7 +6167,7 @@ sha256 = "0hlj6jn9gmi00sqghxswkxpgk65c4gy2k7010vpkr2257rd4f3gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; @@ -6102,7 +6188,7 @@ sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; @@ -6123,7 +6209,7 @@ sha256 = "1bqdg5sr4hkiqndr4hcdjscfdyj56jb4wr1kqgwy1hy4ccr9mkrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; @@ -6144,7 +6230,7 @@ sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; @@ -6165,7 +6251,7 @@ sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; @@ -6186,7 +6272,7 @@ sha256 = "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; @@ -6207,7 +6293,7 @@ sha256 = "07kgzdla31nc146xya21rn4hyr76h5lyabla8yh4qjsvnknb7cbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; @@ -6228,7 +6314,7 @@ sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elixir-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-yasnippets"; sha256 = "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a"; name = "elixir-yasnippets"; }; @@ -6241,15 +6327,15 @@ elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "0.9.3"; + version = "0.9.5"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "61671af42d2162b06ee06b4857bc4a63bf82a57b"; - sha256 = "0cjxvmsfjki8zal31zbf4ynf7i0gy5vykpq6858qpa68vkd1p0iz"; + rev = "47ea2e8d06e9f39be4e1d5a79b6cc634f9d46e58"; + sha256 = "0qiwzcpwiwlkjy89pxvss3gvjvbp4d6qpaxnbm50va1gbn21n72v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; @@ -6270,7 +6356,7 @@ sha256 = "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; @@ -6291,7 +6377,7 @@ sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; @@ -6312,7 +6398,7 @@ sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; @@ -6333,7 +6419,7 @@ sha256 = "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; @@ -6354,7 +6440,7 @@ sha256 = "1xjm9b32a9nfzvphj6vm0dqcr4i072zcx29kcgiyyni8zbgbwmwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpy"; sha256 = "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709"; name = "elpy"; }; @@ -6381,7 +6467,7 @@ sha256 = "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; @@ -6402,7 +6488,7 @@ sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; @@ -6423,7 +6509,7 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; @@ -6444,7 +6530,7 @@ sha256 = "12svv24qclkcdb5sniq0xbbsj34hq835s2v636xkb07dpmy644lg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; @@ -6465,7 +6551,7 @@ sha256 = "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; @@ -6486,7 +6572,7 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; @@ -6507,7 +6593,7 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; @@ -6528,7 +6614,7 @@ sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; @@ -6549,7 +6635,7 @@ sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; @@ -6570,7 +6656,7 @@ sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; @@ -6591,7 +6677,7 @@ sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; @@ -6612,7 +6698,7 @@ sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; @@ -6633,7 +6719,7 @@ sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; @@ -6654,7 +6740,7 @@ sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emmet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emmet-mode"; sha256 = "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819"; name = "emmet-mode"; }; @@ -6667,15 +6753,15 @@ emms-mode-line-cycle = callPackage ({ emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mode-line-cycle"; - version = "0.2.4"; + version = "0.2.5"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-mode-line-cycle"; - rev = "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295"; - sha256 = "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938"; + rev = "2c2f395e484a1d345050ddd61ff5fab71a92a6bc"; + sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; @@ -6696,7 +6782,7 @@ sha256 = "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; @@ -6717,7 +6803,7 @@ sha256 = "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; @@ -6738,7 +6824,7 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; @@ -6759,7 +6845,7 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; @@ -6780,7 +6866,7 @@ sha256 = "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emojify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emojify"; sha256 = "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17"; name = "emojify"; }; @@ -6801,7 +6887,7 @@ sha256 = "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -6832,7 +6918,7 @@ sha256 = "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; @@ -6853,7 +6939,7 @@ sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; @@ -6874,7 +6960,7 @@ sha256 = "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; @@ -6884,6 +6970,27 @@ license = lib.licenses.free; }; }) {}; + eopengrok = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, s }: + melpaBuild { + pname = "eopengrok"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "youngker"; + repo = "eopengrok.el"; + rev = "30154a083b2fd8cbb9336d0d2134f790efd4163b"; + sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eopengrok"; + sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; + name = "eopengrok"; + }; + packageRequires = [ cl-lib dash magit s ]; + meta = { + homepage = "http://melpa.org/#/eopengrok"; + license = lib.licenses.free; + }; + }) {}; epc = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epc"; @@ -6895,7 +7002,7 @@ sha256 = "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; @@ -6916,7 +7023,7 @@ sha256 = "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; @@ -6937,7 +7044,7 @@ sha256 = "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; @@ -6947,6 +7054,26 @@ license = lib.licenses.free; }; }) {}; + erc-hipchatify = callPackage ({ alert, emacs, fetchhg, fetchurl, lib, melpaBuild, request, s }: + melpaBuild { + pname = "erc-hipchatify"; + version = "0.1"; + src = fetchhg { + url = "https://bitbucket.com/seanfarley/erc-hipchatify"; + rev = "a1a163004d98"; + sha256 = "0bk4vr26abhbiwkmpns4hdlg23pxa25lca78fhz1900jkv4imk0f"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hipchatify"; + sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; + name = "erc-hipchatify"; + }; + packageRequires = [ alert emacs request s ]; + meta = { + homepage = "http://melpa.org/#/erc-hipchatify"; + license = lib.licenses.free; + }; + }) {}; erc-hl-nicks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-hl-nicks"; @@ -6958,7 +7085,7 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; @@ -6979,7 +7106,7 @@ sha256 = "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; @@ -7000,7 +7127,7 @@ sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; @@ -7021,7 +7148,7 @@ sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; @@ -7042,7 +7169,7 @@ sha256 = "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; @@ -7063,7 +7190,7 @@ sha256 = "1g7grv3zs5lydkxhwzdc3caqym11m20mx43m3hd5jgc96smg0433"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; @@ -7084,7 +7211,7 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; @@ -7104,7 +7231,7 @@ sha256 = "63a8fb532260f56569ce20f911788054624a7a29f149ed6036d9f997ae0457c3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; @@ -7125,7 +7252,7 @@ sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; @@ -7146,7 +7273,7 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; @@ -7156,22 +7283,22 @@ license = lib.licenses.free; }; }) {}; - es-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-mode"; - version = "4.1.0"; + version = "4.1.1"; src = fetchFromGitHub { owner = "dakrone"; repo = "es-mode"; - rev = "c8674924e566416ead90d837d3f3b00127d4a0e1"; - sha256 = "1vd5kry46bi3rg4l4330bdkh5slk821a6w4vzzphdqwk61fir81b"; + rev = "b3f67ca152fb55d2625468afd6983f54507f43aa"; + sha256 = "0avvkfmqsa1ld5f6cx98sliidzi42iax1c78059r4k5z5kz24x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; - packageRequires = [ dash ]; + packageRequires = [ cl-lib dash ]; meta = { homepage = "http://melpa.org/#/es-mode"; license = lib.licenses.free; @@ -7188,7 +7315,7 @@ sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; @@ -7209,7 +7336,7 @@ sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; @@ -7230,7 +7357,7 @@ sha256 = "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; @@ -7251,7 +7378,7 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; @@ -7272,7 +7399,7 @@ sha256 = "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; @@ -7293,7 +7420,7 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; @@ -7314,7 +7441,7 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; @@ -7335,7 +7462,7 @@ sha256 = "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; @@ -7356,7 +7483,7 @@ sha256 = "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; @@ -7377,7 +7504,7 @@ sha256 = "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; @@ -7398,7 +7525,7 @@ sha256 = "1a33yy455yx2188vxnhylgzg4zc0hhrw52dmpc4svxs7h1229pwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; @@ -7419,7 +7546,7 @@ sha256 = "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; @@ -7440,7 +7567,7 @@ sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; @@ -7456,11 +7583,11 @@ version = "1.2.10"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "5c0114702ea3"; - sha256 = "1sysqcvzdnzg5qvawv3c0rwfyacjb80mvfdhdmc07vr4pyma6vcj"; + rev = "70005dd4c11e"; + sha256 = "0hdysszfc3796d19nyw1f4cqzisspih1if0hh9hp2xjgxh3vj0mw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; @@ -7481,7 +7608,7 @@ sha256 = "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; @@ -7502,7 +7629,7 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; @@ -7515,15 +7642,15 @@ evil-commentary = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-commentary"; - version = "1.2.1"; + version = "2.0.0"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-commentary"; - rev = "122880a6721fcf16479f406c78c6e490a25efab0"; - sha256 = "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a"; + rev = "6d9079894da0bdda8a317c03c90481b8754635c7"; + sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; @@ -7544,7 +7671,7 @@ sha256 = "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; @@ -7565,7 +7692,7 @@ sha256 = "0r2367lbzcdhglvjjcamrzn5fmqy0jalcws8r0yc2al1vbsrn0fr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; @@ -7586,7 +7713,7 @@ sha256 = "1yrd9zvp23xwmxvw9hrhfwhwfczh4lxxk65mcvy69q6wwd03z5vn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-jumper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-jumper"; sha256 = "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x"; name = "evil-jumper"; }; @@ -7607,7 +7734,7 @@ sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; @@ -7628,7 +7755,7 @@ sha256 = "12l3gnhirq8jz0dqyj9m02l1fg5rh78fdyskslprxp5vfa4ngzkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; @@ -7649,7 +7776,7 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; @@ -7670,7 +7797,7 @@ sha256 = "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; @@ -7691,7 +7818,7 @@ sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; @@ -7712,7 +7839,7 @@ sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; @@ -7733,7 +7860,7 @@ sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; @@ -7754,7 +7881,7 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; @@ -7767,15 +7894,15 @@ evil-rsi = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-rsi"; - version = "1.1.1"; + version = "2.0.0"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-rsi"; - rev = "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61"; - sha256 = "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq"; + rev = "236bf6ed1e2285698db808463e5f2f69f5f5e7c0"; + sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; @@ -7796,7 +7923,7 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; @@ -7817,7 +7944,7 @@ sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; @@ -7838,7 +7965,7 @@ sha256 = "143lgpvbjrddbgnyh9dfdhjj0gp69slv4fkiq53czz85ffwli5ig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; @@ -7859,7 +7986,7 @@ sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; @@ -7880,7 +8007,7 @@ sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; @@ -7901,7 +8028,7 @@ sha256 = "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; @@ -7922,7 +8049,7 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; @@ -7943,7 +8070,7 @@ sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; @@ -7964,7 +8091,7 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; @@ -7985,7 +8112,7 @@ sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; @@ -8006,7 +8133,7 @@ sha256 = "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; @@ -8027,7 +8154,7 @@ sha256 = "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; @@ -8048,7 +8175,7 @@ sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; @@ -8069,7 +8196,7 @@ sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; @@ -8090,7 +8217,7 @@ sha256 = "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; @@ -8111,7 +8238,7 @@ sha256 = "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; @@ -8132,7 +8259,7 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; @@ -8153,7 +8280,7 @@ sha256 = "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; @@ -8174,7 +8301,7 @@ sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; @@ -8195,7 +8322,7 @@ sha256 = "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; @@ -8216,7 +8343,7 @@ sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; @@ -8237,7 +8364,7 @@ sha256 = "03w68zbgprly45i6ps7iviwvjf3acbc7f7acvjpzj2plf0g5i19z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; @@ -8258,7 +8385,7 @@ sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; @@ -8279,7 +8406,7 @@ sha256 = "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; @@ -8300,7 +8427,7 @@ sha256 = "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; @@ -8321,7 +8448,7 @@ sha256 = "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; @@ -8342,7 +8469,7 @@ sha256 = "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; @@ -8363,7 +8490,7 @@ sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; @@ -8384,7 +8511,7 @@ sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fiplr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fiplr"; sha256 = "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i"; name = "fiplr"; }; @@ -8405,7 +8532,7 @@ sha256 = "1rz56n2gmw11w2yxlhn0i8xmig9m8lxihgaikg65xmy9nqa5j7bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; @@ -8426,7 +8553,7 @@ sha256 = "174x0qyrwswppc9p1q1nn4424r3zg7g49zk329k5aq18vyjz52d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; @@ -8447,7 +8574,7 @@ sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; @@ -8468,7 +8595,7 @@ sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; @@ -8489,7 +8616,7 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; @@ -8510,7 +8637,7 @@ sha256 = "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; @@ -8531,7 +8658,7 @@ sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -8559,7 +8686,7 @@ sha256 = "12b1b7avjdbfm184mcg3bh3s6k0ygfz1sraz8q7qnrsyw4170893"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; @@ -8580,7 +8707,7 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; @@ -8601,7 +8728,7 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; @@ -8622,7 +8749,7 @@ sha256 = "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; @@ -8643,7 +8770,7 @@ sha256 = "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; @@ -8664,7 +8791,7 @@ sha256 = "18nhfj0vx8rg2236nb9475s27rhyb34m81i7l6zkhifqba6rb0bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; @@ -8685,7 +8812,7 @@ sha256 = "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; @@ -8706,7 +8833,7 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; @@ -8727,7 +8854,7 @@ sha256 = "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; @@ -8748,7 +8875,7 @@ sha256 = "0j2mvf3zjznwkm8dykcgs1v5sz0i882mrivghxqr3h6n3ni4wag4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; @@ -8769,7 +8896,7 @@ sha256 = "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; @@ -8790,7 +8917,7 @@ sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; @@ -8811,7 +8938,7 @@ sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; @@ -8832,7 +8959,7 @@ sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; @@ -8853,7 +8980,7 @@ sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; @@ -8874,7 +9001,7 @@ sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; @@ -8887,15 +9014,15 @@ flycheck-status-emoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-status-emoji"; - version = "1.1"; + version = "1.2.1"; src = fetchFromGitHub { owner = "liblit"; repo = "flycheck-status-emoji"; - rev = "37ed04b76b7338afd2237d3a11487bef3970ff0f"; - sha256 = "0yi2xmk0bxzqmjf9sy3r3gacqw7z1jrf6hwn05zaqqgn7y78z37i"; + rev = "1c67e62562a5c30b3a184ef5090bbe50bab4d681"; + sha256 = "1xxvri9ax5cjrkxhjqhs7zqbch9cx8kvrn7sg611frl68qawkjsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; @@ -8916,7 +9043,7 @@ sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; @@ -8937,7 +9064,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; @@ -8958,7 +9085,7 @@ sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; @@ -8979,7 +9106,7 @@ sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; @@ -9000,7 +9127,7 @@ sha256 = "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; @@ -9021,7 +9148,7 @@ sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; @@ -9042,7 +9169,7 @@ sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; @@ -9063,7 +9190,7 @@ sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; @@ -9084,7 +9211,7 @@ sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; @@ -9105,7 +9232,7 @@ sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; @@ -9126,7 +9253,7 @@ sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; @@ -9147,7 +9274,7 @@ sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; @@ -9168,7 +9295,7 @@ sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; @@ -9189,7 +9316,7 @@ sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; @@ -9210,7 +9337,7 @@ sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; @@ -9231,7 +9358,7 @@ sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; @@ -9252,7 +9379,7 @@ sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; @@ -9273,7 +9400,7 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; @@ -9294,7 +9421,7 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; @@ -9315,7 +9442,7 @@ sha256 = "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; @@ -9336,7 +9463,7 @@ sha256 = "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; @@ -9357,7 +9484,7 @@ sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; @@ -9378,7 +9505,7 @@ sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; @@ -9399,7 +9526,7 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; @@ -9420,7 +9547,7 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; @@ -9441,7 +9568,7 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; @@ -9462,7 +9589,7 @@ sha256 = "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; @@ -9475,15 +9602,15 @@ forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "forecast"; - version = "0.1.9"; + version = "0.2.0"; src = fetchFromGitHub { owner = "cadadr"; repo = "forecast.el"; - rev = "51526906140700f076bd329753abe7ae31b6da90"; - sha256 = "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21"; + rev = "e96252759d23fda2ffb254685309b0c5b8a17a95"; + sha256 = "12135l9crjkans3w40by3qflj07awdqs5qm855jkngb3ri9xsfvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; @@ -9504,7 +9631,7 @@ sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; @@ -9525,7 +9652,7 @@ sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; @@ -9546,7 +9673,7 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; @@ -9559,15 +9686,15 @@ fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fountain-mode"; - version = "1.5.1"; + version = "2.0.1"; src = fetchFromGitHub { owner = "rnkn"; repo = "fountain-mode"; - rev = "a7ba3d78dcffe92105701efbf2630089a068b3da"; - sha256 = "1187kbw06sv6yirrldbqwi44nfsg4a0rxa8c79p6ld82kcp16kns"; + rev = "4627868e70408b9608a47980d6cfda10024221d5"; + sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; @@ -9588,7 +9715,7 @@ sha256 = "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; @@ -9609,7 +9736,7 @@ sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; @@ -9630,7 +9757,7 @@ sha256 = "115xl18nsg2j9sbp3qqzrjfpnzczk1zmrwrfrpqjq3jmv21ilsv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; @@ -9649,7 +9776,7 @@ sha256 = "b348e285923e480fe696f888783c95becb392a6e05abc553d8be649987c7d190"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; @@ -9670,7 +9797,7 @@ sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; @@ -9683,15 +9810,15 @@ fullframe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fullframe"; - version = "0.3.0"; + version = "0.4.0"; src = fetchFromGitHub { owner = "tomterl"; repo = "fullframe"; - rev = "684f28fcb306d0232c2a7840f3fe4c933382729c"; - sha256 = "1cjplkcsq4wlw1ixsfxih2xcx43wgzvmznxmkynqsgvn2f4w4g1f"; + rev = "3c046dd4c27a5c96d9dc3bc50a44eb1e7fd68912"; + sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; @@ -9712,7 +9839,7 @@ sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; @@ -9733,7 +9860,7 @@ sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; @@ -9754,7 +9881,7 @@ sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; @@ -9775,7 +9902,7 @@ sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; @@ -9796,7 +9923,7 @@ sha256 = "1sk2z71xfi4wqb7ap8jvad8cbzdbilwzqx9vy45zmgx1jh7g4ba9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; @@ -9817,7 +9944,7 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; @@ -9838,7 +9965,7 @@ sha256 = "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; @@ -9859,7 +9986,7 @@ sha256 = "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; @@ -9880,7 +10007,7 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; @@ -9901,7 +10028,7 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; @@ -9922,7 +10049,7 @@ sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; @@ -9943,7 +10070,7 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; @@ -9964,7 +10091,7 @@ sha256 = "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; @@ -9985,7 +10112,7 @@ sha256 = "1m5q2s9nxm0m18njaxzryjly8rl3m598r94nn53xpazd4i5ln8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc"; sha256 = "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g"; name = "ghc"; }; @@ -10006,7 +10133,7 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; @@ -10027,7 +10154,7 @@ sha256 = "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; @@ -10048,7 +10175,7 @@ sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; @@ -10069,7 +10196,7 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; @@ -10090,7 +10217,7 @@ sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; @@ -10111,7 +10238,7 @@ sha256 = "0dydm0gj6jbybi5nkqrpi5bic5yxhz0p5k5gayqzqzmnb1fhl247"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; @@ -10132,8 +10259,8 @@ sha256 = "0n02nss7gp0m898g7zw4rkj2kzrdiwp6mli0753p1fqph28j0gvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter"; - sha256 = "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter"; + sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; packageRequires = [ cl-lib emacs ]; @@ -10153,8 +10280,8 @@ sha256 = "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter-fringe"; - sha256 = "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe"; + sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; packageRequires = [ cl-lib emacs fringe-helper git-gutter ]; @@ -10174,7 +10301,7 @@ sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; @@ -10195,7 +10322,7 @@ sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; @@ -10216,7 +10343,7 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; @@ -10237,7 +10364,7 @@ sha256 = "171w8vx1r2v9yclnlk3mwbfaxhg0kbvk575jvi6vr9shpjqnrb0z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; @@ -10258,7 +10385,7 @@ sha256 = "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; @@ -10279,7 +10406,7 @@ sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; @@ -10300,7 +10427,7 @@ sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; @@ -10321,7 +10448,7 @@ sha256 = "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; @@ -10342,7 +10469,7 @@ sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; @@ -10363,7 +10490,7 @@ sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; @@ -10384,7 +10511,7 @@ sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; @@ -10405,7 +10532,7 @@ sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; @@ -10426,7 +10553,7 @@ sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; @@ -10447,7 +10574,7 @@ sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; @@ -10468,7 +10595,7 @@ sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; @@ -10489,7 +10616,7 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; @@ -10510,7 +10637,7 @@ sha256 = "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; @@ -10531,7 +10658,7 @@ sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; @@ -10552,7 +10679,7 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; @@ -10573,7 +10700,7 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; @@ -10594,7 +10721,7 @@ sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; @@ -10615,7 +10742,7 @@ sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-desktop-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-desktop-notify"; sha256 = "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b"; name = "gnus-desktop-notify"; }; @@ -10636,7 +10763,7 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; @@ -10657,7 +10784,7 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; @@ -10678,7 +10805,7 @@ sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; @@ -10699,7 +10826,7 @@ sha256 = "0ha07nhd2g43l84r1r5dz6c8m3fmmn4bx5mhvi6as33achhip7bn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; @@ -10720,7 +10847,7 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; @@ -10741,7 +10868,7 @@ sha256 = "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; @@ -10762,7 +10889,7 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; @@ -10783,7 +10910,7 @@ sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; @@ -10804,7 +10931,7 @@ sha256 = "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; @@ -10825,7 +10952,7 @@ sha256 = "0hvxyqkxv5hfsa9sv71m7d98g25a1xc962r961nw6vmbvsf64z6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; @@ -10846,7 +10973,7 @@ sha256 = "0vf42j9jpa75879pxb1h7qgflcrrg78dgq5lg8v0sbpy7z86zaxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; @@ -10867,7 +10994,7 @@ sha256 = "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; @@ -10888,7 +11015,7 @@ sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; @@ -10909,7 +11036,7 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; @@ -10930,7 +11057,7 @@ sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; @@ -10951,7 +11078,7 @@ sha256 = "1rv6klh59y70shc7kwdzlksdzmy0881ss49c0h5m93cn5pd6aj1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; @@ -10972,7 +11099,7 @@ sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; @@ -10993,7 +11120,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -11026,7 +11153,7 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; @@ -11047,7 +11174,7 @@ sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; @@ -11068,7 +11195,7 @@ sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; @@ -11088,7 +11215,7 @@ sha256 = "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; @@ -11107,7 +11234,7 @@ sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; @@ -11128,7 +11255,7 @@ sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grizzl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grizzl"; sha256 = "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24"; name = "grizzl"; }; @@ -11149,7 +11276,7 @@ sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; @@ -11170,7 +11297,7 @@ sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; @@ -11191,7 +11318,7 @@ sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; @@ -11212,7 +11339,7 @@ sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; @@ -11233,7 +11360,7 @@ sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; @@ -11254,7 +11381,7 @@ sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; @@ -11275,7 +11402,7 @@ sha256 = "1ffk39lnmg9gfffkaj595p768d1p99q6sqym5g5ch6fmi6cx3a84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; @@ -11296,7 +11423,7 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; @@ -11317,7 +11444,7 @@ sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; @@ -11338,7 +11465,7 @@ sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; @@ -11359,7 +11486,7 @@ sha256 = "0mbdnsm903s380ajjgjjqa0m4mxsddzqfjdafrngy0pxgs16iv1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; @@ -11380,7 +11507,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; @@ -11401,7 +11528,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; @@ -11422,7 +11549,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; @@ -11443,7 +11570,7 @@ sha256 = "0433ay8azn1q9fk7rc5aw4klc9r2p7s44xzd87i0pgpdp154h52g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; @@ -11464,7 +11591,7 @@ sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; @@ -11484,7 +11611,7 @@ sha256 = "02786f437bbbbb221c9c810a8d110bb4af172b986733ac35c932b18b38af7201"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; @@ -11505,7 +11632,7 @@ sha256 = "14m8z13nvfqqgx40vzzbn0z9crwi3hhacmk1zfbv9cmhs95dwy6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; @@ -11526,7 +11653,7 @@ sha256 = "15h1wkl1d9f2xfhm0nffqicg31rw7z2q0sizjphys9ljgxm43is4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; @@ -11547,7 +11674,7 @@ sha256 = "0cylf0mnfj0m1wm9mxpxrkiinrlvpax99mdnsc6zfj3zrn1qghnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; @@ -11568,7 +11695,7 @@ sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; @@ -11589,8 +11716,8 @@ sha256 = "0ksx48n3g5n7ny2ny65bp3xx3p5g464dwxq30aji2b40yivaj0sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ag"; - sha256 = "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ag"; + sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; packageRequires = [ emacs helm ]; @@ -11610,7 +11737,7 @@ sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; @@ -11631,7 +11758,7 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; @@ -11652,7 +11779,7 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; @@ -11673,7 +11800,7 @@ sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; @@ -11686,15 +11813,15 @@ helm-circe = callPackage ({ circe, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-circe"; - version = "0.3"; + version = "0.4"; src = fetchFromGitHub { owner = "lesharris"; repo = "helm-circe"; - rev = "0b7ecf5380971ee7b6291fca6a2805c320638238"; - sha256 = "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0"; + rev = "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a"; + sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; @@ -11715,7 +11842,7 @@ sha256 = "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; @@ -11736,7 +11863,7 @@ sha256 = "0cylf0mnfj0m1wm9mxpxrkiinrlvpax99mdnsc6zfj3zrn1qghnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; @@ -11757,7 +11884,7 @@ sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; @@ -11778,7 +11905,7 @@ sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; @@ -11799,7 +11926,7 @@ sha256 = "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; @@ -11820,7 +11947,7 @@ sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; @@ -11841,7 +11968,7 @@ sha256 = "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; @@ -11862,7 +11989,7 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; @@ -11883,7 +12010,7 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; @@ -11904,7 +12031,7 @@ sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; @@ -11925,8 +12052,8 @@ sha256 = "1hqmwbdcjssvvl7prdykhlgbfrf4qylkvqp0nnnxp8r1wy6h6aws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-gtags"; - sha256 = "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gtags"; + sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; packageRequires = [ emacs helm ]; @@ -11946,7 +12073,7 @@ sha256 = "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; @@ -11967,7 +12094,7 @@ sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; @@ -11988,7 +12115,7 @@ sha256 = "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; @@ -12009,7 +12136,7 @@ sha256 = "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; @@ -12030,7 +12157,7 @@ sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; @@ -12051,7 +12178,7 @@ sha256 = "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; @@ -12072,7 +12199,7 @@ sha256 = "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; @@ -12093,7 +12220,7 @@ sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; @@ -12114,7 +12241,7 @@ sha256 = "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; @@ -12135,7 +12262,7 @@ sha256 = "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; @@ -12156,7 +12283,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; @@ -12177,8 +12304,8 @@ sha256 = "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-open-github"; - sha256 = "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-open-github"; + sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; packageRequires = [ cl-lib gh helm-core ]; @@ -12198,7 +12325,7 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; @@ -12219,7 +12346,7 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; @@ -12240,7 +12367,7 @@ sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; @@ -12261,8 +12388,8 @@ sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-perldoc"; - sha256 = "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-perldoc"; + sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; packageRequires = [ cl-lib deferred helm ]; @@ -12282,7 +12409,7 @@ sha256 = "0y0a18bj2k459fk51z7svnnasqkl78bx61y5ha1yv3sqnppgdw2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; @@ -12303,7 +12430,7 @@ sha256 = "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; @@ -12324,7 +12451,7 @@ sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; @@ -12334,6 +12461,27 @@ license = lib.licenses.free; }; }) {}; + helm-purpose = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, window-purpose }: + melpaBuild { + pname = "helm-purpose"; + version = "0.1"; + src = fetchFromGitHub { + owner = "bmag"; + repo = "helm-purpose"; + rev = "115a9d612aa07bb6f7f7b18f42b34918699660b9"; + sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-purpose"; + sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; + name = "helm-purpose"; + }; + packageRequires = [ emacs helm window-purpose ]; + meta = { + homepage = "http://melpa.org/#/helm-purpose"; + license = lib.licenses.free; + }; + }) {}; helm-pydoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-pydoc"; @@ -12345,8 +12493,8 @@ sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-pydoc"; - sha256 = "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pydoc"; + sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; packageRequires = [ cl-lib helm-core ]; @@ -12366,7 +12514,7 @@ sha256 = "1f1ijna97dn190if3nwk5s5rldlpryfb7wvgg0imwqyp25h4all7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; @@ -12387,7 +12535,7 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; @@ -12408,7 +12556,7 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; @@ -12429,7 +12577,7 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; @@ -12450,7 +12598,7 @@ sha256 = "0kz0vfp43n7f9l53rji2pb8v6ylg63i37q0bmidmjjvsinimwj44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; @@ -12471,7 +12619,7 @@ sha256 = "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; @@ -12492,8 +12640,8 @@ sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-themes"; - sha256 = "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-themes"; + sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; packageRequires = [ helm ]; @@ -12513,7 +12661,7 @@ sha256 = "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; @@ -12534,7 +12682,7 @@ sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; @@ -12555,7 +12703,7 @@ sha256 = "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; @@ -12576,7 +12724,7 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; @@ -12597,7 +12745,7 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; @@ -12618,7 +12766,7 @@ sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; @@ -12639,7 +12787,7 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; @@ -12660,7 +12808,7 @@ sha256 = "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; @@ -12681,7 +12829,7 @@ sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-parentheses"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-parentheses"; sha256 = "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k"; name = "highlight-parentheses"; }; @@ -12702,7 +12850,7 @@ sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; @@ -12723,7 +12871,7 @@ sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; @@ -12744,7 +12892,7 @@ sha256 = "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; @@ -12765,7 +12913,7 @@ sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; @@ -12786,7 +12934,7 @@ sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; @@ -12807,7 +12955,7 @@ sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; @@ -12828,7 +12976,7 @@ sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; @@ -12849,7 +12997,7 @@ sha256 = "12ab825dldiqymy4md8ssfnbbhrgczkwdiwd3llsdq6sayar16as"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-anything"; sha256 = "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k"; name = "hl-anything"; }; @@ -12870,7 +13018,7 @@ sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; @@ -12891,7 +13039,7 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; @@ -12912,7 +13060,7 @@ sha256 = "07irwpg794fdzsixmcbi1lnafj5gynhrdam7frcpmvb26a0l8fxq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; @@ -12933,7 +13081,7 @@ sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; @@ -12954,7 +13102,7 @@ sha256 = "1n8r4jrk71dg25ca6bsw11ky0dszdj4pvqwsmy3msqlji1ckvqyn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; @@ -12975,7 +13123,7 @@ sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; @@ -12996,7 +13144,7 @@ sha256 = "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; @@ -13017,7 +13165,7 @@ sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; @@ -13038,7 +13186,7 @@ sha256 = "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; @@ -13059,7 +13207,7 @@ sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; @@ -13080,7 +13228,7 @@ sha256 = "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; @@ -13101,7 +13249,7 @@ sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; @@ -13122,7 +13270,7 @@ sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; @@ -13143,7 +13291,7 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; @@ -13164,7 +13312,7 @@ sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; @@ -13185,7 +13333,7 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; @@ -13206,7 +13354,7 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; @@ -13227,7 +13375,7 @@ sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; @@ -13240,15 +13388,15 @@ ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-completing-read-plus"; - version = "3.10"; + version = "3.12"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; - rev = "1a97a38f2d1a51371853e44da659caa6baf78cbe"; - sha256 = "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn"; + rev = "a491b106d9da87bfe45121078563389a77f8788c"; + sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; @@ -13269,7 +13417,7 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; @@ -13290,7 +13438,7 @@ sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; @@ -13311,7 +13459,7 @@ sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; @@ -13332,7 +13480,7 @@ sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; @@ -13342,22 +13490,22 @@ license = lib.licenses.free; }; }) {}; - ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild, s }: + ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-ubiquitous"; - version = "3.10"; + version = "3.12"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; - rev = "1a97a38f2d1a51371853e44da659caa6baf78cbe"; - sha256 = "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn"; + rev = "a491b106d9da87bfe45121078563389a77f8788c"; + sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; - packageRequires = [ cl-lib emacs ido-completing-read-plus s ]; + packageRequires = [ cl-lib emacs ido-completing-read-plus ]; meta = { homepage = "http://melpa.org/#/ido-ubiquitous"; license = lib.licenses.free; @@ -13374,7 +13522,7 @@ sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; @@ -13384,22 +13532,22 @@ license = lib.licenses.free; }; }) {}; - ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-yes-or-no"; - version = "1.2"; + version = "1.4"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-yes-or-no"; - rev = "ff9d28ca86c8cbfe2fbeb3ee1a60e3983aa776e4"; - sha256 = "0i3s80ws3qbhb3vsvf09mbq661c5140v4phgbl4cz6z545ha2bj7"; + rev = "9ddee9e878ad62d58c9f4b3a7685f22b8e36e420"; + sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; - packageRequires = []; + packageRequires = [ ido-completing-read-plus ]; meta = { homepage = "http://melpa.org/#/ido-yes-or-no"; license = lib.licenses.free; @@ -13416,7 +13564,7 @@ sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; @@ -13437,7 +13585,7 @@ sha256 = "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; @@ -13458,7 +13606,7 @@ sha256 = "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; @@ -13479,7 +13627,7 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; @@ -13500,7 +13648,7 @@ sha256 = "1j40ldvgd7nr7pabi8mhzdvi0ml9n62m8mfjlh9nrbnkcsifs9rk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; @@ -13521,7 +13669,7 @@ sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; @@ -13542,7 +13690,7 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; @@ -13563,7 +13711,7 @@ sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; @@ -13584,7 +13732,7 @@ sha256 = "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenu-anywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-anywhere"; sha256 = "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8"; name = "imenu-anywhere"; }; @@ -13597,15 +13745,15 @@ imenu-list = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-list"; - version = "0.4"; + version = "0.5"; src = fetchFromGitHub { owner = "bmag"; repo = "imenu-list"; - rev = "1324cffd571df5e35113efc57e1cdc8490068f9c"; - sha256 = "192i3iaykw5a9fb9xaivfjj2pbziqdnadlrvqbxbl9h5wi52qq9c"; + rev = "a68d596b437ce1c125d8bd5414467ca1ff55bdcc"; + sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; @@ -13626,7 +13774,7 @@ sha256 = "18nx5z2vn0ikv4gxjprsqr63pcgf9s02gc3f769h8dji560kqxd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; @@ -13647,7 +13795,7 @@ sha256 = "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; @@ -13668,7 +13816,7 @@ sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; @@ -13689,7 +13837,7 @@ sha256 = "00gpyz63lqb2ydvjxjagf2cpja8gw6xbyw82cdj64k53mn86cyvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/import-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-js"; sha256 = "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls"; name = "import-js"; }; @@ -13710,7 +13858,7 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; @@ -13731,7 +13879,7 @@ sha256 = "1dmr1arqy2vs9jdjha513mvw3yfwgkn4zs728q83asjy91sfcz7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; @@ -13752,7 +13900,7 @@ sha256 = "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; @@ -13773,7 +13921,7 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; @@ -13794,7 +13942,7 @@ sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; @@ -13815,7 +13963,7 @@ sha256 = "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; @@ -13836,7 +13984,7 @@ sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; @@ -13857,7 +14005,7 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; @@ -13878,7 +14026,7 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; @@ -13899,7 +14047,7 @@ sha256 = "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; @@ -13919,7 +14067,7 @@ sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; @@ -13932,15 +14080,15 @@ interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interleave"; - version = "1.0.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "rudolfochrist"; repo = "interleave"; - rev = "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041"; - sha256 = "1bidhc4pgszx2gqsm125nw7i5ysy0mzc1ifcfkfgns1cpjr74rpn"; + rev = "6b28363eac939227c6cdc8a73a1d3ea5b002442d"; + sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; @@ -13961,7 +14109,7 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; @@ -13982,7 +14130,7 @@ sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; @@ -14003,7 +14151,7 @@ sha256 = "1wsh72dzm54srxdnlhnmbi8llc30syhbckycj5wmsamw8b89p7c2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; @@ -14024,7 +14172,7 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; @@ -14045,7 +14193,7 @@ sha256 = "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; @@ -14066,7 +14214,7 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; @@ -14085,7 +14233,7 @@ sha256 = "af89d7052e555c7b5efb0c21387a50699056659fb83698691b70e75c88e4cd34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; @@ -14106,7 +14254,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; @@ -14127,7 +14275,7 @@ sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; @@ -14148,7 +14296,7 @@ sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; @@ -14169,7 +14317,7 @@ sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; @@ -14182,15 +14330,15 @@ javadoc-lookup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "javadoc-lookup"; - version = "1.0.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "skeeto"; repo = "javadoc-lookup"; - rev = "0d5316407c9ec183040ca5c6ab71091b9444276f"; - sha256 = "0ljpqgp2w3lr61n2vr748n3wyshlqnnbin0643jffa319l99z35r"; + rev = "507a2dd443d60b537b8f779c1847e2cd0ccd1382"; + sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; @@ -14211,7 +14359,7 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; @@ -14232,7 +14380,7 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; @@ -14242,18 +14390,39 @@ license = lib.licenses.free; }; }) {}; + jq-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "jq-mode"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "ljos"; + repo = "jq-mode"; + rev = "7f03354a4c1e26796482c39ce543d1d1f075a18d"; + sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jq-mode"; + sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; + name = "jq-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/jq-mode"; + license = lib.licenses.free; + }; + }) {}; js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nvm }: melpaBuild { pname = "js-comint"; - version = "0.0.3"; + version = "0.0.4"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "js-comint"; - rev = "69c8475573f1ef1f59331027a0fe445161b51000"; - sha256 = "1gf6ir4viy8zr9fwmjz4s7zkr3m7947sa8mai56bnv83r2k3s9ir"; + rev = "c4114b41db94ef17720b67cb2b714d670f453cc4"; + sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; @@ -14274,7 +14443,7 @@ sha256 = "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; @@ -14295,7 +14464,7 @@ sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; @@ -14316,7 +14485,7 @@ sha256 = "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; @@ -14337,7 +14506,7 @@ sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; @@ -14358,7 +14527,7 @@ sha256 = "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; @@ -14379,7 +14548,7 @@ sha256 = "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; @@ -14400,7 +14569,7 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; @@ -14421,7 +14590,7 @@ sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; @@ -14442,7 +14611,7 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; @@ -14463,7 +14632,7 @@ sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; @@ -14484,7 +14653,7 @@ sha256 = "0kvk1qiy2cj0iw2c0mx0dyr3jjvhyj1gwym6l43n7clp5kqcij1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/julia-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/julia-mode"; sha256 = "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm"; name = "julia-mode"; }; @@ -14505,7 +14674,7 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; @@ -14526,7 +14695,7 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; @@ -14547,7 +14716,7 @@ sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; @@ -14568,7 +14737,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; @@ -14589,7 +14758,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; @@ -14610,7 +14779,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; @@ -14631,7 +14800,7 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; @@ -14652,7 +14821,7 @@ sha256 = "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; @@ -14673,7 +14842,7 @@ sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; @@ -14694,7 +14863,7 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; @@ -14715,7 +14884,7 @@ sha256 = "07h6s1wdc83cqf08vqm4gh2r7bihbar4a31wr0140fn4rbhicwdw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; @@ -14736,7 +14905,7 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; @@ -14757,7 +14926,7 @@ sha256 = "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; @@ -14778,7 +14947,7 @@ sha256 = "06ajkqxv71hcrwc707ybzwfw4yzbsp6basnbs493ryr41gnvmnzs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; @@ -14799,7 +14968,7 @@ sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; @@ -14820,7 +14989,7 @@ sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; @@ -14841,7 +15010,7 @@ sha256 = "1c5al7cyfnb0p5ya2aa5afadzbrrc079jx3r6zpkr64psskrhdv5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; @@ -14862,7 +15031,7 @@ sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; @@ -14883,7 +15052,7 @@ sha256 = "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; @@ -14904,7 +15073,7 @@ sha256 = "0rzzjzkzgpiadm9awkj7wrh2hg97lhgwxg74gvdis3fc1xg2hyri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; @@ -14917,15 +15086,15 @@ know-your-http-well = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "know-your-http-well"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { owner = "for-GET"; repo = "know-your-http-well"; - rev = "e208d856ce1b036d2dc1454813c6fc81f0269def"; - sha256 = "08q43k4450kgygyvqv18gwcmmb7y9x445401048lbixc4cp6p3cg"; + rev = "c381a9735f3ea86ebc9667e35cdfeab0b67fefb7"; + sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; @@ -14946,7 +15115,7 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; @@ -14967,7 +15136,7 @@ sha256 = "1i8wbhc6i88plpq48ccka0avdj2x5rcxm81j93dmwp70ld0zws8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; @@ -14988,7 +15157,7 @@ sha256 = "1rr6cgx70avqf1b19la7g8cav926676a76cflkkw18c1bsw83ss3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; @@ -15009,7 +15178,7 @@ sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; @@ -15019,6 +15188,27 @@ license = lib.licenses.free; }; }) {}; + latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "latex-unicode-math-mode"; + version = "0.2.3"; + src = fetchFromGitHub { + owner = "Christoph-D"; + repo = "latex-unicode-math-mode"; + rev = "71da85b55870aa870be722ced9d1f7df54b17f97"; + sha256 = "165qhh6cfrr24yg0qvpq4vk64a70z30nchkbbhhwg4f6ib7v5f5h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-unicode-math-mode"; + sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; + name = "latex-unicode-math-mode"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/latex-unicode-math-mode"; + license = lib.licenses.free; + }; + }) {}; ledger-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ledger-mode"; @@ -15026,11 +15216,11 @@ src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; - rev = "9b49ade03a3e5d9089ee031bdf733004cee8a36e"; - sha256 = "0cp5ywmk48sd7c8s8d5a0sv0ng4fl0hybss2z8fwhw6z47iypzmi"; + rev = "b7f84d69001f75a18807772dee514f5918e3a926"; + sha256 = "0vm32jv36s6kprmqbij5rpjg9djj3qsla4gpbpm8nycfg73bgylw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; @@ -15051,7 +15241,7 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; @@ -15072,7 +15262,7 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; @@ -15093,7 +15283,7 @@ sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; @@ -15114,7 +15304,7 @@ sha256 = "1w9n5v4g4w34gii6nk2aan4w230dmm0dhml4s9q1fzmvk1ngld6k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lfe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lfe-mode"; sha256 = "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx"; name = "lfe-mode"; }; @@ -15135,7 +15325,7 @@ sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; @@ -15156,7 +15346,7 @@ sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; @@ -15177,7 +15367,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; @@ -15198,7 +15388,7 @@ sha256 = "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; @@ -15219,7 +15409,7 @@ sha256 = "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; @@ -15240,7 +15430,7 @@ sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -15268,7 +15458,7 @@ sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; @@ -15289,7 +15479,7 @@ sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; @@ -15310,7 +15500,7 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; @@ -15331,7 +15521,7 @@ sha256 = "0dmcmvf3dxmp1f71nq5xwsdrnyb04qr14ay4ckpaca2bmi7q0x5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; @@ -15352,7 +15542,7 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; @@ -15373,7 +15563,7 @@ sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; @@ -15394,7 +15584,7 @@ sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; @@ -15404,22 +15594,22 @@ license = lib.licenses.free; }; }) {}; - live-py-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "2.8.1"; + version = "2.9.0"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "75c27e0110257e3138e24dc2de2a19244635a0bf"; - sha256 = "1y81qqsjj2sa319xkwhvq7bl3f5gma4cs7w8x2w510ms32fgqa8x"; + rev = "d7e8f86e615186afb514c1fdeb6eb9e62babd10a"; + sha256 = "0bkrs12b6zprkia9p41r5sd2n6y66bgxa6fmbz16v1gjpzzqdayq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { homepage = "http://melpa.org/#/live-py-mode"; license = lib.licenses.free; @@ -15436,7 +15626,7 @@ sha256 = "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; @@ -15457,7 +15647,7 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; @@ -15499,7 +15689,7 @@ sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; @@ -15520,7 +15710,7 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; @@ -15541,7 +15731,7 @@ sha256 = "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; @@ -15562,7 +15752,7 @@ sha256 = "1rpvw0dvym559vb4nrfy74jq06nbsz2b0n60lcykagcir8mpcidk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; @@ -15583,7 +15773,7 @@ sha256 = "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; @@ -15604,7 +15794,7 @@ sha256 = "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; @@ -15625,7 +15815,7 @@ sha256 = "01847f8xmjfxvvi7hf73l7ypkdazwg8ciinm117zp4jkgnv0apz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; @@ -15646,7 +15836,7 @@ sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; @@ -15667,7 +15857,7 @@ sha256 = "0dkigxa39f3cmndxw79mgadwsj7w3bphns6l2hzhv6w0wdllpifp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; @@ -15688,7 +15878,7 @@ sha256 = "0i38942lr4b7d624313hgydyy0ynmd6psjkz8xcvbb7gw0kcc436"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; @@ -15709,7 +15899,7 @@ sha256 = "0dydm0gj6jbybi5nkqrpi5bic5yxhz0p5k5gayqzqzmnb1fhl247"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -15737,7 +15927,7 @@ sha256 = "0d7dick96g1vj6c9wh10rgwhwv5j3ixgw1m3z45szszswlrp1bih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; @@ -15758,7 +15948,7 @@ sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; @@ -15779,7 +15969,7 @@ sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-find-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-find-file"; sha256 = "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b"; name = "magit-find-file"; }; @@ -15800,7 +15990,7 @@ sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; @@ -15821,7 +16011,7 @@ sha256 = "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; @@ -15831,22 +16021,22 @@ license = lib.licenses.free; }; }) {}; - magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: + magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }: melpaBuild { pname = "magit-gitflow"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "jtatarik"; repo = "magit-gitflow"; - rev = "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb"; - sha256 = "00711dgbzmplqrfww8xf261ymz3jmhisnv9x1rhcw0ywmlfkbckz"; + rev = "46dc3f20b6f6d5e91e9765da372c909e9cc7b355"; + sha256 = "1ar9gdp4svymibr9arrlxil1xm1x41gxinlifdb8lgpmawb62d9w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; - packageRequires = [ magit ]; + packageRequires = [ magit magit-popup ]; meta = { homepage = "http://melpa.org/#/magit-gitflow"; license = lib.licenses.free; @@ -15863,7 +16053,7 @@ sha256 = "0dydm0gj6jbybi5nkqrpi5bic5yxhz0p5k5gayqzqzmnb1fhl247"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; @@ -15884,7 +16074,7 @@ sha256 = "1pqbrrp4366kwfk1d32h2lb70id32ynfc03i7m2832w97f1xp16c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; @@ -15905,7 +16095,7 @@ sha256 = "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; @@ -15926,7 +16116,7 @@ sha256 = "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; @@ -15947,7 +16137,7 @@ sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; @@ -15968,7 +16158,7 @@ sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; @@ -15989,7 +16179,7 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; @@ -16010,7 +16200,7 @@ sha256 = "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; @@ -16031,7 +16221,7 @@ sha256 = "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; @@ -16052,7 +16242,7 @@ sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; @@ -16073,7 +16263,7 @@ sha256 = "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; @@ -16094,7 +16284,7 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; @@ -16115,7 +16305,7 @@ sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; @@ -16136,7 +16326,7 @@ sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; @@ -16146,18 +16336,19 @@ license = lib.licenses.free; }; }) {}; - markdown-mode = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: + markdown-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-mode"; version = "2.1"; - src = fetchgit { - url = "git://jblevins.org/git/markdown-mode.git"; + src = fetchFromGitHub { + owner = "jrblevin"; + repo = "markdown-mode"; rev = "c6eb56eff31f7961c9a00a5d18eaf939c2c40b7d"; - sha256 = "8091933b49e8dfe57aa10377bd434b7c9b5807e9b78aa7a301885a44db1f7481"; + sha256 = "098lf4n4rpx00sm07sy8dwp683a4sb7x0p15mrfp268apir3kkxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-mode"; - sha256 = "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode"; + sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; packageRequires = [ cl-lib ]; @@ -16177,7 +16368,7 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; @@ -16190,15 +16381,15 @@ markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }: melpaBuild { pname = "markdown-preview-mode"; - version = "0.2"; + version = "0.3"; src = fetchFromGitHub { owner = "ancane"; repo = "markdown-preview-mode"; - rev = "97d9276210465f4e9492169f3c0ed831a57cedf4"; - sha256 = "10h5zh03c3v0c6pqcxvlns6l70k2l916nqvza53ikjpldmc4mln2"; + rev = "ff75e31a57f62156441d66d5c4033ad204d49a87"; + sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; @@ -16219,7 +16410,7 @@ sha256 = "0jgr327qlh7acwi6sld27xdsvr89parspk6wmfklwszvy1v13633"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; @@ -16240,7 +16431,7 @@ sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; @@ -16261,7 +16452,7 @@ sha256 = "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; @@ -16282,7 +16473,7 @@ sha256 = "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; @@ -16302,7 +16493,7 @@ sha256 = "34e1f7bd0c4ab21b2b0ca6d2a6ba83c9a1a5591e9de9ceb1c5f8fe06a4738acb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; @@ -16323,7 +16514,7 @@ sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; @@ -16344,7 +16535,7 @@ sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; @@ -16365,7 +16556,7 @@ sha256 = "1si2givpzihjb1szbcdm3iy9kkm7bj0hq10s0h2dfm8axdnlirm5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; @@ -16386,7 +16577,7 @@ sha256 = "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; @@ -16407,7 +16598,7 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; @@ -16428,7 +16619,7 @@ sha256 = "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; @@ -16449,7 +16640,7 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; @@ -16470,7 +16661,7 @@ sha256 = "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; @@ -16487,12 +16678,12 @@ src = fetchFromGitHub { owner = "the-lambda-church"; repo = "merlin"; - rev = "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d"; - sha256 = "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn"; + rev = "a532512e15b10d04ffd8281ac5406160f2764005"; + sha256 = "1amb375dpy5al1ddh2ln9l1lw6xqfjigld6y5k7vvh730zild824"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/merlin"; - sha256 = "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/merlin"; + sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; packageRequires = []; @@ -16512,7 +16703,7 @@ sha256 = "0zxal6alf99a2zfzizckibp5iwdk9kklfhml2r0r3wfvswb0rb3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/metafmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metafmt"; sha256 = "0vx1xrjr10nd90cr6ppgd3kc3c8bhkg3m4clnb50zagkpfqsy9ma"; name = "metafmt"; }; @@ -16533,7 +16724,7 @@ sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/metaweblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metaweblog"; sha256 = "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y"; name = "metaweblog"; }; @@ -16554,7 +16745,7 @@ sha256 = "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; @@ -16575,7 +16766,7 @@ sha256 = "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; @@ -16596,7 +16787,7 @@ sha256 = "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; @@ -16617,7 +16808,7 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; @@ -16638,7 +16829,7 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; @@ -16659,7 +16850,7 @@ sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; @@ -16680,7 +16871,7 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; @@ -16701,7 +16892,7 @@ sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; @@ -16722,7 +16913,7 @@ sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; @@ -16742,7 +16933,7 @@ sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; @@ -16763,7 +16954,7 @@ sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; @@ -16784,7 +16975,7 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; @@ -16805,7 +16996,7 @@ sha256 = "1v915yy920yrwrrnw9bxggm1zvlm9ndjwv9ydln3r07b0a1mkka2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; @@ -16826,7 +17017,7 @@ sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; @@ -16847,7 +17038,7 @@ sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; @@ -16857,21 +17048,21 @@ license = lib.licenses.free; }; }) {}; - mode-icons = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: + mode-icons = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-icons"; - version = "0.1.0"; + version = "0.3.0"; src = fetchgit { url = "git://ryuslash.org/mode-icons.git"; - rev = "cbf412d0c47dfdbeac7587a0c12c96f58f546467"; - sha256 = "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40"; + rev = "d2c9926a8e79e13ef9942fe96b8109add24a9978"; + sha256 = "cb98bc1e199688337efd03bbd18a340514740257f9ede19089f01f5ad6e69b74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mode-icons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-icons"; sha256 = "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp"; name = "mode-icons"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "http://melpa.org/#/mode-icons"; license = lib.licenses.free; @@ -16888,7 +17079,7 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; @@ -16909,7 +17100,7 @@ sha256 = "02w7k4s4698p4adjy4a36na28sb1s2zw4xsjs7p2hv9iiw9kmyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; @@ -16930,7 +17121,7 @@ sha256 = "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; @@ -16951,7 +17142,7 @@ sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; @@ -16972,7 +17163,7 @@ sha256 = "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; @@ -16993,7 +17184,7 @@ sha256 = "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; @@ -17014,7 +17205,7 @@ sha256 = "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; @@ -17035,7 +17226,7 @@ sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; @@ -17056,7 +17247,7 @@ sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; @@ -17077,7 +17268,7 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; @@ -17098,7 +17289,7 @@ sha256 = "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; @@ -17119,7 +17310,7 @@ sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; @@ -17140,7 +17331,7 @@ sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; @@ -17161,7 +17352,7 @@ sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; @@ -17182,7 +17373,7 @@ sha256 = "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; @@ -17203,7 +17394,7 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; @@ -17224,7 +17415,7 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; @@ -17245,7 +17436,7 @@ sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; @@ -17266,7 +17457,7 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; @@ -17287,7 +17478,7 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; @@ -17308,7 +17499,7 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; @@ -17329,7 +17520,7 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; @@ -17350,7 +17541,7 @@ sha256 = "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; @@ -17371,7 +17562,7 @@ sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; @@ -17392,7 +17583,7 @@ sha256 = "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; @@ -17413,7 +17604,7 @@ sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; @@ -17434,7 +17625,7 @@ sha256 = "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; @@ -17455,7 +17646,7 @@ sha256 = "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; @@ -17476,7 +17667,7 @@ sha256 = "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; @@ -17497,7 +17688,7 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; @@ -17518,7 +17709,7 @@ sha256 = "1wc0cvmfhpvfzdy127d1n812q93dd9sp3mmqnc8jzy8i3frqqqq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; @@ -17531,15 +17722,15 @@ nix-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nix-mode"; - version = "1.11.1"; + version = "1.11.2"; src = fetchFromGitHub { owner = "NixOS"; repo = "nix"; - rev = "da4495eb1747a5ab8fe4a8e6ccd1c28fba684a0a"; - sha256 = "1rxj9rg3rg7yx874nsj65kam26s1bn96cnmys60dp0zh20gc1r1s"; + rev = "437d3cdc7ac2f75d51b1c9980f6720e071d785e2"; + sha256 = "1rvi30xyj2vj3gmzagy51smrhb1xwlsfgnyg30hblj88yn0wh5sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; @@ -17560,7 +17751,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; @@ -17581,7 +17772,7 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; @@ -17602,7 +17793,7 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; @@ -17621,7 +17812,7 @@ sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; @@ -17640,7 +17831,7 @@ sha256 = "fd2669401c276af12b6c9b739e835ee76b7910bba34bf850e4909c00e79adbd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch"; sha256 = "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r"; name = "notmuch"; }; @@ -17661,7 +17852,7 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; @@ -17682,7 +17873,7 @@ sha256 = "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; @@ -17703,7 +17894,7 @@ sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; @@ -17724,7 +17915,7 @@ sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; @@ -17745,7 +17936,7 @@ sha256 = "14vd0f4y5l470hx7kg54sx3352459mhjnrh7jl822gkl8c904lmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; @@ -17766,7 +17957,7 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; @@ -17787,7 +17978,7 @@ sha256 = "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; @@ -17808,7 +17999,7 @@ sha256 = "1zbqiqilms8vxqlvzb3gjh8gh2cl7cpmh3yiqsj94jx69w8dy4xl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; @@ -17829,7 +18020,7 @@ sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; @@ -17850,7 +18041,7 @@ sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; @@ -17871,7 +18062,7 @@ sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; @@ -17892,7 +18083,7 @@ sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; @@ -17913,7 +18104,7 @@ sha256 = "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; @@ -17934,7 +18125,7 @@ sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; @@ -17955,7 +18146,7 @@ sha256 = "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; @@ -17976,7 +18167,7 @@ sha256 = "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; @@ -17997,7 +18188,7 @@ sha256 = "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; @@ -18018,7 +18209,7 @@ sha256 = "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; @@ -18039,7 +18230,7 @@ sha256 = "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; @@ -18060,7 +18251,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -18090,7 +18281,7 @@ sha256 = "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; @@ -18100,6 +18291,27 @@ license = lib.licenses.free; }; }) {}; + opencl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "opencl-mode"; + version = "1.0"; + src = fetchFromGitHub { + owner = "salmanebah"; + repo = "opencl-mode"; + rev = "14109a4bb56105a9c052ae49ad4c638b4cc210b2"; + sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opencl-mode"; + sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; + name = "opencl-mode"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/opencl-mode"; + license = lib.licenses.free; + }; + }) {}; operate-on-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "operate-on-number"; @@ -18111,7 +18323,7 @@ sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; @@ -18132,7 +18344,7 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; @@ -18153,7 +18365,7 @@ sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; @@ -18174,7 +18386,7 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; @@ -18195,7 +18407,7 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; @@ -18205,6 +18417,27 @@ license = lib.licenses.free; }; }) {}; + org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-dp"; + version = "1"; + src = fetchFromGitHub { + owner = "tj64"; + repo = "org-dp"; + rev = "d740c2065120f71762c48877da1a31dea881e98e"; + sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dp"; + sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; + name = "org-dp"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "http://melpa.org/#/org-dp"; + license = lib.licenses.free; + }; + }) {}; org-elisp-help = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-elisp-help"; @@ -18216,7 +18449,7 @@ sha256 = "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; @@ -18237,7 +18470,7 @@ sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; @@ -18258,7 +18491,7 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; @@ -18279,7 +18512,7 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; @@ -18300,7 +18533,7 @@ sha256 = "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-journal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-journal"; sha256 = "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s"; name = "org-journal"; }; @@ -18321,7 +18554,7 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; @@ -18342,7 +18575,7 @@ sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; @@ -18362,7 +18595,7 @@ sha256 = "5cb84c3c4bf3f7c3e0c9ab869dababb785d44198b1e1072dc9c0937fc483aa14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; @@ -18383,7 +18616,7 @@ sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; @@ -18404,7 +18637,7 @@ sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; @@ -18425,7 +18658,7 @@ sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; @@ -18446,7 +18679,7 @@ sha256 = "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; @@ -18467,7 +18700,7 @@ sha256 = "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; @@ -18488,7 +18721,7 @@ sha256 = "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; @@ -18509,7 +18742,7 @@ sha256 = "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; @@ -18519,6 +18752,27 @@ license = lib.licenses.free; }; }) {}; + org-random-todo = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-random-todo"; + version = "0.4.1"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "org-random-todo"; + rev = "7398b8dff09bef54f579d158ce47b0090f00201e"; + sha256 = "1bi09hd5m994rkqcx0a045h20419b6n4vvwiiggzsi0723dd9fb9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-random-todo"; + sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; + name = "org-random-todo"; + }; + packageRequires = [ alert emacs ]; + meta = { + homepage = "http://melpa.org/#/org-random-todo"; + license = lib.licenses.free; + }; + }) {}; org-readme = callPackage ({ fetchFromGitHub, fetchurl, header2, http-post-simple, lib, lib-requires, melpaBuild, yaoddmuse }: melpaBuild { pname = "org-readme"; @@ -18530,7 +18784,7 @@ sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -18551,7 +18805,7 @@ sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; @@ -18572,7 +18826,7 @@ sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; @@ -18593,7 +18847,7 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; @@ -18614,7 +18868,7 @@ sha256 = "1x241jaw726zjsplwf6svbvr8af09k6kqj7icpvcbyayivkbhxy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; @@ -18635,7 +18889,7 @@ sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; @@ -18656,7 +18910,7 @@ sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; @@ -18677,7 +18931,7 @@ sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; @@ -18698,7 +18952,7 @@ sha256 = "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; @@ -18719,7 +18973,7 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; @@ -18740,7 +18994,7 @@ sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; @@ -18753,16 +19007,16 @@ org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }: melpaBuild { pname = "org-trello"; - version = "0.7.5"; + version = "0.7.6"; src = fetchFromGitHub { owner = "org-trello"; repo = "org-trello"; - rev = "3718ed704094e5e5a491749f1f722d76ba4b7d73"; - sha256 = "1561nxjva8892via0l8315y3fih4r4q9gzycmvh33db8gqzq4l86"; + rev = "1ecb8f4f1dd41c8f41073c13a9557c0c583d7c88"; + sha256 = "0pinp7485mwi99f8qx8xhcdymn5yyd7irxh514j3f23n4b90hk4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-trello"; - sha256 = "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-trello"; + sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; packageRequires = [ @@ -18789,7 +19043,7 @@ sha256 = "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; @@ -18810,7 +19064,7 @@ sha256 = "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; @@ -18831,7 +19085,7 @@ sha256 = "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; @@ -18852,7 +19106,7 @@ sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; @@ -18873,7 +19127,7 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; @@ -18894,7 +19148,7 @@ sha256 = "00vhzblzscp3mkl6x1nz116i4isjwcc5gkpdksym3mr5nqvqhd97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; @@ -18915,7 +19169,7 @@ sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; @@ -18936,7 +19190,7 @@ sha256 = "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; @@ -18957,7 +19211,7 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; @@ -18978,7 +19232,7 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; @@ -18999,7 +19253,7 @@ sha256 = "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; @@ -19020,7 +19274,7 @@ sha256 = "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; @@ -19041,7 +19295,7 @@ sha256 = "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/outshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outshine"; sha256 = "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4"; name = "outshine"; }; @@ -19062,7 +19316,7 @@ sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; @@ -19083,7 +19337,7 @@ sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; @@ -19104,7 +19358,7 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; @@ -19125,7 +19379,7 @@ sha256 = "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; @@ -19146,7 +19400,7 @@ sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; @@ -19167,7 +19421,7 @@ sha256 = "026g48sgqwnqs5zmrabhiv3l8052l4c1vsbsf6bdxv4a6yp0l654"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; @@ -19188,7 +19442,7 @@ sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; @@ -19209,7 +19463,7 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; @@ -19230,7 +19484,7 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; @@ -19251,7 +19505,7 @@ sha256 = "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; @@ -19261,22 +19515,22 @@ license = lib.licenses.free; }; }) {}; - packed = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "packed"; - version = "0.5.0"; + version = "0.5.3"; src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; - rev = "478613da38b0a47f4419acc50017ac871433b13c"; - sha256 = "0k5l0l4vjw38r911zd9c9cv015vpw2y8abp82s2s9pm8nqc3bnci"; + rev = "8ab8332a6078a1279d80830e397faf52e12eb283"; + sha256 = "1czjja6npjxm8vmv74796zxhd5gaqjk477cl0fnmm45dny1h7sr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; - packageRequires = [ cl-lib dash ]; + packageRequires = [ dash emacs ]; meta = { homepage = "http://melpa.org/#/packed"; license = lib.licenses.free; @@ -19293,7 +19547,7 @@ sha256 = "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; @@ -19314,7 +19568,7 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; @@ -19327,15 +19581,15 @@ pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "pandoc-mode"; - version = "2.14"; + version = "2.15"; src = fetchFromGitHub { owner = "joostkremers"; repo = "pandoc-mode"; - rev = "ebf43f8a62beea6b66c9999e660b0fc82854ac08"; - sha256 = "1i5mh8bilg7vplb1ps81s5r6zjf2k6yjcmklrql4w7vw9jrvy566"; + rev = "60d3abea189467e04b5ce7dbe38d8b76ce5686cf"; + sha256 = "0g2iab5fmz85z532102lqn2wp1wgqy07bxkca95azi2gkbg0kbmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; @@ -19356,7 +19610,7 @@ sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; @@ -19377,7 +19631,7 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; @@ -19398,7 +19652,7 @@ sha256 = "1vc59n9jmsn5d15v2m9xl64564h3q0c78pv4a4n3dhd1iz797l3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; @@ -19417,7 +19671,7 @@ sha256 = "7587cd2cf6e5b245678bbca8cbad07db8576ff976a504cd8d6e52fa85cf99f8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit"; sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; name = "paredit"; }; @@ -19438,7 +19692,7 @@ sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; @@ -19459,7 +19713,7 @@ sha256 = "033gdya7f6p4kkapnmnbxlm88g4rbsmym4cc4jkcmp91idh63syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; @@ -19480,7 +19734,7 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; @@ -19501,7 +19755,7 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; @@ -19522,7 +19776,7 @@ sha256 = "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; @@ -19543,7 +19797,7 @@ sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; @@ -19563,7 +19817,7 @@ sha256 = "f71d0b36570983c35e08b6672c186b5c308b57536a96a747f09665bab794be30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; @@ -19584,7 +19838,7 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; @@ -19605,7 +19859,7 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; @@ -19626,7 +19880,7 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; @@ -19647,7 +19901,7 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; @@ -19668,7 +19922,7 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; @@ -19689,7 +19943,7 @@ sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; @@ -19710,7 +19964,7 @@ sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; @@ -19731,7 +19985,7 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; @@ -19751,7 +20005,7 @@ sha256 = "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; @@ -19772,7 +20026,7 @@ sha256 = "0h05j55y3csq91a5m2fg99y4rzsh7zca7hnifb6kic5zb3nahi00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; @@ -19793,7 +20047,7 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; @@ -19806,15 +20060,15 @@ persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persp-mode"; - version = "1.1.7"; + version = "1.2.6"; src = fetchFromGitHub { owner = "Bad-ptr"; repo = "persp-mode.el"; - rev = "00e5f345f13b2b9e615082ac9ccbfd076592cc22"; - sha256 = "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b"; + rev = "7d46178b260cb600d378e9e3b746253cc9cb8a46"; + sha256 = "090b73969namf3h7pbf8xc969dygj3frzlkf0h2x29wl1fmag5kr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; @@ -19835,7 +20089,7 @@ sha256 = "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; @@ -19856,7 +20110,7 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; @@ -19877,7 +20131,7 @@ sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; @@ -19898,7 +20152,7 @@ sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; @@ -19919,7 +20173,7 @@ sha256 = "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; @@ -19940,7 +20194,7 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; @@ -19961,7 +20215,7 @@ sha256 = "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; @@ -19982,7 +20236,7 @@ sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; @@ -20003,7 +20257,7 @@ sha256 = "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; @@ -20024,7 +20278,7 @@ sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; @@ -20045,7 +20299,7 @@ sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; @@ -20066,7 +20320,7 @@ sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; @@ -20087,7 +20341,7 @@ sha256 = "1k3bqv5y2xp1jl2hpf8qhs11yzhcl8k40fxqjzv7mvc0ysq9y6wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/platformio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/platformio-mode"; sha256 = "022l20sfyfkvp6kmmqxr7gcmcdx6b1dgsakjjnx8fknrpxr5kyps"; name = "platformio-mode"; }; @@ -20108,7 +20362,7 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; @@ -20129,7 +20383,7 @@ sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; @@ -20150,7 +20404,7 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; @@ -20171,7 +20425,7 @@ sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pony-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pony-snippets"; sha256 = "06rrzfg20kzpscnqr2lin9jvrcydq4wnrv7nj1d0lm6988qz88jx"; name = "pony-snippets"; }; @@ -20192,7 +20446,7 @@ sha256 = "0jlycv0ck5kbszwc0v2gbka6k5h39nz8763ws0v8jada7zzmyvxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; @@ -20213,7 +20467,7 @@ sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; @@ -20234,7 +20488,7 @@ sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; @@ -20255,7 +20509,7 @@ sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; @@ -20276,7 +20530,7 @@ sha256 = "083q5q53j1dcv4m2jdamh28bdk6ajzcypmyb3xr52dnqdm3bw6im"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; @@ -20297,7 +20551,7 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; @@ -20318,7 +20572,7 @@ sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; @@ -20339,7 +20593,7 @@ sha256 = "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; @@ -20360,7 +20614,7 @@ sha256 = "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; @@ -20381,7 +20635,7 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; @@ -20402,7 +20656,7 @@ sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; @@ -20423,7 +20677,7 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; @@ -20444,7 +20698,7 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; @@ -20465,7 +20719,7 @@ sha256 = "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; @@ -20486,7 +20740,7 @@ sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; @@ -20507,7 +20761,7 @@ sha256 = "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; @@ -20528,7 +20782,7 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; @@ -20548,7 +20802,7 @@ sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; @@ -20569,7 +20823,7 @@ sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; @@ -20590,7 +20844,7 @@ sha256 = "0f0siz230xsv20h8wmwa1i8wdsp964y6qmb2i3l485yh03bz1x95"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; @@ -20611,7 +20865,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; @@ -20632,7 +20886,7 @@ sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; @@ -20653,7 +20907,7 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; @@ -20674,7 +20928,7 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; @@ -20695,7 +20949,7 @@ sha256 = "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; @@ -20716,7 +20970,7 @@ sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; @@ -20737,7 +20991,7 @@ sha256 = "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; @@ -20758,7 +21012,7 @@ sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; @@ -20779,7 +21033,7 @@ sha256 = "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; @@ -20800,7 +21054,7 @@ sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; @@ -20821,7 +21075,7 @@ sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; @@ -20842,7 +21096,7 @@ sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; @@ -20863,7 +21117,7 @@ sha256 = "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; @@ -20884,7 +21138,7 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; @@ -20905,7 +21159,7 @@ sha256 = "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; @@ -20926,7 +21180,7 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; @@ -20947,7 +21201,7 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; @@ -20968,7 +21222,7 @@ sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; @@ -20989,7 +21243,7 @@ sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; @@ -21010,7 +21264,7 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; @@ -21031,7 +21285,7 @@ sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; @@ -21052,7 +21306,7 @@ sha256 = "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; @@ -21073,7 +21327,7 @@ sha256 = "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; @@ -21094,7 +21348,7 @@ sha256 = "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; @@ -21115,7 +21369,7 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; @@ -21136,7 +21390,7 @@ sha256 = "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; @@ -21149,16 +21403,16 @@ quickrun = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quickrun"; - version = "2.2.6"; + version = "2.2.7"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-quickrun"; - rev = "31c61de338c7b689bbb78e0aa691bd68f7c20941"; - sha256 = "09sdv5lf5k347415r9fzljm374rb29gq6kldx2awd164fkdnm8ds"; + rev = "fe23f324b0198f8827cc0768e8507a02194eec68"; + sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/quickrun"; - sha256 = "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quickrun"; + sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; packageRequires = [ cl-lib emacs ]; @@ -21178,7 +21432,7 @@ sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; @@ -21199,7 +21453,7 @@ sha256 = "0pbswxzgfqcp6vjlwhvnablj91kxq588j2fmcjzhf0aigkj7dxfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; @@ -21220,7 +21474,7 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; @@ -21241,7 +21495,7 @@ sha256 = "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; @@ -21262,7 +21516,7 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; @@ -21283,7 +21537,7 @@ sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; @@ -21304,7 +21558,7 @@ sha256 = "0fkj89p0rb0r472p1rk8xpx8c74pg968pc2mmw3838y4fpc8i198"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; @@ -21325,7 +21579,7 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; @@ -21346,7 +21600,7 @@ sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; @@ -21359,15 +21613,15 @@ rcirc-styles = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-styles"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "aaron-em"; repo = "rcirc-styles.el"; - rev = "d0547eda261d0885951b283e5622345f999d2083"; - sha256 = "0yhmdkvswnn5rga5xzysfpivbz9wdkzbm49licilc2fp1dgcvd6i"; + rev = "f313bf6a7470bed314b27c7a40558cb787d7bc67"; + sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; @@ -21388,7 +21642,7 @@ sha256 = "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; @@ -21409,7 +21663,7 @@ sha256 = "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; @@ -21430,7 +21684,7 @@ sha256 = "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/realgud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/realgud"; sha256 = "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s"; name = "realgud"; }; @@ -21451,7 +21705,7 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; @@ -21472,7 +21726,7 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; @@ -21493,7 +21747,7 @@ sha256 = "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; @@ -21514,7 +21768,7 @@ sha256 = "19c5rkb4nn6fs85lixrgrv8gagr69h430inig31dvm4fip9xdjp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; @@ -21535,7 +21789,7 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; @@ -21556,7 +21810,7 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; @@ -21577,7 +21831,7 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; @@ -21598,7 +21852,7 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; @@ -21619,7 +21873,7 @@ sha256 = "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; @@ -21640,7 +21894,7 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; @@ -21661,7 +21915,7 @@ sha256 = "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; @@ -21671,43 +21925,43 @@ license = lib.licenses.free; }; }) {}; - request = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + request = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-request"; - rev = "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"; - sha256 = "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr"; + rev = "48a35969f7c41810d550e6cdf784cb86c5a05a20"; + sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/request"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request"; sha256 = "09gxfy34a13wr0agmhn0nldxaiyc72rx9xi56jirsvji4dg5j6mm"; name = "request"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { homepage = "http://melpa.org/#/request"; license = lib.licenses.free; }; }) {}; - request-deferred = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "request-deferred"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-request"; - rev = "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"; - sha256 = "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr"; + rev = "48a35969f7c41810d550e6cdf784cb86c5a05a20"; + sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/request-deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request-deferred"; sha256 = "19s8q9a01v0g897s9ass1mr5wbzy82rrfcnqpvcvp05q4y787dn9"; name = "request-deferred"; }; - packageRequires = []; + packageRequires = [ deferred request ]; meta = { homepage = "http://melpa.org/#/request-deferred"; license = lib.licenses.free; @@ -21724,7 +21978,7 @@ sha256 = "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; @@ -21745,7 +21999,7 @@ sha256 = "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; @@ -21766,7 +22020,7 @@ sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; @@ -21787,7 +22041,7 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; @@ -21808,8 +22062,8 @@ sha256 = "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/reverse-theme"; - sha256 = "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reverse-theme"; + sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; packageRequires = []; @@ -21829,7 +22083,7 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; @@ -21850,7 +22104,7 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; @@ -21871,7 +22125,7 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; @@ -21892,7 +22146,7 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; @@ -21913,7 +22167,7 @@ sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; @@ -21934,7 +22188,7 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; @@ -21955,7 +22209,7 @@ sha256 = "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; @@ -21976,7 +22230,7 @@ sha256 = "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; @@ -21997,7 +22251,7 @@ sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; @@ -22018,7 +22272,7 @@ sha256 = "0shzxxx7qajmfrxqipmlak899hgmxkqf9zkbmr0g04wamxmyfs65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; @@ -22039,7 +22293,7 @@ sha256 = "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; @@ -22060,7 +22314,7 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; @@ -22081,7 +22335,7 @@ sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-end"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-end"; sha256 = "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis"; name = "ruby-end"; }; @@ -22102,7 +22356,7 @@ sha256 = "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; @@ -22123,7 +22377,7 @@ sha256 = "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; @@ -22144,7 +22398,7 @@ sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ruby-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-tools"; sha256 = "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y"; name = "ruby-tools"; }; @@ -22165,7 +22419,7 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; @@ -22186,7 +22440,7 @@ sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; @@ -22207,7 +22461,7 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; @@ -22228,7 +22482,7 @@ sha256 = "0aw95qkql6apyn79la0jbpr0nlixhl9zvi9miry2h5y5pawb3yvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; @@ -22249,7 +22503,7 @@ sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; @@ -22270,7 +22524,7 @@ sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; @@ -22280,27 +22534,6 @@ license = lib.licenses.free; }; }) {}; - save-sexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "save-sexp"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "save-sexp"; - rev = "dce78d8630af6b2e29e3ec83b819a3d688d37dfc"; - sha256 = "1gh97rc528cpam3jsncc03cyf4pps71b8blmdikml71lks07lgwb"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/save-sexp"; - sha256 = "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66"; - name = "save-sexp"; - }; - packageRequires = []; - meta = { - homepage = "http://melpa.org/#/save-sexp"; - license = lib.licenses.free; - }; - }) {}; sbt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scala-mode2 }: melpaBuild { pname = "sbt-mode"; @@ -22312,7 +22545,7 @@ sha256 = "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; @@ -22333,7 +22566,7 @@ sha256 = "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scala-mode2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-mode2"; sha256 = "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch"; name = "scala-mode2"; }; @@ -22354,7 +22587,7 @@ sha256 = "0hhsgyil8aqdkkip5325yrdq89gnijglcbf1dsvl4wvnmq7a1rik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scala-outline-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-outline-popup"; sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7"; name = "scala-outline-popup"; }; @@ -22375,7 +22608,7 @@ sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; @@ -22396,7 +22629,7 @@ sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; @@ -22417,7 +22650,7 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; @@ -22438,7 +22671,7 @@ sha256 = "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; @@ -22448,6 +22681,27 @@ license = lib.licenses.free; }; }) {}; + select-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "select-themes"; + version = "0.1.4"; + src = fetchFromGitHub { + owner = "jasonm23"; + repo = "emacs-select-themes"; + rev = "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe"; + sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/select-themes"; + sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; + name = "select-themes"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/select-themes"; + license = lib.licenses.free; + }; + }) {}; selectric-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "selectric-mode"; @@ -22459,7 +22713,7 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; @@ -22480,7 +22734,7 @@ sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/servant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/servant"; sha256 = "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h"; name = "servant"; }; @@ -22501,7 +22755,7 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; @@ -22522,7 +22776,7 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; @@ -22543,7 +22797,7 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; @@ -22564,7 +22818,7 @@ sha256 = "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; @@ -22585,7 +22839,7 @@ sha256 = "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; @@ -22606,7 +22860,7 @@ sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; @@ -22627,7 +22881,7 @@ sha256 = "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; @@ -22648,7 +22902,7 @@ sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; @@ -22669,7 +22923,7 @@ sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; @@ -22690,7 +22944,7 @@ sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; @@ -22711,7 +22965,7 @@ sha256 = "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; @@ -22732,7 +22986,7 @@ sha256 = "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; @@ -22753,7 +23007,7 @@ sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; @@ -22774,7 +23028,7 @@ sha256 = "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; @@ -22795,7 +23049,7 @@ sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; @@ -22816,7 +23070,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; @@ -22837,7 +23091,7 @@ sha256 = "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simple-httpd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-httpd"; sha256 = "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59"; name = "simple-httpd"; }; @@ -22858,7 +23112,7 @@ sha256 = "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; @@ -22879,7 +23133,7 @@ sha256 = "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; @@ -22900,7 +23154,7 @@ sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; @@ -22921,7 +23175,7 @@ sha256 = "0jy08kj7cy744lbdyil0j50b08vm76bzxwmzd99v4sz12s3qcd2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sisyphus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sisyphus"; sha256 = "08400jazj7w63l8g9ypy6w9dj8r0xh4d2yg3nfwqqf5lhfnj9bnj"; name = "sisyphus"; }; @@ -22942,7 +23196,7 @@ sha256 = "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; @@ -22963,7 +23217,7 @@ sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; @@ -22984,7 +23238,7 @@ sha256 = "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; @@ -23005,7 +23259,7 @@ sha256 = "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; @@ -23026,7 +23280,7 @@ sha256 = "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; @@ -23047,7 +23301,7 @@ sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; @@ -23057,22 +23311,22 @@ license = lib.licenses.free; }; }) {}; - slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: melpaBuild { pname = "slime"; - version = "2.16"; + version = "2.17"; src = fetchFromGitHub { owner = "slime"; repo = "slime"; - rev = "0d8c192c12a0a3d055f9bf4cc554083fc931995c"; - sha256 = "1sx7g0g2j3pz9gqj76773asv1912c0p4zmh3jbssnyy2vp942h27"; + rev = "899b5ca7e1ce8173cb8ce4b7609dd88d05a050c9"; + sha256 = "07gfd8k0gbzylr9y8asp35p9139w79c36pbnixp4y2fimgbfri2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib macrostep ]; meta = { homepage = "http://melpa.org/#/slime"; license = lib.licenses.free; @@ -23089,7 +23343,7 @@ sha256 = "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; @@ -23099,6 +23353,27 @@ license = lib.licenses.free; }; }) {}; + slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: + melpaBuild { + pname = "slime-docker"; + version = "0.4"; + src = fetchFromGitHub { + owner = "daewok"; + repo = "slime-docker"; + rev = "61bed969887c8556299ee643d1bab567ef36d926"; + sha256 = "0jrsilyvzdi3xdmkm6gsniw4zdg9zsxb4i6k3fm5byxvhpbwd3k4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-docker"; + sha256 = "18v62y4f613d7mpqpb8sc8hzvyhcgzrbqrc0k7w9pqf00jnl192h"; + name = "slime-docker"; + }; + packageRequires = [ cl-lib docker-tramp emacs slime ]; + meta = { + homepage = "http://melpa.org/#/slime-docker"; + license = lib.licenses.free; + }; + }) {}; slime-ritz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-ritz"; @@ -23110,7 +23385,7 @@ sha256 = "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; @@ -23131,7 +23406,7 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; @@ -23152,7 +23427,7 @@ sha256 = "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; @@ -23173,7 +23448,7 @@ sha256 = "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; @@ -23194,7 +23469,7 @@ sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; @@ -23215,7 +23490,7 @@ sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; @@ -23236,7 +23511,7 @@ sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; @@ -23257,7 +23532,7 @@ sha256 = "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; @@ -23278,7 +23553,7 @@ sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; @@ -23299,7 +23574,7 @@ sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; @@ -23320,7 +23595,7 @@ sha256 = "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; @@ -23341,7 +23616,7 @@ sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; @@ -23351,6 +23626,27 @@ license = lib.licenses.free; }; }) {}; + smooth-scroll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "smooth-scroll"; + version = "1.2"; + src = fetchFromGitHub { + owner = "k-talo"; + repo = "smooth-scroll.el"; + rev = "02320f28abb5cae28b3a18f6b9ce93129bdbfc45"; + sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scroll"; + sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; + name = "smooth-scroll"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/smooth-scroll"; + license = lib.licenses.free; + }; + }) {}; smooth-scrolling = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scrolling"; @@ -23362,7 +23658,7 @@ sha256 = "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; @@ -23372,6 +23668,27 @@ license = lib.licenses.free; }; }) {}; + snakemake-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "snakemake-mode"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "kyleam"; + repo = "snakemake-mode"; + rev = "0f1857cacfcc36c3641d63c72a38224661d3b9a6"; + sha256 = "0pl7vxaha79v9199j4s1fjxxca3fq9fdhbdaz5wppg3b851a7mx3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snakemake-mode"; + sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; + name = "snakemake-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://melpa.org/#/snakemake-mode"; + license = lib.licenses.free; + }; + }) {}; solarized-theme = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solarized-theme"; @@ -23383,7 +23700,7 @@ sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; @@ -23404,7 +23721,7 @@ sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; @@ -23425,7 +23742,7 @@ sha256 = "1wbd7v5bnd4qgqk8rrgllal0i949n8xzvb3yhf0vnxr06wdzy0a4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; @@ -23446,7 +23763,7 @@ sha256 = "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; @@ -23467,7 +23784,7 @@ sha256 = "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; @@ -23488,7 +23805,7 @@ sha256 = "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; @@ -23509,7 +23826,7 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; @@ -23530,7 +23847,7 @@ sha256 = "1ncwv6sqm1ch396qi1c8276dc910rnm0f3m8xjkskplv3cjaq0ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; @@ -23551,7 +23868,7 @@ sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; @@ -23572,7 +23889,7 @@ sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; @@ -23593,7 +23910,7 @@ sha256 = "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; @@ -23614,7 +23931,7 @@ sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; @@ -23635,7 +23952,7 @@ sha256 = "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; @@ -23656,7 +23973,7 @@ sha256 = "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; @@ -23677,7 +23994,7 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; @@ -23698,7 +24015,7 @@ sha256 = "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sqlup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlup-mode"; sha256 = "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7"; name = "sqlup-mode"; }; @@ -23719,7 +24036,7 @@ sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; @@ -23740,7 +24057,7 @@ sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; @@ -23761,7 +24078,7 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; @@ -23782,7 +24099,7 @@ sha256 = "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; @@ -23801,7 +24118,7 @@ sha256 = "12c5df549d653c8ec3476ed271a4e9a4065a61a467229c070bb2e6295e285e16"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; @@ -23822,7 +24139,7 @@ sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; @@ -23843,7 +24160,7 @@ sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; @@ -23864,7 +24181,7 @@ sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; @@ -23884,7 +24201,7 @@ sha256 = "f5e3b0fdbdb1c747c40f7b6746de195e37bd4caccdcc05c6aa14124f29e71428"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; @@ -23905,7 +24222,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; @@ -23926,7 +24243,7 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; @@ -23947,7 +24264,7 @@ sha256 = "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; @@ -23968,7 +24285,7 @@ sha256 = "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; @@ -23989,7 +24306,7 @@ sha256 = "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; @@ -24010,7 +24327,7 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; @@ -24020,22 +24337,22 @@ license = lib.licenses.free; }; }) {}; - super-save = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + super-save = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "super-save"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "bbatsov"; repo = "super-save"; - rev = "4eb8aef705237d706b30cf722c5ad4909ea3acf1"; - sha256 = "1pq71simdb4pcbzzavlxdfbgh548m15f493h821k04n67ydzlmj3"; + rev = "73397501fa5b01c02b9ae94f82a8cb37d1ed105f"; + sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { homepage = "http://melpa.org/#/super-save"; license = lib.licenses.free; @@ -24052,7 +24369,7 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; @@ -24073,7 +24390,7 @@ sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; @@ -24094,7 +24411,7 @@ sha256 = "07xrcg33vsw19kz692hm7blzvnf7b6isllsz79fvs8q3l5c9mfjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; @@ -24115,8 +24432,8 @@ sha256 = "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swiper"; - sha256 = "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper"; + sha256 = "1hsj6vh0vldnvwg2qmszdi0p2ig7l63vgq2kn5nv883239bxpziz"; name = "swiper"; }; packageRequires = [ emacs ]; @@ -24136,7 +24453,7 @@ sha256 = "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; @@ -24157,7 +24474,7 @@ sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; @@ -24178,7 +24495,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; @@ -24199,7 +24516,7 @@ sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; @@ -24220,7 +24537,7 @@ sha256 = "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/synosaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synosaurus"; sha256 = "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg"; name = "synosaurus"; }; @@ -24241,7 +24558,7 @@ sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; @@ -24257,11 +24574,11 @@ version = "0.2"; src = fetchhg { url = "https://bitbucket.com/jpkotta/syntax-subword"; - rev = "a1e0accb754d"; - sha256 = "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h"; + rev = "88e9bf1d4874"; + sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; @@ -24282,7 +24599,7 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; @@ -24303,7 +24620,7 @@ sha256 = "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/systemd"; sha256 = "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir"; name = "systemd"; }; @@ -24324,7 +24641,7 @@ sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; @@ -24345,7 +24662,7 @@ sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; @@ -24366,7 +24683,7 @@ sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; @@ -24387,7 +24704,7 @@ sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; @@ -24408,7 +24725,7 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; @@ -24429,7 +24746,7 @@ sha256 = "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; @@ -24450,7 +24767,7 @@ sha256 = "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-alert"; sha256 = "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n"; name = "term-alert"; }; @@ -24471,7 +24788,7 @@ sha256 = "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-cmd"; sha256 = "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy"; name = "term-cmd"; }; @@ -24492,7 +24809,7 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; @@ -24513,7 +24830,7 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; @@ -24534,7 +24851,7 @@ sha256 = "1n4z5hgpv1f0360zgdxz1q4gmhjjrxm7ygxh1g4zjy6kbhgylmxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern"; sha256 = "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif"; name = "tern"; }; @@ -24555,7 +24872,7 @@ sha256 = "1n4z5hgpv1f0360zgdxz1q4gmhjjrxm7ygxh1g4zjy6kbhgylmxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tern-auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-auto-complete"; sha256 = "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1"; name = "tern-auto-complete"; }; @@ -24576,7 +24893,7 @@ sha256 = "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; @@ -24597,7 +24914,7 @@ sha256 = "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; @@ -24618,7 +24935,7 @@ sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; @@ -24639,7 +24956,7 @@ sha256 = "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; @@ -24660,7 +24977,7 @@ sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; @@ -24681,7 +24998,7 @@ sha256 = "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; @@ -24702,7 +25019,7 @@ sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; @@ -24723,7 +25040,7 @@ sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; @@ -24744,7 +25061,7 @@ sha256 = "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; @@ -24765,7 +25082,7 @@ sha256 = "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; @@ -24786,7 +25103,7 @@ sha256 = "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; @@ -24807,7 +25124,7 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; @@ -24828,7 +25145,7 @@ sha256 = "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; @@ -24841,15 +25158,15 @@ transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "transmission"; - version = "0.7"; + version = "0.8"; src = fetchFromGitHub { owner = "holomorph"; repo = "transmission"; - rev = "2769c9b17fa464e0634ac03046be74cefdb28880"; - sha256 = "14fzgpafry3v072f22krap81jfpdc17bpimp16hv7f20sny29a5v"; + rev = "dbdc6e1b7de7cca57a5a1cf990bbc33553a823aa"; + sha256 = "14vcd5ixqbyx2zr0w79pbk5sdncxzk6mz6rw7yxq81m3hgspz050"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; @@ -24870,7 +25187,7 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; @@ -24891,7 +25208,7 @@ sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; @@ -24912,7 +25229,7 @@ sha256 = "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; @@ -24933,7 +25250,7 @@ sha256 = "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; @@ -24954,7 +25271,7 @@ sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; @@ -24975,7 +25292,7 @@ sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; @@ -24996,7 +25313,7 @@ sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; @@ -25017,7 +25334,7 @@ sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; @@ -25038,7 +25355,7 @@ sha256 = "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; @@ -25059,7 +25376,7 @@ sha256 = "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; @@ -25080,7 +25397,7 @@ sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; @@ -25101,7 +25418,7 @@ sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; @@ -25122,7 +25439,7 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; @@ -25135,15 +25452,15 @@ undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }: melpaBuild { pname = "undercover"; - version = "0.5.0"; + version = "0.6.0"; src = fetchFromGitHub { owner = "sviridov"; repo = "undercover.el"; - rev = "068d39745304a06152c3e68a0b6772394c9e6d39"; - sha256 = "0dmkn8qlnyvgaj7dqh82mqj1fik59zfi2yxcic9i6q9walxc3cas"; + rev = "e72b8c924272f65d7cc6e884478e26d0b1e1e4e8"; + sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; @@ -25164,7 +25481,7 @@ sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; @@ -25185,7 +25502,7 @@ sha256 = "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; @@ -25206,7 +25523,7 @@ sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -25227,7 +25544,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -25254,7 +25571,7 @@ sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; @@ -25275,7 +25592,7 @@ sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; @@ -25296,7 +25613,7 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; @@ -25317,7 +25634,7 @@ sha256 = "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; @@ -25338,7 +25655,7 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; @@ -25359,7 +25676,7 @@ sha256 = "1azv6grd5h2r1spy996nv6q1c5l6qawv6k0dc2i5k96szl0r668r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; @@ -25380,7 +25697,7 @@ sha256 = "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; @@ -25401,7 +25718,7 @@ sha256 = "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; @@ -25422,7 +25739,7 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; @@ -25443,7 +25760,7 @@ sha256 = "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; @@ -25464,7 +25781,7 @@ sha256 = "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; @@ -25485,7 +25802,7 @@ sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; @@ -25506,7 +25823,7 @@ sha256 = "0k8wbylvws4yxh2jzxkz0fw5kwgblxvmagz54igbjj5mfm45pgsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; @@ -25527,7 +25844,7 @@ sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; @@ -25548,7 +25865,7 @@ sha256 = "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; @@ -25569,7 +25886,7 @@ sha256 = "082qrbljlahkq1fz2dfl434f1xv47jc1v9k0srh7lrm14616dzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; @@ -25590,7 +25907,7 @@ sha256 = "100w8rxdqln4xiwi0df15pvyaiyhjlwcjdh8nb0j95qpwji41vmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; @@ -25611,7 +25928,7 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; @@ -25632,7 +25949,7 @@ sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; @@ -25642,6 +25959,27 @@ license = lib.licenses.free; }; }) {}; + volatile-highlights = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "volatile-highlights"; + version = "1.11"; + src = fetchFromGitHub { + owner = "k-talo"; + repo = "volatile-highlights.el"; + rev = "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24"; + sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/volatile-highlights"; + sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; + name = "volatile-highlights"; + }; + packageRequires = []; + meta = { + homepage = "http://melpa.org/#/volatile-highlights"; + license = lib.licenses.free; + }; + }) {}; wacspace = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wacspace"; @@ -25653,7 +25991,7 @@ sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; @@ -25674,7 +26012,7 @@ sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; @@ -25695,7 +26033,7 @@ sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; @@ -25716,7 +26054,7 @@ sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; @@ -25737,7 +26075,7 @@ sha256 = "1w7jnsc6lzlrlkj0nrlfnyca78lw53144hrf9k43b0g0zl8n9zqj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; @@ -25758,7 +26096,7 @@ sha256 = "00fzzjqa1v2dzlpgjxb2qj3nn6iizg177mk7vjvcv4814g4dhcal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; @@ -25778,7 +26116,7 @@ sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; @@ -25799,7 +26137,7 @@ sha256 = "0f90m2s40jish4wjwfpmbgw024r7n2l5b9q9wr6rd3vdcwks3mcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; @@ -25820,7 +26158,7 @@ sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; @@ -25841,7 +26179,7 @@ sha256 = "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; @@ -25862,7 +26200,7 @@ sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; @@ -25883,7 +26221,7 @@ sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; @@ -25904,7 +26242,7 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; @@ -25925,7 +26263,7 @@ sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; @@ -25946,7 +26284,7 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; @@ -25967,7 +26305,7 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; @@ -25988,7 +26326,7 @@ sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; @@ -26009,7 +26347,7 @@ sha256 = "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; @@ -26030,7 +26368,7 @@ sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; @@ -26043,15 +26381,15 @@ window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }: melpaBuild { pname = "window-purpose"; - version = "1.4"; + version = "1.5"; src = fetchFromGitHub { owner = "bmag"; repo = "emacs-purpose"; - rev = "7e492cbdd4259a177625a3f47001d7281f295349"; - sha256 = "08j0akwjp4arkw3zm0lazb13f6dq0m8y9k9nmypd7xk0m77byymd"; + rev = "48943e2fb9886367df013119c323b2adcd57a82e"; + sha256 = "1xjs51wm5ydcqdwvg3c42c5z4j92q75lmk895qkka7ayy5spxxf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; @@ -26072,7 +26410,7 @@ sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; @@ -26092,7 +26430,7 @@ sha256 = "16711d1ds508nmjw81jm2cfdpqzc55gc175fkhayk0f5swlvd11m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; @@ -26113,7 +26451,7 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; @@ -26134,7 +26472,7 @@ sha256 = "0dymhkbkzicjw0379bdzbb594x5xcjbgbn428a30i2i0jwv66pfz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; @@ -26155,7 +26493,7 @@ sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; @@ -26176,7 +26514,7 @@ sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; @@ -26197,7 +26535,7 @@ sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; @@ -26218,7 +26556,7 @@ sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wrap-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wrap-region"; sha256 = "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq"; name = "wrap-region"; }; @@ -26239,7 +26577,7 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; @@ -26260,7 +26598,7 @@ sha256 = "0f554h834p12255mhwjnxbh1ls65476k60cwddqyl844ph75w8jv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; @@ -26281,7 +26619,7 @@ sha256 = "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; @@ -26294,15 +26632,15 @@ wsd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wsd-mode"; - version = "0.4.2"; + version = "0.5.0"; src = fetchFromGitHub { owner = "josteink"; repo = "wsd-mode"; - rev = "a6f58e1c47587cb8f0bd8d1fc280cf8605732883"; - sha256 = "0qfbf9xmln60yd0na1508xmxkvnx0pis4dvbf16cjv0i41dq6i87"; + rev = "b5e8ea0daeaa52f2ea6349e09902bd3216e96258"; + sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; @@ -26323,7 +26661,7 @@ sha256 = "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; @@ -26344,7 +26682,7 @@ sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; @@ -26365,7 +26703,7 @@ sha256 = "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; @@ -26386,7 +26724,7 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; @@ -26407,7 +26745,7 @@ sha256 = "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; @@ -26428,7 +26766,7 @@ sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; @@ -26449,7 +26787,7 @@ sha256 = "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; @@ -26470,7 +26808,7 @@ sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; @@ -26491,7 +26829,7 @@ sha256 = "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; @@ -26512,7 +26850,7 @@ sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; @@ -26533,7 +26871,7 @@ sha256 = "0m6y2m2nsg6camwh0hjv9jcw6p5a0b4dwig1d58s2g15n3hca3dy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; @@ -26554,7 +26892,7 @@ sha256 = "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; @@ -26573,7 +26911,7 @@ sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; @@ -26594,7 +26932,7 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; @@ -26615,7 +26953,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ycmd"; sha256 = "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q"; name = "ycmd"; }; @@ -26636,7 +26974,7 @@ sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; @@ -26657,7 +26995,7 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; @@ -26678,7 +27016,7 @@ sha256 = "0bgq34k7p9qkxhrg7dvmkfpi1r47czyw12l0cm93z3m817z5hjrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; @@ -26691,15 +27029,15 @@ zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zerodark-theme"; - version = "1.0"; + version = "1.1"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "zerodark-theme"; - rev = "5f7e16b35b2b42e4a286ca0cece4766a69cd7321"; - sha256 = "1pxy6ia7di3i5kigybkz78f7fgbsyr1js9asrfbbx3kkpxpm2vfc"; + rev = "c948c6e1467a61b0592b0c0ca08a4895fb353a4c"; + sha256 = "1w1g81wy2l67b5dknphrigpxx5slfgrl2qyba4b93gcx68zaj4bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; @@ -26720,7 +27058,7 @@ sha256 = "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; @@ -26741,7 +27079,7 @@ sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; @@ -26762,7 +27100,7 @@ sha256 = "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; @@ -26783,7 +27121,7 @@ sha256 = "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; @@ -26804,7 +27142,7 @@ sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zotelo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zotelo"; sha256 = "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z"; name = "zotelo"; }; @@ -26825,7 +27163,7 @@ sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zygospore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zygospore"; sha256 = "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z"; name = "zygospore"; }; @@ -26846,7 +27184,7 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; From a5356d09e6fd06cf83dc4e9508aa17605a6a41e7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 22 Feb 2016 06:21:20 -0600 Subject: [PATCH 105/291] elpaPackages 2016-02-22 --- .../editors/emacs-modes/elpa-generated.nix | 100 ++++++++++++------ 1 file changed, 70 insertions(+), 30 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-generated.nix b/pkgs/applications/editors/emacs-modes/elpa-generated.nix index a9737e744ed..fbb7955a1d6 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-generated.nix @@ -81,10 +81,10 @@ aggressive-indent = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "aggressive-indent"; - version = "1.4"; + version = "1.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/aggressive-indent-1.4.el"; - sha256 = "0qdpvdzmw4hq2g8krx93fbb352nkg731p7v82zhqw76y79khdpka"; + url = "http://elpa.gnu.org/packages/aggressive-indent-1.5.el"; + sha256 = "00ddfni659rl19ybzrywj3b444akvil6n06k8lf5jyaqb53mkc5d"; }; packageRequires = [ cl-lib emacs ]; meta = { @@ -95,10 +95,10 @@ ahungry-theme = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "ahungry-theme"; - version = "1.0.12"; + version = "1.1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ahungry-theme-1.0.12.tar"; - sha256 = "0a6mlxka1b7vja4wxd8gvfhfk5i1jdj3a851c7dn34hz1lkgvnx8"; + url = "http://elpa.gnu.org/packages/ahungry-theme-1.1.0.tar"; + sha256 = "1jy2h4r72fr26yavs0s8dy1xnkxvaf2hsrlm63f6sng81njj9dgx"; }; packageRequires = [ emacs ]; meta = { @@ -119,6 +119,19 @@ license = lib.licenses.free; }; }) {}; + ampc = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { + pname = "ampc"; + version = "0.2"; + src = fetchurl { + url = "http://elpa.gnu.org/packages/ampc-0.2.el"; + sha256 = "1pdy5mvi6h8m7qjnxiy217fgcp9w91375hq29bacfgh7bix56jlr"; + }; + packageRequires = []; + meta = { + homepage = "http://elpa.gnu.org/packages/ampc.html"; + license = lib.licenses.free; + }; + }) {}; ascii-art-to-unicode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "ascii-art-to-unicode"; @@ -201,10 +214,10 @@ }) {}; beacon = callPackage ({ elpaBuild, fetchurl, lib, seq }: elpaBuild { pname = "beacon"; - version = "0.6.1"; + version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/beacon-0.6.1.el"; - sha256 = "0zg3gzfx06f3pj7mipfdmhmafvcil0idha3wdi068cza7akmyiwb"; + url = "http://elpa.gnu.org/packages/beacon-1.0.el"; + sha256 = "1rdvdn50kb7kplvi8x199cm15mn4pxidn17p84l8q5wk3arj9c09"; }; packageRequires = [ seq ]; meta = { @@ -215,10 +228,10 @@ bug-hunter = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, seq }: elpaBuild { pname = "bug-hunter"; - version = "1.0.1"; + version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/bug-hunter-1.0.1.el"; - sha256 = "0c0pg542y09c1k25dxk2062pj3cj12i73kqxbpq0m6af0qm7wy9d"; + url = "http://elpa.gnu.org/packages/bug-hunter-1.1.el"; + sha256 = "07j455hizqiicpigy8ybpqk0v87iqa57jvpirg5yb2g8j5ipwygs"; }; packageRequires = [ cl-lib seq ]; meta = { @@ -617,10 +630,10 @@ }) {}; exwm = callPackage ({ elpaBuild, fetchurl, lib, xelb }: elpaBuild { pname = "exwm"; - version = "0.1"; + version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/exwm-0.1.tar"; - sha256 = "18w9a37v8lyyjj8ll2f5mw8fw14g54b887cflzv5d576k5f606f5"; + url = "http://elpa.gnu.org/packages/exwm-0.2.tar"; + sha256 = "0z96zz6h5r880nbhclbxs2r0zfkg771lg0fjghigqxz8ai0hh1ll"; }; packageRequires = [ xelb ]; meta = { @@ -1044,10 +1057,10 @@ }) {}; multishell = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "multishell"; - version = "1.1.2"; + version = "1.1.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/multishell-1.1.2.tar"; - sha256 = "1y0b6ri0kgxj0jw1cyb796lsy3ipzb7syvmj7pqpx9myzpvd3hz3"; + url = "http://elpa.gnu.org/packages/multishell-1.1.5.tar"; + sha256 = "0g38p5biyxqkjdkmxlikvhkhkmafyy3ibd012q83skaf8fi4cv1y"; }; packageRequires = []; meta = { @@ -1202,10 +1215,10 @@ }) {}; org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "org"; - version = "20160201"; + version = "20160215"; src = fetchurl { - url = "http://elpa.gnu.org/packages/org-20160201.tar"; - sha256 = "1lyvfpksl88c9d7k2w4k3iswgjah51k9f8fdi3jbfwivd814m9nb"; + url = "http://elpa.gnu.org/packages/org-20160215.tar"; + sha256 = "0w2686rza4xdknq3sy87s04zvlmjxyr6wrj9y9ydcv8hbzws3bhd"; }; packageRequires = []; meta = { @@ -1492,10 +1505,10 @@ }) {}; spinner = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "spinner"; - version = "1.4"; + version = "1.7"; src = fetchurl { - url = "http://elpa.gnu.org/packages/spinner-1.4.el"; - sha256 = "0j4x8hbnhda83yyb31mm9b014pfb81gdfsr026rhn8ls3y163dbf"; + url = "http://elpa.gnu.org/packages/spinner-1.7.el"; + sha256 = "1y78kr26mi74xf0qh32dvhk7w3bkj6d9i2iw1mypsr0h5phg8ahf"; }; packageRequires = []; meta = { @@ -1532,10 +1545,10 @@ svg-clock = callPackage ({ elpaBuild, emacs, fetchurl, lib, svg }: elpaBuild { pname = "svg-clock"; - version = "0.5"; + version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/svg-clock-0.5.el"; - sha256 = "1i77c7nyqcwc6b6n7vdh95xbmwv5kpdds6j7pklp4c9vbvm8axgp"; + url = "http://elpa.gnu.org/packages/svg-clock-1.0.el"; + sha256 = "0j6zk7fsv72af12phqdw8axbn2y8y4rfgxiab1p3pxq3y7k47jid"; }; packageRequires = [ emacs svg ]; meta = { @@ -1623,6 +1636,19 @@ license = lib.licenses.free; }; }) {}; + tramp-theme = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { + pname = "tramp-theme"; + version = "0.1.1"; + src = fetchurl { + url = "http://elpa.gnu.org/packages/tramp-theme-0.1.1.el"; + sha256 = "0l8i625h9sc6h59qfj847blmfwfhf9bvfsbmwfb56qzs535fby3y"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "http://elpa.gnu.org/packages/tramp-theme.html"; + license = lib.licenses.free; + }; + }) {}; transcribe = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "transcribe"; version = "1.0.2"; @@ -1675,6 +1701,20 @@ license = lib.licenses.free; }; }) {}; + url-http-ntlm = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, ntlm ? null }: + elpaBuild { + pname = "url-http-ntlm"; + version = "2.0.1"; + src = fetchurl { + url = "http://elpa.gnu.org/packages/url-http-ntlm-2.0.1.tar"; + sha256 = "0h6xsm1x7v69kb4shyvv1p4f6sxgcqs5ap6ylqydz10mbcx7aq0w"; + }; + packageRequires = [ cl-lib ntlm ]; + meta = { + homepage = "http://elpa.gnu.org/packages/url-http-ntlm.html"; + license = lib.licenses.free; + }; + }) {}; vlf = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "vlf"; version = "1.7"; @@ -1809,10 +1849,10 @@ xelb = callPackage ({ cl-generic, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "xelb"; - version = "0.4"; + version = "0.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/xelb-0.4.tar"; - sha256 = "1m3wmlzcnbv1akncdaakfy4xmxyjnfb6yl1nfahwf4lfxlsvnwzd"; + url = "http://elpa.gnu.org/packages/xelb-0.5.tar"; + sha256 = "1wypffg492r2a3h136c6mphsbgimxcipsarm971z56kpy3lwi4sb"; }; packageRequires = [ cl-generic emacs ]; meta = { From 2dd51275eb6794e0a588165fc9f9f041c385c9e5 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Sun, 21 Feb 2016 20:56:51 -0600 Subject: [PATCH 106/291] dpic: init at 2016.01.12 --- lib/maintainers.nix | 1 + pkgs/tools/graphics/dpic/default.nix | 29 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 32 insertions(+) create mode 100644 pkgs/tools/graphics/dpic/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 39d91df0498..06257b1ca73 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -12,6 +12,7 @@ abaldeau = "Andreas Baldeau "; abbradar = "Nikolay Amiantov "; adev = "Adrien Devresse "; + aespinosa = "Allan Espinosa "; aforemny = "Alexander Foremny "; aflatter = "Alexander Flatter "; aherrmann = "Andreas Herrmann "; diff --git a/pkgs/tools/graphics/dpic/default.nix b/pkgs/tools/graphics/dpic/default.nix new file mode 100644 index 00000000000..ea73a0e95b9 --- /dev/null +++ b/pkgs/tools/graphics/dpic/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "dpic-${version}"; + version = "2016.01.12"; + + src = fetchurl { + url = "https://ece.uwaterloo.ca/~aplevich/dpic/${name}.tar.gz"; + sha256 = "0iwwf8shgm8n4drz8mndvk7jga93yy8plnyby3lgk8376g5ps6cz"; + }; + + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; + + makeFlags = "CC=${stdenv.cc.outPath}/bin/cc"; + + installPhase = '' + mkdir -p $out/bin + cp -fv dpic $out/bin + ''; + + meta = { + homepage = "https://ece.uwaterloo.ca/~aplevich/dpic/"; + description = "An implementation of the pic little language for creating drawings"; + license = stdenv.lib.licenses.bsd2; + maintainers = [ stdenv.lib.maintainers.aespinosa ]; + platforms = stdenv.lib.platforms.all; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c1968298657..7e75601eecb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -866,6 +866,8 @@ let dlx = callPackage ../misc/emulators/dlx { }; + dpic = callPackage ../tools/graphics/dpic { }; + dragon-drop = callPackage ../tools/X11/dragon-drop { gtk = gtk3; }; From 2960ea5292de0d0cb978e74f5b94d533f904eedd Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Mon, 22 Feb 2016 14:53:34 +0100 Subject: [PATCH 107/291] nco: init at 4.5.5 --- lib/maintainers.nix | 1 + pkgs/development/libraries/nco/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 24 insertions(+) create mode 100644 pkgs/development/libraries/nco/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index c0b6804f098..1fda2d1be0f 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -58,6 +58,7 @@ bosu = "Boris Sukholitko "; bramd = "Bram Duvigneau "; bstrik = "Berno Strik "; + bzizou = "Bruno Bzeznik "; c0dehero = "CodeHero "; calrama = "Moritz Maxeiner "; campadrenalin = "Philip Horger "; diff --git a/pkgs/development/libraries/nco/default.nix b/pkgs/development/libraries/nco/default.nix new file mode 100644 index 00000000000..0a284722e02 --- /dev/null +++ b/pkgs/development/libraries/nco/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, netcdf, netcdfcxx4, gsl, udunits, antlr, which, curl }: + +stdenv.mkDerivation rec { + version = "4.5.5"; + name = "nco"; + + buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ]; + + src = fetchurl { + url = "https://github.com/nco/nco/archive/${version}.tar.gz"; + sha256 = "bc6f5b976fdfbdec51f2ebefa158fa54672442c2fd5f042ba884f9f32c2ad666"; + }; + + meta = { + description = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; + homepage = http://nco.sourceforge.net/; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.bzizou ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index df56303c774..a90b8b4b9a5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2426,6 +2426,8 @@ let netcdfcxx4 = callPackage ../development/libraries/netcdf-cxx4 { }; + nco = callPackage ../development/libraries/nco { }; + nc6 = callPackage ../tools/networking/nc6 { }; ncat = callPackage ../tools/networking/ncat { }; From 60f354dfb8ba7b4ac0f4ddc7bf22bf9c7dd1f40a Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 22 Feb 2016 10:50:27 -0600 Subject: [PATCH 108/291] nix-prefetch-git: output base32 hash so output matches nix-build errors It turns out hashFormat has never been set. --- pkgs/build-support/fetchgit/nix-prefetch-git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index 2c5852c646e..97096aa2980 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -326,7 +326,7 @@ else clone_user_rev "$tmpFile" "$url" "$rev" # Compute the hash. - hash=$(nix-hash --type $hashType $hashFormat $tmpFile) + hash=$(nix-hash --type $hashType --base32 $tmpFile) if ! test -n "$QUIET"; then echo "hash is $hash" >&2; fi # Add the downloaded file to the Nix store. From f57c049e0b114c156b6adb61738e7c5308a161d4 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 21 Feb 2016 14:26:07 -0600 Subject: [PATCH 109/291] nixos-manual: Accept numbers for ttyNumber, closes #3608 --- nixos/modules/services/misc/nixos-manual.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/misc/nixos-manual.nix b/nixos/modules/services/misc/nixos-manual.nix index 3e1f53e79f3..79943a21224 100644 --- a/nixos/modules/services/misc/nixos-manual.nix +++ b/nixos/modules/services/misc/nixos-manual.nix @@ -72,7 +72,8 @@ in }; services.nixosManual.ttyNumber = mkOption { - default = "8"; + type = types.int; + default = 8; description = '' Virtual console on which to show the manual. ''; @@ -96,7 +97,7 @@ in [ manual.manual help ] ++ optional config.programs.man.enable manual.manpages; - boot.extraTTYs = mkIf cfg.showManual ["tty${cfg.ttyNumber}"]; + boot.extraTTYs = mkIf cfg.showManual ["tty${toString cfg.ttyNumber}"]; systemd.services = optionalAttrs cfg.showManual { "nixos-manual" = @@ -106,7 +107,7 @@ in { ExecStart = "${cfg.browser} ${entry}"; StandardInput = "tty"; StandardOutput = "tty"; - TTYPath = "/dev/tty${cfg.ttyNumber}"; + TTYPath = "/dev/tty${toString cfg.ttyNumber}"; TTYReset = true; TTYVTDisallocate = true; Restart = "always"; From 81032a4722f3a37c51702b76c5424f509af5c0a5 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 22 Feb 2016 02:05:24 +0300 Subject: [PATCH 110/291] octoprint-plugins.m3d-fio: 0.26 -> 0.27 --- ...nnection-several-times-if-printer-is.patch | 57 ------------------- pkgs/applications/misc/octoprint/plugins.nix | 5 +- 2 files changed, 2 insertions(+), 60 deletions(-) delete mode 100644 pkgs/applications/misc/octoprint/0002-Try-to-create-connection-several-times-if-printer-is.patch diff --git a/pkgs/applications/misc/octoprint/0002-Try-to-create-connection-several-times-if-printer-is.patch b/pkgs/applications/misc/octoprint/0002-Try-to-create-connection-several-times-if-printer-is.patch deleted file mode 100644 index 63495fd6db9..00000000000 --- a/pkgs/applications/misc/octoprint/0002-Try-to-create-connection-several-times-if-printer-is.patch +++ /dev/null @@ -1,57 +0,0 @@ -From b99fc3fd012765c5b3d8ac7a3f64762af5121b4a Mon Sep 17 00:00:00 2001 -From: Nikolay Amiantov -Date: Wed, 17 Feb 2016 15:47:34 +0300 -Subject: [PATCH 2/2] Try to create connection several times if printer is not - yet available - ---- - octoprint_m3dfio/__init__.py | 25 ++++++++++++++++++++++--- - 1 file changed, 22 insertions(+), 3 deletions(-) - -diff --git a/octoprint_m3dfio/__init__.py b/octoprint_m3dfio/__init__.py -index 9f59768..e7d97eb 100644 ---- a/octoprint_m3dfio/__init__.py -+++ b/octoprint_m3dfio/__init__.py -@@ -3421,8 +3421,16 @@ class M3DFioPlugin( - # Set updated port - currentPort = self.getPort() - -- # Re-connect -- connection = serial.Serial(currentPort, currentBaudrate) -+ # Re-connect; wait for the device to be available -+ connection = None -+ for i in range(1, 5): -+ try: -+ connection = serial.Serial(currentPort, currentBaudrate) -+ break -+ except OSError: -+ time.sleep(1) -+ if connection is None: -+ raise Exception("Couldn't reconnect to the printer") - - # Check if getting EEPROM was successful - if self.getEeprom(connection) : -@@ -6799,8 +6807,19 @@ class M3DFioPlugin( - # Set state to connecting - comm_instance._log("Connecting to: " + str(port)) - -+ # Create a connection -+ connection = None -+ for i in range(1, 5): -+ try: -+ connection = serial.Serial(str(port), baudrate) -+ # If printer has just power-cycled it may not yet be ready -+ except OSError: -+ time.sleep(1) -+ if connection is None: -+ raise Exception("Couldn't reconnect to the printer") -+ - # Return connection -- return serial.Serial(str(port), baudrate) -+ return connection - - # Disable sleep - def disableSleep(self) : --- -2.7.0 - diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 801be43220d..33f4561598a 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -8,18 +8,17 @@ in { m3d-fio = buildPlugin rec { name = "M3D-Fio-${version}"; - version = "0.26"; + version = "0.27"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "1dl8m0cxp2vzla2a729r3jrq5ahxkj10pygp7m9bblj5nn2s0rll"; + sha256 = "14zva61dhnsyapapw8q2qadfq5hzv5ykb7qxlz8a3x5j6wfhjn6h"; }; patches = [ ./0001-Don-t-use-static-library.patch - ./0002-Try-to-create-connection-several-times-if-printer-is.patch ]; postInstall = '' From 0022f639f31161766b8f2604388015e8b05c4a0d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 22 Feb 2016 02:15:41 +0300 Subject: [PATCH 111/291] octoprint-plugins.titlestatus: 0.0.2 -> 0.0.4 --- pkgs/applications/misc/octoprint/plugins.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 33f4561598a..a0c458baa96 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -41,13 +41,13 @@ in { titlestatus = buildPlugin rec { name = "OctoPrint-TitleStatus-${version}"; - version = "0.0.2"; + version = "0.0.4"; src = fetchFromGitHub { owner = "MoonshineSG"; repo = "OctoPrint-TitleStatus"; rev = version; - sha256 = "0rfbpxbcmadyihcrynh6bjywy3yqnzsnjn3yiwifisbrjgpm6sfw"; + sha256 = "1l78xrabn5hcly2mgxwi17nwgnp2s6jxi9iy4wnw8k8icv74ag7k"; }; meta = with stdenv.lib; { From a9e8c742fb975d7c43e4c62ef93617b76c5f9d51 Mon Sep 17 00:00:00 2001 From: Josef Knedl Date: Mon, 22 Feb 2016 19:05:17 +0100 Subject: [PATCH 112/291] proj: Add platforms.darwin and enable doCheck. --- pkgs/development/libraries/proj/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/proj/default.nix b/pkgs/development/libraries/proj/default.nix index 14f459cc6fe..bc9178f6367 100644 --- a/pkgs/development/libraries/proj/default.nix +++ b/pkgs/development/libraries/proj/default.nix @@ -8,11 +8,13 @@ stdenv.mkDerivation { sha256 = "15kpcmz3qjxfrs6vq48mgyvb4vxscmwgkzrdcn71a60wxp8rmgv0"; }; + doCheck = true; + meta = with stdenv.lib; { description = "Cartographic Projections Library"; homepage = http://trac.osgeo.org/proj/; license = licenses.mit; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; maintainers = with maintainers; [ vbgl ]; }; } From 64974687623a3803a2801ed08bd8228b0666a4b6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 16 Feb 2016 16:38:59 +0100 Subject: [PATCH 113/291] dosemu-fonts: use versioned `name` This also happens to solve a hash mismatch for me, but that might be a coincidence. --- pkgs/data/fonts/dosemu-fonts/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/dosemu-fonts/default.nix b/pkgs/data/fonts/dosemu-fonts/default.nix index 6f325b4ea4f..97fb0b82c74 100644 --- a/pkgs/data/fonts/dosemu-fonts/default.nix +++ b/pkgs/data/fonts/dosemu-fonts/default.nix @@ -1,10 +1,11 @@ {stdenv, fetchurl, bdftopcf, mkfontdir, mkfontscale}: -stdenv.mkDerivation { - name = "dosemu-fonts"; +stdenv.mkDerivation rec { + version = "1.4.0"; + name = "dosemu-fonts-${version}"; src = fetchurl { - url = mirror://sourceforge/dosemu/dosemu-1.4.0.tgz; + url = "mirror://sourceforge/dosemu/dosemu-${version}.tgz"; sha256 = "0l1zwmw42mpakjrzmbygshcg2qzq9mv8lx42738rz3j9hrqzg4pw"; }; From 3675366f811fa9bf64c6dbccf8d84d90e7ad15ae Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 17 Feb 2016 21:09:51 +0100 Subject: [PATCH 114/291] miniupnpd: 1.9.20160212 -> 1.9.20160216 Changes: - minor changes to follow UDA 1.1 more closely. - more argument checking in Soap methods. Log: https://github.com/miniupnp/miniupnp/blob/master/miniupnpd/Changelog.txt --- pkgs/tools/networking/miniupnpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index 8eb96913bca..d93b429ea4f 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -3,11 +3,11 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - name = "miniupnpd-1.9.20160212"; + name = "miniupnpd-1.9.20160216"; src = fetchurl { url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz"; - sha256 = "1fsl46f7lrhpb597m0a905nwijpf188cchgg6pz39fx2mgjjjk9l"; + sha256 = "001f9qc8zzrqbmjvpgwvpmi85sgb5ncl6gi9djxjr5n95a92r0g3"; name = "${name}.tar.gz"; }; From 9135aea76f449294d52e86b78f2d1fa4416ff548 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 17 Feb 2016 22:50:52 +0100 Subject: [PATCH 115/291] sane-backends-git: 2016-01-25 -> 2016-02-19 --- pkgs/applications/graphics/sane/backends/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index bb5e787ede6..ad1302c9913 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-01-25"; + version = "2016-02-19"; src = fetchgit { - sha256 = "db1fecd671bd8b3a777138bb4815285b4364ee3ad01ab05424b4aa0c20ed9919"; - rev = "056f590f2d147099554d97a89dd5e0ddfa8d6dda"; + sha256 = "d50971c106c8e0071d71daad7235776ac9a07a5ab0adb1e0eae5536b3021dd5f"; + rev = "d74d3bcd887d2a3d59ee96e04eb68f15c0a3b882"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) From 74acc3ad936104ccabbcc8114f1fa85566f8bd1e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 18 Feb 2016 16:43:55 +0100 Subject: [PATCH 116/291] zstd: 0.5.0 -> 0.5.1 Changes: - New: Optimal parsing => Very high compression modes, thanks to @inikep - Changed: Dictionary builder integrated into libzstd and zstd cli - Changed (!): zstd cli now uses "multiple input files" as default mode. See zstd -h. - Fix: high compression modes for big-endian platforms (#123) - New: zstd cli : -t | --test command --- pkgs/tools/compression/zstd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix index e095b2d4e07..0d5ad10efcf 100644 --- a/pkgs/tools/compression/zstd/default.nix +++ b/pkgs/tools/compression/zstd/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "zstd-${version}"; - version = "0.5.0"; + version = "0.5.1"; src = fetchFromGitHub { - sha256 = "18jwhvzj3kv8lpr6fgild7a574lsak93fc1z8nvhcdbc1b1n2dsj"; + sha256 = "18mfrq5fqd7gkkqrgc32rlb98vw45rq1vsbrg44bprg3mv6ca3ls"; rev = "v${version}"; repo = "zstd"; owner = "Cyan4973"; From 2919200db320b8d34f074bf5426e4cddddc515a5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 18 Feb 2016 17:51:25 +0100 Subject: [PATCH 117/291] libpsl: 2016-02-09 -> 2016-02-16 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 535c5cfeb65..c53c4792a6f 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-02-09"; + listVersion = "2016-02-16"; listSources = fetchFromGitHub { - sha256 = "17jxkwdd2l6aycg2q5img8gad3pb9k6fgikf87dybl3ydn0bpdja"; - rev = "73668f743df8125477d38690807e3a9a1e1e9f19"; + sha256 = "0f27nynm4skn1mnv7kgyyl7cy599n6al7x3alvqn0nw9s25cfmkc"; + rev = "5bece2d9de4bb67274fd8e5928d6b449e7ff7674"; repo = "list"; owner = "publicsuffix"; }; From e31c8922e00165f00bc148c14a4f5c260f50789e Mon Sep 17 00:00:00 2001 From: Thomas Bereknyei Date: Mon, 22 Feb 2016 13:47:37 -0500 Subject: [PATCH 118/291] kippo: revert twisted dependency --- nixos/modules/services/networking/kippo.nix | 6 +++--- pkgs/servers/kippo/default.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/networking/kippo.nix b/nixos/modules/services/networking/kippo.nix index 7d70a3d05fa..5f3efcd133a 100644 --- a/nixos/modules/services/networking/kippo.nix +++ b/nixos/modules/services/networking/kippo.nix @@ -54,7 +54,7 @@ rec { }; config = mkIf cfg.enable { environment.systemPackages = with pkgs.pythonPackages; [ - python twisted pycrypto pyasn1 ]; + python twisted_11 pycrypto pyasn1 ]; environment.etc."kippo.cfg".text = '' # Automatically generated by NixOS. @@ -84,7 +84,7 @@ rec { description = "Kippo Web Server"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - environment.PYTHONPATH = "${pkgs.kippo}/src/:${pkgs.pythonPackages.pycrypto}/lib/python2.7/site-packages/:${pkgs.pythonPackages.pyasn1}/lib/python2.7/site-packages/:${pkgs.pythonPackages.python}/lib/python2.7/site-packages/:${pkgs.pythonPackages.twisted}/lib/python2.7/site-packages/:."; + environment.PYTHONPATH = "${pkgs.kippo}/src/:${pkgs.pythonPackages.pycrypto}/lib/python2.7/site-packages/:${pkgs.pythonPackages.pyasn1}/lib/python2.7/site-packages/:${pkgs.pythonPackages.python}/lib/python2.7/site-packages/:${pkgs.pythonPackages.twisted_11}/lib/python2.7/site-packages/:."; preStart = '' if [ ! -d ${cfg.varPath}/ ] ; then mkdir -p ${cfg.logPath}/tty @@ -107,7 +107,7 @@ rec { fi ''; - serviceConfig.ExecStart = "${pkgs.pythonPackages.twisted}/bin/twistd -y ${pkgs.kippo}/src/kippo.tac --syslog --rundir=${cfg.varPath}/ --pidfile=${cfg.pidPath}/kippo.pid --prefix=kippo -n"; + serviceConfig.ExecStart = "${pkgs.pythonPackages.twisted_11}/bin/twistd -y ${pkgs.kippo}/src/kippo.tac --syslog --rundir=${cfg.varPath}/ --pidfile=${cfg.pidPath}/kippo.pid --prefix=kippo -n"; serviceConfig.PermissionsStartOnly = true; serviceConfig.User = "kippo"; serviceConfig.Group = "kippo"; diff --git a/pkgs/servers/kippo/default.nix b/pkgs/servers/kippo/default.nix index 30d3fc3ab18..51630b4231c 100644 --- a/pkgs/servers/kippo/default.nix +++ b/pkgs/servers/kippo/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { url = "https://kippo.googlecode.com/files/kippo-${version}.tar.gz"; sha1 = "f57a5cf88171cb005afe44a4b33cb16f825c33d6"; }; - buildInputs = with pkgs.pythonPackages; [ pycrypto pyasn1 twisted ]; + buildInputs = with pkgs.pythonPackages; [ pycrypto pyasn1 twisted_11 ]; installPhase = '' substituteInPlace ./kippo.tac --replace "kippo.cfg" "$out/src/kippo.cfg" substituteInPlace ./kippo.cfg --replace "log_path = log" "log_path = /var/log/kippo" \ From 058c768892e5b7687528f612040e6e850642de4b Mon Sep 17 00:00:00 2001 From: Edgar Aroutiounian Date: Tue, 16 Feb 2016 08:09:53 +0000 Subject: [PATCH 119/291] ios-cross-compile: init at 9.2 --- lib/maintainers.nix | 1 + .../compilers/ios-cross-compile/9.2.nix | 64 ++++++ .../ios-cross-compile/9.2_builder.sh | 153 +++++++++++++ .../compilers/ios-cross-compile/alt_wrapper.c | 212 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 5 files changed, 432 insertions(+) create mode 100644 pkgs/development/compilers/ios-cross-compile/9.2.nix create mode 100644 pkgs/development/compilers/ios-cross-compile/9.2_builder.sh create mode 100644 pkgs/development/compilers/ios-cross-compile/alt_wrapper.c diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 7426e18a61b..c3ee7f08d5c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -122,6 +122,7 @@ ftrvxmtrx = "Siarhei Zirukin "; funfunctor = "Edward O'Callaghan "; fuuzetsu = "Mateusz Kowalczyk "; + fxfactorial = "Edgar Aroutiounian "; gal_bolle = "Florent Becker "; garbas = "Rok Garbas "; garrison = "Jim Garrison "; diff --git a/pkgs/development/compilers/ios-cross-compile/9.2.nix b/pkgs/development/compilers/ios-cross-compile/9.2.nix new file mode 100644 index 00000000000..5ec24e01617 --- /dev/null +++ b/pkgs/development/compilers/ios-cross-compile/9.2.nix @@ -0,0 +1,64 @@ +{ stdenv, git, clang, + fetchFromGitHub, requireFile, + openssl, xz, gnutar, gcc, + automake, autoconf, libtool, clangStdenv } : + +clangStdenv.mkDerivation rec { + name = "ios-cross-compile-${version}"; + version = "9.2"; + sdk = "iPhoneOS9.2.sdk"; + cctools_port = fetchFromGitHub { + owner = "tpoechtrager"; + repo = "cctools-port"; + rev = "7d405492b09fa27546caaa989b8493829365deab"; + sha256 = "0nj1q5bqdx5jm68dispybxc7wnkb6p8p2igpnap9q6qyv2r9p07w"; + }; + ldid = fetchFromGitHub { + owner = "tpoechtrager"; + repo = "ldid"; + rev = "3064ed628108da4b9a52cfbe5d4c1a5817811400"; + sha256 = "1a6zaz8fgbi239l5zqx9xi3hsrv3jmfh8dkiy5gmnjs6v4gcf6sf"; + }; + src = requireFile rec { + name = "iPhoneOS9.2.sdk.tar.xz"; + sha256 = "1l2h3cic9psrq3nmfv9aaxkdk8y2pvr0iq6apj87mb3ms9a4cqrq"; + message = '' + You need to do the following steps to get a prepared + ios tarball. + + 1) Download an XCode dmg, specifically XCode_7.2.dmg + 2) Install darling-dmg, available via: nix-env -i darling-dmg + 3) Follow this shell history: + + $ cd ~/ + $ mkdir xcode + $ darling-dmg Xcode_7.2dmg xcode + $ cd xcode/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs + $ mktemp -d + /tmp/gar/tmp.4ZZ8kqyfqp/ + $ mkdir /tmp/gar/tmp.4ZZ8kqyfqp/iPhoneOS9.2.sdk + $ cp -r iPhoneOS.sdk/* /tmp/gar/tmp.4ZZ8kqyfqp/iPhoneOS9.2.sdk + $ cp -r ../../../../Toolchains/XcodeDefault.xctoolchain/usr/include/c++/* \ + /tmp/gar/tmp.4ZZ8kqyfqp/iPhoneOS9.2.sdk/usr/include/c++ + $ tar -cf - * | xz -9 -c - > iPhoneOS9.2.sdk.tar.xz + $ cd ~/ + $ fusermount -u xcode + + Then do: + + nix-prefetch-url file:///path/to/${name} + + and run this installation again. + ''; + }; + buildInputs = [ git xz gnutar openssl automake autoconf libtool clang ]; + alt_wrapper = ./alt_wrapper.c; + builder = ./9.2_builder.sh; + meta = { + description = + "Provides an iOS cross compiler from 7.1 up to iOS-${version} and ldid"; + platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ fxfactorial ]; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/development/compilers/ios-cross-compile/9.2_builder.sh b/pkgs/development/compilers/ios-cross-compile/9.2_builder.sh new file mode 100644 index 00000000000..4604b1fdea7 --- /dev/null +++ b/pkgs/development/compilers/ios-cross-compile/9.2_builder.sh @@ -0,0 +1,153 @@ +# -*- shell-script -*- +source $stdenv/setup + +function extract +{ + printf "extracting $(basename $1) ...\n" + local tarflags="xf" + + case "$1" in + *.tar.xz) + xz -dc $1 | tar "$tarflags" - ;; + *) + printf "Make sure you give a iPhoneOS9.2.sdk.tar.xz file \n" ;; + esac +} + +function verify_arch { + case "$1" in + # Our good arches. + armv7|arm64) ;; + *) + local + acc="armv7 | arm64" + error_message=$( + printf '%s is not an acceptable arch. Try one of %s' "$1" "$acc" + ) + printf "$error_message\n" + exit + esac +} + +function verify_sdk_version { + sdk_version=$(basename "$1" | grep -P -o "[0-9].[0-9]+") + case "$sdk_version" in + # Make sure the SDK is correct. + [5-9].[0-9]) ;; + *) + printf 'No iPhone SDK version in file name\n' + esac +} + +function do_build { + + if [ $# -lt 2 ]; then + printf "usage: $0 iPhoneOS.sdk.tar* \n" 1>&2 + printf "i.e. $0 /path/to/iPhoneOS.sdk.tar.xz armv7\n" 1>&2 + exit 1 + fi + + mkdir -p $out + + chmod -R 755 "$cctools_port" + + pushd "$cctools_port"/usage_examples/ios_toolchain &> /dev/null + + export LC_ALL=C + + local + triple='%s-apple-darwin11' + target_dir="$PWD/target" + sdk_dir="$target_dir/SDK" + platform="$(uname -s)" + # Will be mutated by verify_sdk_version + sdk_version= + + mkdir -p "$target_dir" + mkdir -p "$target_dir/bin" + mkdir -p "$sdk_dir" + + verify_arch "$2" + verify_sdk_version "$1" + + triple="$(printf "$triple" "$2")" + pushd "$sdk_dir" &>/dev/null + extract "$1" + + local sys_lib=$( + find $sdk_dir -name libSystem.dylib -o -name libSystem.tbd | head -n1 + ) + + if [ -z "$sys_lib" ]; then + printf "SDK should contain libSystem{.dylib,.tbd}\n" 1>&2 + exit 1 + fi + + local sys_root=$(readlink -f "$(dirname $sys_lib)/../..") + + local sdk_unboxed=$(basename $sys_root) + + mv -f "$sys_root"/* "$sdk_dir" || true + + popd &>/dev/null + + printf "\nbuilding wrapper\n" + + printf "int main(){return 0;}" | clang -xc -O2 -o "$target_dir"/bin/dsymutil - + + clang -O2 -std=c99 $alt_wrapper \ + -DTARGET_CPU=$(printf '"%s"' "$2") \ + -DNIX_APPLE_HDRS=$( + printf '"%s"' "-I$out/$sdk/usr/include" + ) \ + -DNIX_APPLE_FRAMEWORKS=$( + printf '"%s"' "$out/$sdk/System/Library/Frameworks" + ) \ + -DNIX_APPLE_PRIV_FRAMEWORKS=$( + printf '"%s"' "$out/$sdk/System/Library/PrivateFrameworks" + ) \ + -DOS_VER_MIN=$(printf '"%s"' "7.1") \ + -o "$target_dir/bin/$triple-clang" + + pushd "$target_dir"/bin &>/dev/null + + cp "$triple"-clang "$triple"-clang++ + + popd &>/dev/null + + printf "\nbuilding ldid\n" + + mkdir -p tmp + pushd tmp &>/dev/null + pushd "$ldid" &>/dev/null + + chmod -R 755 "$ldid" + + make INSTALLPREFIX="$target_dir" -j4 install + popd &>/dev/null + popd &>/dev/null + + printf "\nbuilding cctools / ld64\n" + + pushd ../../cctools &>/dev/null + git clean -fdx . &>/dev/null || true + ./autogen.sh + ./configure --target="$triple" --prefix="$target_dir" + make -j4 + make install &>/dev/null + + popd &>/dev/null + + local me=`whoami` + + for d in bin libexec SDK; do + chown -R $me:$me target/$d + cp -R target/$d $out + done + + # Crucial piece + rm -rf $out/$sdk + mv $out/SDK $out/$sdk +} + +do_build $src armv7 diff --git a/pkgs/development/compilers/ios-cross-compile/alt_wrapper.c b/pkgs/development/compilers/ios-cross-compile/alt_wrapper.c new file mode 100644 index 00000000000..928b64e6fd9 --- /dev/null +++ b/pkgs/development/compilers/ios-cross-compile/alt_wrapper.c @@ -0,0 +1,212 @@ +/* + This and the shell builder was originally written by + https://github.com/tpoechtrager but I had to modify both so that + they played nicely and were reproducible with nixpkgs. Much thanks + to MixRank for letting me work on this. + Edgar Aroutiounian + */ + +#ifndef TARGET_CPU +#define TARGET_CPU "armv7" +#endif + +#ifndef OS_VER_MIN +#define OS_VER_MIN "4.2" +#endif + +#ifndef NIX_APPLE_HDRS +#define NIX_APPLE_HDRS "" +#endif + +#ifndef NIX_APPLE_FRAMEWORKS +#define NIX_APPLE_FRAMEWORKS "" +#endif + +#ifndef NIX_APPLE_PRIV_FRAMEWORKS +#define NIX_APPLE_PRIV_FRAMEWORKS "" +#endif + +#define _GNU_SOURCE + +#include +#include +#include +#include +#include +#include + +#ifdef __APPLE__ +#include +#endif + +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) +#include +#endif + +#ifdef __OpenBSD__ +#include +#include +#include +#endif + +char *get_executable_path(char *epath, size_t buflen) +{ + char *p; +#ifdef __APPLE__ + unsigned int l = buflen; + if (_NSGetExecutablePath(epath, &l) != 0) return NULL; +#elif defined(__FreeBSD__) || defined(__DragonFly__) + int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 }; + size_t l = buflen; + if (sysctl(mib, 4, epath, &l, NULL, 0) != 0) return NULL; +#elif defined(__OpenBSD__) + int mib[4]; + char **argv; + size_t len; + size_t l; + const char *comm; + int ok = 0; + mib[0] = CTL_KERN; + mib[1] = KERN_PROC_ARGS; + mib[2] = getpid(); + mib[3] = KERN_PROC_ARGV; + if (sysctl(mib, 4, NULL, &len, NULL, 0) < 0) + abort(); + if (!(argv = malloc(len))) + abort(); + if (sysctl(mib, 4, argv, &len, NULL, 0) < 0) + abort(); + comm = argv[0]; + if (*comm == '/' || *comm == '.') { + char *rpath; + if ((rpath = realpath(comm, NULL))) { + strlcpy(epath, rpath, buflen); + free(rpath); + ok = 1; + } + } else { + char *sp; + char *xpath = strdup(getenv("PATH")); + char *path = strtok_r(xpath, ":", &sp); + struct stat st; + if (!xpath) + abort(); + while (path) { + snprintf(epath, buflen, "%s/%s", path, comm); + if (!stat(epath, &st) && (st.st_mode & S_IXUSR)) { + ok = 1; + break; + } + path = strtok_r(NULL, ":", &sp); + } + free(xpath); + } + free(argv); + if (!ok) return NULL; + l = strlen(epath); +#else + ssize_t l = readlink("/proc/self/exe", epath, buflen); +#endif + if (l <= 0) return NULL; + epath[buflen - 1] = '\0'; + p = strrchr(epath, '/'); + if (p) *p = '\0'; + return epath; +} + +char *get_filename(char *str) +{ + char *p = strrchr(str, '/'); + return p ? &p[1] : str; +} + +void target_info(char *argv[], char **triple, char **compiler) +{ + char *p = get_filename(argv[0]); + char *x = strrchr(p, '-'); + if (!x) abort(); + *compiler = &x[1]; + *x = '\0'; + *triple = p; +} + +void env(char **p, const char *name, char *fallback) +{ + char *ev = getenv(name); + if (ev) { *p = ev; return; } + *p = fallback; +} + +int main(int argc, char *argv[]) +{ + char **args = alloca(sizeof(char*) * (argc + 17)); + int i, j; + + char execpath[PATH_MAX+1]; + char sdkpath[PATH_MAX+1]; + char codesign_allocate[64]; + char osvermin[64]; + + char *compiler, *target, *sdk, *cpu, *osmin; + + target_info(argv, &target, &compiler); + + if (!get_executable_path(execpath, sizeof(execpath))) abort(); + snprintf(sdkpath, sizeof(sdkpath), "%s/../SDK", execpath); + + snprintf(codesign_allocate, sizeof(codesign_allocate), + "%s-codesign_allocate", target); + + setenv("CODESIGN_ALLOCATE", codesign_allocate, 1); + setenv("IOS_FAKE_CODE_SIGN", "1", 1); + + env(&sdk, "IOS_SDK_SYSROOT", sdkpath); + env(&cpu, "IOS_TARGET_CPU", TARGET_CPU); + + env(&osmin, "IPHONEOS_DEPLOYMENT_TARGET", OS_VER_MIN); + unsetenv("IPHONEOS_DEPLOYMENT_TARGET"); + + snprintf(osvermin, sizeof(osvermin), "-miphoneos-version-min=%s", osmin); + + for (i = 1; i < argc; ++i) { + if (!strcmp(argv[i], "-arch")) { + cpu = NULL; + break; + } + } + + i = 0; + + args[i++] = compiler; + args[i++] = "-target"; + args[i++] = target; + args[i++] = "-isysroot"; + args[i++] = sdk; + args[i++] = NIX_APPLE_HDRS; + args[i++] = "-F"; + args[i++] = NIX_APPLE_FRAMEWORKS; + args[i++] = "-F"; + args[i++] = NIX_APPLE_PRIV_FRAMEWORKS; + + if (cpu) { + args[i++] = "-arch"; + args[i++] = cpu; + } + + args[i++] = osvermin; + args[i++] = "-mlinker-version=253.3"; + + for (j = 1; j < argc; ++i, ++j) args[i] = argv[j]; + + args[i] = NULL; + + setenv("COMPILER_PATH", execpath, 1); + /* int k; */ + /* for (k = 0; k < i; k++) */ + /* printf("Compiler option: %s\n", args[k]); */ + /* printf("End of Compiler args\n"); */ + execvp(compiler, args); + + fprintf(stderr, "cannot invoke compiler, this is a serious bug\n"); + return 1; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a219658881a..6c7b09ad147 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7048,6 +7048,8 @@ let intltool = callPackage ../development/tools/misc/intltool { }; + ios-cross-compile = callPackage ../development/compilers/ios-cross-compile/9.2.nix {}; + ip2location-c = callPackage ../development/libraries/ip2location-c { }; irrlicht = callPackage ../development/libraries/irrlicht { }; From 59a1dc4be22ccaec5a3c9d8d732cf89fe36dc96e Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Mon, 22 Feb 2016 15:13:34 +0100 Subject: [PATCH 120/291] libdap: init at 3.15.1 --- pkgs/development/libraries/libdap/default.nix | 21 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/libraries/libdap/default.nix diff --git a/pkgs/development/libraries/libdap/default.nix b/pkgs/development/libraries/libdap/default.nix new file mode 100644 index 00000000000..adb57f1ee77 --- /dev/null +++ b/pkgs/development/libraries/libdap/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }: + +stdenv.mkDerivation rec { + version = "3.15.1"; + name = "libdap"; + + buildInputs = [ bison libuuid curl libxml2 flex ]; + + src = fetchurl { + url = "http://www.opendap.org/pub/source/${name}-${version}.tar.gz"; + sha256 = "6ee13cc69ae0b5e7552ddfd17013ebb385859bba66f42a2cfba3b3be7aa4ef0f"; + }; + + meta = { + description = "A C++ SDK which contains an implementation of DAP"; + homepage = http://www.opendap.org/download/libdap; + license = stdenv.lib.licenses.lgpl2; + maintainers = [ stdenv.lib.maintainers.bzizou ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52376012402..c985074d3be 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7308,6 +7308,8 @@ let libdaemon = callPackage ../development/libraries/libdaemon { }; + libdap = callPackage ../development/libraries/libdap { }; + libdbi = callPackage ../development/libraries/libdbi { }; libdbiDriversBase = callPackage ../development/libraries/libdbi-drivers { From 53b9ac0d13a2147a852e0019598dc8fcbb55fa1b Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Mon, 22 Feb 2016 23:22:27 +0100 Subject: [PATCH 121/291] wine-unstable: 1.9.3 -> 1.9.4 winetricks: 20160109 -> 20160219 gecko: 2.40 -> 2.44 --- pkgs/misc/emulators/wine/sources.nix | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index b44693502d7..cd877403d3a 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -30,23 +30,33 @@ in rec { }; unstable = fetchurl rec { - version = "1.9.3"; + version = "1.9.4"; url = "mirror://sourceforge/wine/wine-${version}.tar.bz2"; - sha256 = "0389xbs943iwdgv3a6pvcy2gxrwqzf20vrsbpd2yrj1lan2m8ps7"; - inherit (stable) gecko32 gecko64 mono; + sha256 = "1f5v1gns0xs512a6ym785cn29j8dxdbnxnvkg8v0p1w0p6vfmhbm"; + inherit (stable) mono; + gecko32 = fetchurl rec { + version = "2.44"; + url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86.msi"; + sha256 = "0fbd8pxkihhfxs5mcx8n0rcygdx43qdrp2x8hq1s1cvifp8lm9kp"; + }; + gecko64 = fetchurl rec { + version = "2.44"; + url = "http://dl.winehq.org/wine/wine-gecko/${version}/wine_gecko-${version}-x86_64.msi"; + sha256 = "0qb6zx4ycj37q26y2zn73w49bxifdvh9n4riy39cn1kl7c6mm3k2"; + }; }; staging = fetchFromGitHub rec { inherit (unstable) version; - sha256 = "0r932caxlkdw36f36f8y4h2r3anpl61fmqr9payb83fj55gsiq4d"; + sha256 = "0xjxbip0ab1lqgxrww08082ndsb8b5wjfwlf51zlr3f59c9bx9y5"; owner = "wine-compholio"; repo = "wine-staging"; rev = "v${version}"; }; winetricks = fetchFromGitHub rec { - version = "20160109"; - sha256 = "0pnl5362g5q7py368vj07swbdp1fqbpvpq4jv4l5ddyclps8ajg8"; + version = "20160219"; + sha256 = "1wqsbdh2qa5xxswilniki9wzbhlmkl6jqmryjd9f5smirr7ryy2r"; owner = "Winetricks"; repo = "winetricks"; rev = version; From 05d4959251f48ab37a6cc94e99d413efafe60d2a Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 20 Feb 2016 21:06:13 +0000 Subject: [PATCH 122/291] gettext: expand all gettext.sh paths --- pkgs/development/libraries/gettext/absolute-paths.diff | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gettext/absolute-paths.diff b/pkgs/development/libraries/gettext/absolute-paths.diff index 6d5cf1c1ba2..af37f61a9a4 100644 --- a/pkgs/development/libraries/gettext/absolute-paths.diff +++ b/pkgs/development/libraries/gettext/absolute-paths.diff @@ -7,7 +7,7 @@ index 1dfa3bb..d6ef8a8 100644 # result. eval_gettext () { - gettext "$1" | (export PATH `envsubst --variables "$1"`; envsubst "$1") -+ @out@/bin/gettext "$1" | (export PATH `envsubst --variables "$1"`; envsubst "$1") ++ @out@/bin/gettext "$1" | (export PATH `@out@/bin/envsubst --variables "$1"`; @out@/bin/envsubst "$1") } # eval_ngettext MSGID MSGID-PLURAL COUNT @@ -15,7 +15,7 @@ index 1dfa3bb..d6ef8a8 100644 # shell variables in the result. eval_ngettext () { - ngettext "$1" "$2" "$3" | (export PATH `envsubst --variables "$1 $2"`; envsubst "$1 $2") -+ @out@/bin/ngettext "$1" "$2" "$3" | (export PATH `envsubst --variables "$1 $2"`; envsubst "$1 $2") ++ @out@/bin/ngettext "$1" "$2" "$3" | (export PATH `@out@/bin/envsubst --variables "$1 $2"`; @out@/bin/envsubst "$1 $2") } # Note: This use of envsubst is much safer than using the shell built-in 'eval' From f05bc0444aac0fe5643254a07b15e7141b5e3146 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 21 Feb 2016 13:22:44 +0000 Subject: [PATCH 123/291] gettext: 0.19.6 -> 0.19.7 expat is replaced by a bundled version of libxml2 --- .../development/libraries/gettext/default.nix | 35 ++++++++++--------- pkgs/development/libraries/gettext/expat.nix | 10 ------ pkgs/top-level/all-packages.nix | 11 ++---- 3 files changed, 20 insertions(+), 36 deletions(-) delete mode 100644 pkgs/development/libraries/gettext/expat.nix diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 1443626124e..c96d241ee90 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -1,11 +1,12 @@ -{ stdenv, fetchurl, libiconv, xz }: +{ stdenv, lib, fetchurl, libiconv, xz }: -stdenv.mkDerivation (rec { - name = "gettext-0.19.6"; +stdenv.mkDerivation rec { + name = "gettext-${version}"; + version = "0.19.7"; src = fetchurl { url = "mirror://gnu/gettext/${name}.tar.gz"; - sha256 = "0pb9vp4ifymvdmc31ks3xxcnfqgzj8shll39czmk8c1splclqjzd"; + sha256 = "0gy2b2aydj8r0sapadnjw8cmb8j2rynj28d5qs1mfa800njd51jk"; }; patches = [ ./absolute-paths.diff ]; @@ -14,20 +15,20 @@ stdenv.mkDerivation (rec { LDFLAGS = if stdenv.isSunOS then "-lm -lmd -lmp -luutil -lnvpair -lnsl -lidmap -lavl -lsec" else ""; configureFlags = [ "--disable-csharp" "--with-xz" ] - ++ (stdenv.lib.optionals stdenv.isCygwin - [ "--disable-java" + ++ lib.optionals stdenv.isCygwin [ + "--disable-java" "--disable-native-java" # Share the cache among the various `configure' runs. "--config-cache" "--with-included-gettext" "--with-included-glib" "--with-included-libcroco" - ]) + ] # avoid retaining reference to CF during stdenv bootstrap - ++ (stdenv.lib.optionals stdenv.isDarwin [ - "gt_cv_func_CFPreferencesCopyAppValue=no" - "gt_cv_func_CFLocaleCopyCurrent=no" - ]); + ++ lib.optionals stdenv.isDarwin [ + "gt_cv_func_CFPreferencesCopyAppValue=no" + "gt_cv_func_CFLocaleCopyCurrent=no" + ]; postPatch = '' substituteAllInPlace gettext-runtime/src/gettext.sh.in @@ -45,16 +46,16 @@ stdenv.mkDerivation (rec { echo gl_cv_func_wcwidth_works=yes > cachefile configureFlags="$configureFlags --cache-file=`pwd`/cachefile" fi - '' + stdenv.lib.optionalString stdenv.isCygwin '' + '' + lib.optionalString stdenv.isCygwin '' sed -i -e "s/\(am_libgettextlib_la_OBJECTS = \)error.lo/\\1/" gettext-tools/gnulib-lib/Makefile.in ''; - buildInputs = [ xz ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv; + buildInputs = [ xz ] ++ lib.optional (!stdenv.isLinux) libiconv; enableParallelBuilding = true; crossAttrs = { - buildInputs = stdenv.lib.optional (stdenv ? ccCross && stdenv.ccCross.libc ? libiconv) + buildInputs = lib.optional (stdenv ? ccCross && stdenv.ccCross.libc ? libiconv) stdenv.ccCross.libc.libiconv.crossDrv; # Gettext fails to guess the cross compiler configureFlags = "CXX=${stdenv.cross.config}-g++"; @@ -84,8 +85,8 @@ stdenv.mkDerivation (rec { homepage = http://www.gnu.org/software/gettext/; - maintainers = [ ]; - platforms = stdenv.lib.platforms.all; + maintainers = with lib.maintainers; [ zimbatm ]; + platforms = lib.platforms.all; }; } @@ -102,4 +103,4 @@ stdenv.mkDerivation (rec { sed -i gettext-tools/gnulib-lib/Makefile.in \ -e 's/am_libgettextlib_la_OBJECTS =/am_libgettextlib_la_OBJECTS = error.lo/g' ''; -}) +} diff --git a/pkgs/development/libraries/gettext/expat.nix b/pkgs/development/libraries/gettext/expat.nix deleted file mode 100644 index fc6116b3916..00000000000 --- a/pkgs/development/libraries/gettext/expat.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ runCommand, gettext, expat, makeWrapper }: - -runCommand "gettext-expat-${gettext.name}" { buildInputs = [ makeWrapper ]; } '' - mkdir $out - cp -rf ${gettext}/* $out/ - chmod a+w $out/bin - for p in $out/bin/*; do - wrapProgram $p --prefix LD_LIBRARY_PATH : ${expat}/lib - done -'' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 605d39b6ac9..2b1c5a781b5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6675,12 +6675,6 @@ let gettext = callPackage ../development/libraries/gettext { }; - gettextWithExpat = if stdenv.isDarwin - then gettext.overrideDerivation (drv: { - configureFlags = drv.configureFlags ++ [ "--with-libexpat-prefix=${expat}" ]; - }) - else callPackage ../development/libraries/gettext/expat.nix { }; - gd = callPackage ../development/libraries/gd { }; gdal = callPackage ../development/libraries/gdal { }; @@ -6913,9 +6907,7 @@ let cupsSupport = config.gtk2.cups or stdenv.isLinux; }; - gtk3 = callPackage ../development/libraries/gtk+/3.x.nix { - gettext = gettextWithExpat; - }; + gtk3 = callPackage ../development/libraries/gtk+/3.x.nix { }; gtk = pkgs.gtk2; @@ -16065,6 +16057,7 @@ aliases = with self; rec { firefox-wrapper = firefox; # 2016-01 firefox-esr-wrapper = firefox-esr; # 2016-01 fuse_exfat = exfat; # 2015-09-11 + gettextWithExpat = gettext; # 2016-02-19 grantlee5 = qt5.grantlee; # added 2015-12-19 gupnptools = gupnp-tools; # added 2015-12-19 htmlTidy = html-tidy; # added 2014-12-06 From 82ac1d952e8f650b44f83c5a8adcc9b46abbd567 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 23 Feb 2016 00:36:43 +0100 Subject: [PATCH 124/291] Revert "gajim: Add python-axolotl for OMEMO plugin" This reverts commit c3c5622817ea593804272b5110c27c8456d53a62. --- .../applications/networking/instant-messengers/gajim/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index b1dfee8fa90..fa61876bf16 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -59,7 +59,6 @@ stdenv.mkDerivation rec { pythonPackages.pyxdg pythonPackages.nbxmpp pythonPackages.pyopenssl pythonDBus - pythonPackages.python-axolotl ] ++ optionals enableJingle [ farstream gst_plugins_bad libnice ] ++ optional enableE2E pythonPackages.pycrypto ++ optional enableRST pythonPackages.docutils From 960b11e7e8d9085054711d2a51a27b6beaab1cce Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Mon, 22 Feb 2016 18:20:02 -0800 Subject: [PATCH 125/291] jsonnet: 0.8.5 -> 0.8.6 --- pkgs/development/compilers/jsonnet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix index a91b038ef2d..73bdccb24f7 100644 --- a/pkgs/development/compilers/jsonnet/default.nix +++ b/pkgs/development/compilers/jsonnet/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchFromGitHub, emscripten }: -let version = "0.8.5"; in +let version = "0.8.6"; in stdenv.mkDerivation { name = "jsonnet-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { rev = "v${version}"; owner = "google"; repo = "jsonnet"; - sha256 = "14raml69zfr38r4qghdgy129vdq2vq1ivl3a2y02isfpijxcajxn"; + sha256 = "1dkvm81gi1j02zs00mqshn9i71bcnqbxsm5hh3wwa2y0sffvgkwh"; }; buildInputs = [ emscripten ]; From f0061cb03997efbc84da787fd5d0b488c9d2a53a Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Mon, 22 Feb 2016 20:21:11 -0800 Subject: [PATCH 126/291] plexpass: 0.9.15.4.1679 -> 0.9.15.5.1712 --- pkgs/servers/plex/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 29a1b2d47da..aa27f6dd532 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,9 +5,9 @@ let plexpkg = if enablePlexPass then { - version = "0.9.15.4.1679"; - vsnHash = "e4df231"; - sha256 = "1l6kw5dkqam1fyihp02p4slxq3yy232dqp0m5dcg1vi146s911dh"; + version = "0.9.15.5.1712"; + vsnHash = "ba5070a"; + sha256 = "0nwcjlfbs8dacp6wzmga75hkx16ngyaqrmdhcx8vqvgwm8l31rxs"; } else { version = "0.9.15.3.1674"; vsnHash = "f46e7e6"; From 142f65e07a7f3c8d37eb150443140213d80a7046 Mon Sep 17 00:00:00 2001 From: Roger Qiu Date: Mon, 22 Feb 2016 16:42:24 +1100 Subject: [PATCH 127/291] nixos/stage-1: Added boot.initrd.logCommands --- nixos/modules/system/boot/stage-1-init.sh | 26 +++++++++++++++++++++++ nixos/modules/system/boot/stage-1.nix | 12 +++++++++-- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index 95df0ace1ca..94cecdf1fd7 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -71,6 +71,24 @@ mount -t devtmpfs -o "size=@devSize@" devtmpfs /dev mkdir -p /run mount -t tmpfs -o "mode=0755,size=@runSize@" tmpfs /run +# Optionally log the script output to /dev/kmsg or /run/log/stage-1-init.log +if test -n "@logCommands@"; then + mkdir -p /tmp + mkfifo /tmp/stage-1-init.log.fifo + logOutFd=8 && logErrFd=9 + eval "exec $logOutFd>&1 $logErrFd>&2" + if test -w /dev/kmsg; then + tee -i < /tmp/stage-1-init.log.fifo /proc/self/fd/"$logOutFd" | while read line; do + if test -n "$line"; then + echo "stage-1-init: $line" > /dev/kmsg + fi + done & + else + mkdir -p /run/log + tee -i < /tmp/stage-1-init.log.fifo /run/log/stage-1-init.log & + fi + exec > /tmp/stage-1-init.log.fifo 2>&1 +fi # Process the kernel command line. export stage2Init=/init @@ -415,6 +433,14 @@ fi # Stop udevd. udevadm control --exit +# Reset the logging file descriptors. +# Do this just before pkill, which will kill the tee process. +if test -n "@logCommands@" +then + exec 1>&$logOutFd 2>&$logErrFd + eval "exec $logOutFd>&- $logErrFd>&-" +fi + # Kill any remaining processes, just to be sure we're not taking any # with us into stage 2. But keep storage daemons like unionfs-fuse. pkill -9 -v -f '@' diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index f31620df1d8..45652b355c8 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -200,8 +200,8 @@ let inherit (config.boot) resumeDevice devSize runSize; - inherit (config.boot.initrd) checkJournalingFS - preLVMCommands preDeviceCommands postDeviceCommands postMountCommands kernelModules; + inherit (config.boot.initrd) checkJournalingFS + logCommands preLVMCommands preDeviceCommands postDeviceCommands postMountCommands kernelModules; resumeDevices = map (sd: if sd ? device then sd.device else "/dev/disk/by-label/${sd.label}") (filter (sd: (sd ? label || hasPrefix "/dev/" sd.device) && !sd.randomEncryption) config.swapDevices); @@ -269,6 +269,14 @@ in ''; }; + boot.initrd.logCommands = mkOption { + default = false; + type = types.bool; + description = '' + Whether to replicate command output of stage-1 booting to /dev/kmsg or /run/log/stage-1-init.log if /dev/kmsg is not writable. + ''; + }; + boot.initrd.prepend = mkOption { default = [ ]; type = types.listOf types.str; From 474d5a7bd00e4d3cf3e15e4f0c80a5f46b96cbde Mon Sep 17 00:00:00 2001 From: Roger Qiu Date: Mon, 22 Feb 2016 16:42:51 +1100 Subject: [PATCH 128/291] nixos/stage-2: Added boot.logCommands --- nixos/modules/system/boot/stage-2-init.sh | 24 +++++++++++++++++++++++ nixos/modules/system/boot/stage-2.nix | 10 +++++++++- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh index a73070ab332..17b24e1678b 100644 --- a/nixos/modules/system/boot/stage-2-init.sh +++ b/nixos/modules/system/boot/stage-2-init.sh @@ -155,6 +155,23 @@ mkdir -m 0755 -p /var/setuid-wrappers mount -t tmpfs -o "mode=0755" tmpfs /var/setuid-wrappers +# Optionally log the script output to /dev/kmsg or /run/log/stage-2-init.log. +# Only at this point are all the necessary prerequisites ready for these commands. +if test -n "@logCommands@"; then + exec {logOutFd}>&1 {logErrFd}>&2 + if test -w /dev/kmsg; then + exec > >(tee -i /proc/self/fd/"$logOutFd" | while read line; do + if test -n "$line"; then + echo "stage-2-init: $line" > /dev/kmsg + fi + done) 2>&1 + else + mkdir -p /run/log + exec > >(tee -i /run/log/stage-2-init.log) 2>&1 + fi +fi + + # Run the script that performs all configuration activation that does # not have to be done at boot time. echo "running activation script..." @@ -182,6 +199,13 @@ ln -sfn /run/booted-system /nix/var/nix/gcroots/booted-system @shell@ @postBootCommands@ +# Reset the logging file descriptors +if test -n "@logCommands@"; then + exec 1>&$logOutFd 2>&$logErrFd + exec {logOutFd}>&- {logErrFd}>&- +fi + + # Start systemd. echo "starting systemd..." PATH=/run/current-system/systemd/lib/systemd \ diff --git a/nixos/modules/system/boot/stage-2.nix b/nixos/modules/system/boot/stage-2.nix index c0ef4e02d1f..32281e63af2 100644 --- a/nixos/modules/system/boot/stage-2.nix +++ b/nixos/modules/system/boot/stage-2.nix @@ -17,7 +17,7 @@ let src = ./stage-2-init.sh; shellDebug = "${pkgs.bashInteractive}/bin/bash"; isExecutable = true; - inherit (config.boot) devShmSize runSize; + inherit (config.boot) logCommands devShmSize runSize; inherit (config.nix) readOnlyStore; inherit (config.networking) useHostResolvConf; ttyGid = config.ids.gids.tty; @@ -40,6 +40,14 @@ in boot = { + logCommands = mkOption { + default = false; + type = types.bool; + description = '' + Whether to replicate command output of stage-1 booting to /dev/kmsg or /run/log/stage-2-init.log if /dev/kmsg is not writable. + ''; + }; + postBootCommands = mkOption { default = ""; example = "rm -f /var/log/messages"; From 806b27a2977e9b87af9aa5e8d23a9415fb1095d3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Feb 2016 11:51:19 +0100 Subject: [PATCH 129/291] qemu-guest.nix: Disable rngd This gets rid of a zillion "rngd[N]: read error" messages during boot. --- nixos/modules/profiles/qemu-guest.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/profiles/qemu-guest.nix b/nixos/modules/profiles/qemu-guest.nix index 759fdb7f8e5..987eb051b98 100644 --- a/nixos/modules/profiles/qemu-guest.nix +++ b/nixos/modules/profiles/qemu-guest.nix @@ -14,4 +14,6 @@ # to the *boot time* of the host). hwclock -s ''; + + security.rngd.enable = false; } From 6f6e2c430fbe51ccb6b803134236af0d9aa85e55 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Feb 2016 11:53:08 +0100 Subject: [PATCH 130/291] test-instrumentation.nix: Only clear $PAGER in the backdoor shell --- nixos/modules/testing/test-instrumentation.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix index c233beb63ca..f0f56b17f20 100644 --- a/nixos/modules/testing/test-instrumentation.nix +++ b/nixos/modules/testing/test-instrumentation.nix @@ -20,7 +20,15 @@ let kernel = config.boot.kernelPackages.kernel; in export USER=root export HOME=/root export DISPLAY=:0.0 + source /etc/profile + + # Don't use a pager when executing backdoor + # actions. Because we use a tty, commands like systemctl + # or nix-store get confused into thinking they're running + # interactively. + export PAGER= + cd /tmp exec < /dev/hvc0 > /dev/hvc0 while ! exec 2> /dev/ttyS0; do sleep 0.1; done @@ -38,11 +46,6 @@ let kernel = config.boot.kernelPackages.kernel; in systemd.services."serial-getty@ttyS0".enable = false; systemd.services."serial-getty@hvc0".enable = false; - # Don't use a pager when executing backdoor actions. Because we - # use a tty, commands like systemctl or nix-store get confused - # into thinking they're running interactively. - environment.variables.PAGER = ""; - boot.initrd.preDeviceCommands = '' echo 600 > /proc/sys/kernel/hung_task_timeout_secs From deae4eff7b837a51699a10e499c3dc7311fd3ef1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Feb 2016 11:53:37 +0100 Subject: [PATCH 131/291] Make stage-1/2 logging unconditional, and drop log level to "debug" Using "debug" level prevents spamming the console with messages twice (once directly and once via kmsg). --- nixos/modules/system/boot/stage-1-init.sh | 34 +++++++++++------------ nixos/modules/system/boot/stage-1.nix | 12 ++------ nixos/modules/system/boot/stage-2-init.sh | 30 +++++++++----------- nixos/modules/system/boot/stage-2.nix | 10 +------ 4 files changed, 33 insertions(+), 53 deletions(-) diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index 94cecdf1fd7..7a4c93e8a0f 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -71,24 +71,24 @@ mount -t devtmpfs -o "size=@devSize@" devtmpfs /dev mkdir -p /run mount -t tmpfs -o "mode=0755,size=@runSize@" tmpfs /run -# Optionally log the script output to /dev/kmsg or /run/log/stage-1-init.log -if test -n "@logCommands@"; then - mkdir -p /tmp - mkfifo /tmp/stage-1-init.log.fifo - logOutFd=8 && logErrFd=9 - eval "exec $logOutFd>&1 $logErrFd>&2" - if test -w /dev/kmsg; then - tee -i < /tmp/stage-1-init.log.fifo /proc/self/fd/"$logOutFd" | while read line; do - if test -n "$line"; then - echo "stage-1-init: $line" > /dev/kmsg - fi - done & - else - mkdir -p /run/log - tee -i < /tmp/stage-1-init.log.fifo /run/log/stage-1-init.log & - fi - exec > /tmp/stage-1-init.log.fifo 2>&1 + +# Optionally log the script output to /dev/kmsg or /run/log/stage-1-init.log. +mkdir -p /tmp +mkfifo /tmp/stage-1-init.log.fifo +logOutFd=8 && logErrFd=9 +eval "exec $logOutFd>&1 $logErrFd>&2" +if test -w /dev/kmsg; then + tee -i < /tmp/stage-1-init.log.fifo /proc/self/fd/"$logOutFd" | while read line; do + if test -n "$line"; then + echo "<7>stage-1-init: $line" > /dev/kmsg + fi + done & +else + mkdir -p /run/log + tee -i < /tmp/stage-1-init.log.fifo /run/log/stage-1-init.log & fi +exec > /tmp/stage-1-init.log.fifo 2>&1 + # Process the kernel command line. export stage2Init=/init diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index 45652b355c8..f31620df1d8 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -200,8 +200,8 @@ let inherit (config.boot) resumeDevice devSize runSize; - inherit (config.boot.initrd) checkJournalingFS - logCommands preLVMCommands preDeviceCommands postDeviceCommands postMountCommands kernelModules; + inherit (config.boot.initrd) checkJournalingFS + preLVMCommands preDeviceCommands postDeviceCommands postMountCommands kernelModules; resumeDevices = map (sd: if sd ? device then sd.device else "/dev/disk/by-label/${sd.label}") (filter (sd: (sd ? label || hasPrefix "/dev/" sd.device) && !sd.randomEncryption) config.swapDevices); @@ -269,14 +269,6 @@ in ''; }; - boot.initrd.logCommands = mkOption { - default = false; - type = types.bool; - description = '' - Whether to replicate command output of stage-1 booting to /dev/kmsg or /run/log/stage-1-init.log if /dev/kmsg is not writable. - ''; - }; - boot.initrd.prepend = mkOption { default = [ ]; type = types.listOf types.str; diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh index 17b24e1678b..9b34d24bdbc 100644 --- a/nixos/modules/system/boot/stage-2-init.sh +++ b/nixos/modules/system/boot/stage-2-init.sh @@ -157,18 +157,16 @@ mount -t tmpfs -o "mode=0755" tmpfs /var/setuid-wrappers # Optionally log the script output to /dev/kmsg or /run/log/stage-2-init.log. # Only at this point are all the necessary prerequisites ready for these commands. -if test -n "@logCommands@"; then - exec {logOutFd}>&1 {logErrFd}>&2 - if test -w /dev/kmsg; then - exec > >(tee -i /proc/self/fd/"$logOutFd" | while read line; do - if test -n "$line"; then - echo "stage-2-init: $line" > /dev/kmsg - fi - done) 2>&1 - else - mkdir -p /run/log - exec > >(tee -i /run/log/stage-2-init.log) 2>&1 - fi +exec {logOutFd}>&1 {logErrFd}>&2 +if test -w /dev/kmsg; then + exec > >(tee -i /proc/self/fd/"$logOutFd" | while read line; do + if test -n "$line"; then + echo "<7>stage-2-init: $line" > /dev/kmsg + fi + done) 2>&1 +else + mkdir -p /run/log + exec > >(tee -i /run/log/stage-2-init.log) 2>&1 fi @@ -199,11 +197,9 @@ ln -sfn /run/booted-system /nix/var/nix/gcroots/booted-system @shell@ @postBootCommands@ -# Reset the logging file descriptors -if test -n "@logCommands@"; then - exec 1>&$logOutFd 2>&$logErrFd - exec {logOutFd}>&- {logErrFd}>&- -fi +# Reset the logging file descriptors. +exec 1>&$logOutFd 2>&$logErrFd +exec {logOutFd}>&- {logErrFd}>&- # Start systemd. diff --git a/nixos/modules/system/boot/stage-2.nix b/nixos/modules/system/boot/stage-2.nix index 32281e63af2..c0ef4e02d1f 100644 --- a/nixos/modules/system/boot/stage-2.nix +++ b/nixos/modules/system/boot/stage-2.nix @@ -17,7 +17,7 @@ let src = ./stage-2-init.sh; shellDebug = "${pkgs.bashInteractive}/bin/bash"; isExecutable = true; - inherit (config.boot) logCommands devShmSize runSize; + inherit (config.boot) devShmSize runSize; inherit (config.nix) readOnlyStore; inherit (config.networking) useHostResolvConf; ttyGid = config.ids.gids.tty; @@ -40,14 +40,6 @@ in boot = { - logCommands = mkOption { - default = false; - type = types.bool; - description = '' - Whether to replicate command output of stage-1 booting to /dev/kmsg or /run/log/stage-2-init.log if /dev/kmsg is not writable. - ''; - }; - postBootCommands = mkOption { default = ""; example = "rm -f /var/log/messages"; From 4ba3c96431727d2c3a1a3a2783e35241ebd6b78b Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 22 Feb 2016 22:46:01 +0000 Subject: [PATCH 132/291] .github/ISSUE_TEMPLATE.md - get more information The goal is to get all the necessary information from the reporter upfront. Too many times the issues submits and we need to do a round of asking before we can get close to a solution. --- .github/ISSUE_TEMPLATE.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000000..57439ddd4d3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,17 @@ +## Basic info + +To make sure that we are on the same page: + +* Kernel: (run `uname -a`) +* System: (NixOS: `nixos-version`, Ubuntu/Fedora: `lsb_release -a`, ...) +* Nix version: (run `nix-env --version`) +* Channel: (run `nix-instantiate --eval '' -A lib.nixpkgsVersion`) + +## Describe your issue here + +### Expected result + +### Actual result + +### Steps to reproduce + From 32df5ed4c2a5d01d3a1d3233ccdf6779e5402de6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 17 Feb 2016 04:55:26 +0300 Subject: [PATCH 133/291] udev service: make local rules apply after all others --- nixos/doc/manual/release-notes/rl-unstable.xml | 7 +++++++ nixos/modules/services/hardware/udev.nix | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index c814d61bcf4..b5b9e145e2c 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -172,6 +172,13 @@ fileSystems."/example" = { + + services.udev.extraRules option now writes rules + to 99-local.rules instead of 10-local.rules. + This makes all the user rules apply after others, so their results wouldn't be + overriden by anything else. + + diff --git a/nixos/modules/services/hardware/udev.nix b/nixos/modules/services/hardware/udev.nix index 2d6630389b2..e267aeee030 100644 --- a/nixos/modules/services/hardware/udev.nix +++ b/nixos/modules/services/hardware/udev.nix @@ -13,13 +13,13 @@ let extraUdevRules = pkgs.writeTextFile { name = "extra-udev-rules"; text = cfg.extraRules; - destination = "/etc/udev/rules.d/10-local.rules"; + destination = "/etc/udev/rules.d/99-local.rules"; }; extraHwdbFile = pkgs.writeTextFile { name = "extra-hwdb-file"; text = cfg.extraHwdb; - destination = "/etc/udev/hwdb.d/10-local.hwdb"; + destination = "/etc/udev/hwdb.d/99-local.hwdb"; }; nixosRules = '' @@ -212,8 +212,8 @@ in type = types.lines; description = '' Additional udev rules. They'll be written - into file 10-local.rules. Thus they are - read before all other rules. + into file 99-local.rules. Thus they are + read and applied after all other rules. ''; }; From 151fd89ba03397e2a65baaaee285878b41e7ab71 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Tue, 23 Feb 2016 14:19:04 +0100 Subject: [PATCH 134/291] polyml: 5.5.2 -> 5.6 --- pkgs/development/compilers/polyml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/polyml/default.nix b/pkgs/development/compilers/polyml/default.nix index 276065ad350..8b5d14e7f5f 100644 --- a/pkgs/development/compilers/polyml/default.nix +++ b/pkgs/development/compilers/polyml/default.nix @@ -1,7 +1,7 @@ {stdenv, fetchurl, autoreconfHook}: let - version = "5.5.2"; + version = "5.6"; in stdenv.mkDerivation { @@ -15,7 +15,7 @@ stdenv.mkDerivation { src = fetchurl { url = "mirror://sourceforge/polyml/polyml.${version}.tar.gz"; - sha256 = "10m680qdad6bd50bav9xjsgmsxw8yxg55vr7grbg0gvykzl2pzbk"; + sha256 = "05d6l2a5m9jf32a8kahwg2p2ph4x9rjf1nsl83331q3gwn5bkmr0"; }; meta = { From 87b0a41ac5b0a59f8080b97e33d601f56d8558e0 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Tue, 23 Feb 2016 14:19:13 +0100 Subject: [PATCH 135/291] isabelle: 2015 -> 2016 --- .../science/logic/isabelle/default.nix | 27 +++++++++---------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/science/logic/isabelle/default.nix b/pkgs/applications/science/logic/isabelle/default.nix index 98b71b7f500..6c51fb5192d 100644 --- a/pkgs/applications/science/logic/isabelle/default.nix +++ b/pkgs/applications/science/logic/isabelle/default.nix @@ -1,23 +1,23 @@ -{ stdenv, fetchurl, perl, nettools, java, polyml, proofgeneral }: +{ stdenv, fetchurl, perl, nettools, java, polyml }: # nettools needed for hostname let - dirname = "Isabelle2015"; + dirname = "Isabelle2016"; theories = ["HOL" "FOL" "ZF"]; in stdenv.mkDerivation { - name = "isabelle-2015"; + name = "isabelle-2016"; inherit dirname theories; src = if stdenv.isDarwin then fetchurl { - url = http://isabelle.in.tum.de/dist/Isabelle2015.dmg; - sha256 = "1vhm10qc1rn3wy9r12clrl33p64h3q1aj41mcnxkbnsyg2bx03im"; + url = "http://isabelle.in.tum.de/website-${dirname}/dist/${dirname}.dmg"; + sha256 = "0wawf0cjc52h8hif1867p33qhlh6qz0fy5i2kr1gbf7psickd6iw"; } else fetchurl { - url = http://isabelle.in.tum.de/dist/Isabelle2015_linux.tar.gz; - sha256 = "13kqm458d8mw7il1zg5bdb1nfbb869p331d75xzlm2v9xgjxx862"; + url = "http://isabelle.in.tum.de/website-${dirname}/dist/${dirname}_linux.tar.gz"; + sha256 = "0jh1qrsyib13fycymwvw7dq7xfy4iyplwq0s65ash842cdzkbxb4"; }; buildInputs = [ perl polyml ] @@ -34,17 +34,14 @@ stdenv.mkDerivation { --replace /usr/bin/env $ENV sed -i 's|isabelle_java java|${java}/bin/java|g' lib/Tools/java substituteInPlace etc/settings \ - --subst-var-by ML_HOME "${polyml}/bin" \ - --subst-var-by PROOFGENERAL_HOME "${proofgeneral}/share/emacs/site-lisp/ProofGeneral" + --subst-var-by ML_HOME "${polyml}/bin" substituteInPlace contrib/jdk/etc/settings \ --replace ISABELLE_JDK_HOME= '#ISABELLE_JDK_HOME=' substituteInPlace contrib/polyml-*/etc/settings \ - --replace 'ML_HOME="$POLYML_HOME/$ML_PLATFORM"' \ - "ML_HOME=\"${polyml}/bin\"" - ''; - - buildPhase = '' - ISABELLE_JDK_HOME=${java} ./bin/isabelle build -s $theories + --replace '$POLYML_HOME/$ML_PLATFORM' ${polyml}/bin \ + --replace '$POLYML_HOME/$PLATFORM/polyml' ${polyml}/bin/poly + substituteInPlace lib/scripts/run-polyml* lib/scripts/polyml-version \ + --replace '$ML_HOME/poly' ${polyml}/bin/poly ''; installPhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 424cb267019..210b74c232f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15384,7 +15384,6 @@ let tini = callPackage ../applications/virtualization/tini {}; isabelle = callPackage ../applications/science/logic/isabelle { - inherit (pkgs.emacs24Packages) proofgeneral; java = if stdenv.isLinux then jre else jdk; }; From d53fa9884b46caa1c9f90be6a28525b494a2e3ad Mon Sep 17 00:00:00 2001 From: Michael Raitza Date: Tue, 23 Feb 2016 13:47:43 +0000 Subject: [PATCH 136/291] CONTRIBUTING.md: Fix link to COPYING --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index c20d540a25a..0ddf93dbec4 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,7 +1,7 @@ # How to contribute Note: contributing implies licensing those contributions -under the terms of [COPYING](./COPYING), which is an MIT-like license. +under the terms of [COPYING](../COPYING), which is an MIT-like license. ## Opening issues From fb8c4fafb96c4e5e78b148f0d9b4ecc33cf204d1 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Tue, 23 Feb 2016 15:07:18 +0100 Subject: [PATCH 137/291] nco: fixed the pkg name (version missing) Also fixed too long description --- pkgs/development/libraries/nco/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nco/default.nix b/pkgs/development/libraries/nco/default.nix index 0a284722e02..f801e25d91f 100644 --- a/pkgs/development/libraries/nco/default.nix +++ b/pkgs/development/libraries/nco/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { version = "4.5.5"; - name = "nco"; + name = "nco-${version}"; buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ]; @@ -12,7 +12,8 @@ stdenv.mkDerivation rec { }; meta = { - description = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; + description = "NetCDF Operator toolkit"; + longDescription = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; homepage = http://nco.sourceforge.net/; license = stdenv.lib.licenses.gpl3; maintainers = [ stdenv.lib.maintainers.bzizou ]; From a60df02d02bf77ee88d4124885f763d3eeb142d1 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Tue, 23 Feb 2016 15:19:25 +0100 Subject: [PATCH 138/291] libdap: fixed pkg name (version missing) --- pkgs/development/libraries/libdap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libdap/default.nix b/pkgs/development/libraries/libdap/default.nix index adb57f1ee77..2e76c510bdd 100644 --- a/pkgs/development/libraries/libdap/default.nix +++ b/pkgs/development/libraries/libdap/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { version = "3.15.1"; - name = "libdap"; + name = "libdap-${version}"; buildInputs = [ bison libuuid curl libxml2 flex ]; src = fetchurl { - url = "http://www.opendap.org/pub/source/${name}-${version}.tar.gz"; + url = "http://www.opendap.org/pub/source/${name}.tar.gz"; sha256 = "6ee13cc69ae0b5e7552ddfd17013ebb385859bba66f42a2cfba3b3be7aa4ef0f"; }; From c4ea54f6a19d98edb2be44295a4c1d49aebeed71 Mon Sep 17 00:00:00 2001 From: Michael Raitza Date: Tue, 23 Feb 2016 14:38:48 +0000 Subject: [PATCH 139/291] gnome-encfs-manager: 1.8.15 -> 1.8.16 --- pkgs/tools/security/gencfsm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/gencfsm/default.nix b/pkgs/tools/security/gencfsm/default.nix index ff55411f32a..fb903003620 100644 --- a/pkgs/tools/security/gencfsm/default.nix +++ b/pkgs/tools/security/gencfsm/default.nix @@ -2,12 +2,12 @@ , glib , gnome3, gtk3, libgnome_keyring, vala, wrapGAppsHook, xorg }: stdenv.mkDerivation rec { - version = "1.8.15"; + version = "1.8.16"; name = "gnome-encfs-manager-${version}"; src = fetchurl { url = "https://launchpad.net/gencfsm/trunk/1.8/+download/gnome-encfs-manager_${version}.tar.gz"; - sha256 = "1iryli6fgw6a45abkrjacfac7dwjhbrhw652rqf0s183373db0mx"; + sha256 = "06sz6zcmvxkqww5gx4brcqs4hlpy9d8sal9nmw0pdsvh8k5vmpgn"; }; buildInputs = [ autoconf automake intltool libtool pkgconfig vala glib encfs From af6c86751253168942767c3b0b758236fb6d74cf Mon Sep 17 00:00:00 2001 From: Michael Raitza Date: Tue, 23 Feb 2016 14:51:28 +0000 Subject: [PATCH 140/291] dialog: 1.2-20150920 -> 1.3-20160209 --- pkgs/development/tools/misc/dialog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/dialog/default.nix b/pkgs/development/tools/misc/dialog/default.nix index f33ac04fdea..76d34bfd564 100644 --- a/pkgs/development/tools/misc/dialog/default.nix +++ b/pkgs/development/tools/misc/dialog/default.nix @@ -13,11 +13,11 @@ assert unicodeSupport -> ncurses.unicode && ncurses != null; stdenv.mkDerivation rec { name = "dialog-${version}"; - version = "1.2-20150920"; + version = "1.3-20160209"; src = fetchurl { url = "ftp://invisible-island.net/dialog/${name}.tgz"; - sha256 = "01ccd585c241nkj02n0zdbx8jqhylgcfpcmmshynh0c7fv2ixrn4"; + sha256 = "11rzh14xy9s99gxdi5i7fgmgihjqsv0ls0ksavkmip2y37rgf503"; }; buildInputs = [ ncurses ]; From 861fae01fd7ffb2719ff1547bd7200f35c288739 Mon Sep 17 00:00:00 2001 From: Pallav Agarwal Date: Tue, 23 Feb 2016 21:06:54 +0530 Subject: [PATCH 141/291] wpsoffice: Add new package --- .../applications/office/wpsoffice/default.nix | 52 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 54 insertions(+) create mode 100644 pkgs/applications/office/wpsoffice/default.nix diff --git a/pkgs/applications/office/wpsoffice/default.nix b/pkgs/applications/office/wpsoffice/default.nix new file mode 100644 index 00000000000..093c2cd59bb --- /dev/null +++ b/pkgs/applications/office/wpsoffice/default.nix @@ -0,0 +1,52 @@ +{stdenv, fetchurl, unzip, libX11, libcxxabi, glib, xorg, qt4, fontconfig, phonon, freetype, zlib, libpng12, libICE, libXrender, cups, lib}: + +stdenv.mkDerivation rec{ + name = "wpsoffice-${version}"; + version = "10.1.0.5503"; + + src = fetchurl { + name = "${name}.tar.gz"; + url = "http://kdl.cc.ksosoft.com/wps-community/download/a20/wps-office_10.1.0.5503~a20p2_x86_64.tar.xz"; + sha256 = "0h9f8s7zkpd056ibrj978mr04imv631sp1wljplh99l5ncns6hws"; + }; + + meta = { + description = "Office program originally named Kingsoft Office"; + homepage = http://wps-community.org/; + platforms = [ "x86_64-linux" ]; + # Binary for i686 is also available if someone can package it + license = lib.licenses.unfree-redistributable; + }; + + libPath = stdenv.lib.makeLibraryPath [ + libX11 + libcxxabi + libpng12 + glib + xorg.libSM + xorg.libXext + fontconfig + phonon + zlib + freetype + libICE + cups + libXrender + ]; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + cp -r . "$out" + chmod +x "$out/office6/wpp" + patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --force-rpath --set-rpath "$out/office6:$libPath" "$out/office6/wpp" + chmod +x "$out/office6/wps" + patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --force-rpath --set-rpath "$out/office6:$libPath" "$out/office6/wps" + chmod +x "$out/office6/et" + patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) --force-rpath --set-rpath "$out/office6:$libPath" "$out/office6/et" + mkdir -p "$out/bin/" + ln -s "$out/office6/wpp" "$out/bin/wpspresentation" + ln -s "$out/office6/wps" "$out/bin/wpswriter" + ln -s "$out/office6/et" "$out/bin/wpsspreadsheets" + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9d395e08e1a..bc9cf17a5e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13901,6 +13901,8 @@ let inherit (python27Packages) cheetah; }; + wpsoffice = callPackage ../applications/office/wpsoffice {}; + wrapFirefox = callPackage ../applications/networking/browsers/firefox/wrapper.nix { }; retroArchCores = From 830c2d638911b35ca8a844d630481d5179bfa050 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Feb 2016 17:06:55 +0100 Subject: [PATCH 142/291] ISSUE_TEMPLATE.md: Tweak --- .github/ISSUE_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 57439ddd4d3..327959fe7a3 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -5,7 +5,7 @@ To make sure that we are on the same page: * Kernel: (run `uname -a`) * System: (NixOS: `nixos-version`, Ubuntu/Fedora: `lsb_release -a`, ...) * Nix version: (run `nix-env --version`) -* Channel: (run `nix-instantiate --eval '' -A lib.nixpkgsVersion`) +* Nixpkgs version: (run `nix-instantiate --eval '' -A lib.nixpkgsVersion`) ## Describe your issue here From d9d6a92d5eb6957b6987ee22e957f1b725966653 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Feb 2016 18:03:33 +0100 Subject: [PATCH 143/291] sshd.nix: Ensure global config goes before user Match blocks Hopefully fixes #13393. --- nixos/modules/services/networking/ssh/sshd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix index ba3efc8c0c2..20a1777f3cc 100644 --- a/nixos/modules/services/networking/ssh/sshd.nix +++ b/nixos/modules/services/networking/ssh/sshd.nix @@ -304,7 +304,7 @@ in services.openssh.authorizedKeysFiles = [ ".ssh/authorized_keys" ".ssh/authorized_keys2" "/etc/ssh/authorized_keys.d/%u" ]; - services.openssh.extraConfig = + services.openssh.extraConfig = mkOrder 0 '' PidFile /run/sshd.pid From 719a065e01355b8407af3d6b03e89ace28e8e2a0 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Tue, 23 Feb 2016 10:10:21 -0800 Subject: [PATCH 144/291] libinput: 1.1.6 -> 1.2.0 --- pkgs/development/libraries/libinput/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index ce5614a46ff..013ebd9b962 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.1.6"; + name = "libinput-1.2.0"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "0qqw988ippn8mihw9hy2ifzc77zdyhn5chzilp7pa9wlqh15wvzj"; + sha256 = "0b3f67xsy1s84cvzw22mjfkbcv6pj4p4yns4h3m0fmb7zqbvjm0p"; }; configureFlags = [ From c49c384e202fce876c2aa73f479c168d7fa63a24 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Wed, 11 Nov 2015 17:51:50 -0500 Subject: [PATCH 145/291] libminc: init at 2.3.00 --- .../development/libraries/libminc/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/libraries/libminc/default.nix diff --git a/pkgs/development/libraries/libminc/default.nix b/pkgs/development/libraries/libminc/default.nix new file mode 100644 index 00000000000..217ce20c6cf --- /dev/null +++ b/pkgs/development/libraries/libminc/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, cmake, zlib, netcdf, hdf5 }: + +stdenv.mkDerivation rec { + _name = "libminc"; + name = "${_name}-2.3.00"; + + src = fetchurl { + url = "https://github.com/BIC-MNI/${_name}/archive/${_name}-2-3-00.tar.gz"; + sha256 = "04ngqx4wkssxs9qqcgq2bvfs1cldcycmpcx587wy3b3m6lwf004c"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ zlib netcdf hdf5 ]; + + cmakeFlags = [ "-DBUILD_TESTING=${if doCheck then "ON" else "OFF"}" + "-DLIBMINC_MINC1_SUPPORT=ON" ]; + + checkPhase = "ctest"; + doCheck = true; + + meta = with stdenv.lib; { + homepage = https://github.com/BIC-MNI/libminc; + description = "Medical imaging library based on HDF5"; + maintainers = with maintainers; [ bcdarwin ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dd7d2b60780..c7af2126a86 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7668,6 +7668,8 @@ let libmilter = callPackage ../development/libraries/libmilter { }; + libminc = callPackage ../development/libraries/libminc { }; + libmkv = callPackage ../development/libraries/libmkv { }; libmms = callPackage ../development/libraries/libmms { }; From 69c628e1ffb54503b425d5fea4c69cba72f81ef6 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Wed, 11 Nov 2015 19:31:45 -0500 Subject: [PATCH 146/291] minc-tools: init at 2.3.00 --- .../science/biology/minc-tools/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/science/biology/minc-tools/default.nix diff --git a/pkgs/applications/science/biology/minc-tools/default.nix b/pkgs/applications/science/biology/minc-tools/default.nix new file mode 100644 index 00000000000..41813dcda14 --- /dev/null +++ b/pkgs/applications/science/biology/minc-tools/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, perl, cmake, flex, bison, libminc }: + +stdenv.mkDerivation rec { + _name = "minc-tools"; + name = "${_name}-2.3.00"; + + src = fetchurl { + url = "https://github.com/BIC-MNI/${_name}/archive/${_name}-2-3-00.tar.gz"; + sha256 = "1d457vrwy2fl6ga2axnwn1cchkx2rmgixfzyb1zjxb06cxkfj1dm"; + }; + + nativeBuildInputs = [ cmake flex bison ] ++ (if doCheck then [ perl ] else [ ]); + buildInputs = [ libminc ]; + + cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/" ]; + + checkPhase = "ctest"; + doCheck = true; + + meta = with stdenv.lib; { + homepage = https://github.com/BIC-MNI/minc-tools; + description = "Command-line utilities for working with MINC files"; + maintainers = with maintainers; [ bcdarwin ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c7af2126a86..ffc27d76da5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15181,6 +15181,8 @@ let mrbayes = callPackage ../applications/science/biology/mrbayes { }; + minc_tools = callPackage ../applications/science/biology/minc-tools { }; + ncbi_tools = callPackage ../applications/science/biology/ncbi-tools { }; paml = callPackage ../applications/science/biology/paml { }; From ea242619fb0028f830238a0fa1b19277d14508ff Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 23 Feb 2016 22:24:44 +0100 Subject: [PATCH 147/291] wpsoffice: unfree-redistributable not in lib.licenses The attribute is called unfreeRedistributable. --- pkgs/applications/office/wpsoffice/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/wpsoffice/default.nix b/pkgs/applications/office/wpsoffice/default.nix index 093c2cd59bb..ed37cedde37 100644 --- a/pkgs/applications/office/wpsoffice/default.nix +++ b/pkgs/applications/office/wpsoffice/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec{ homepage = http://wps-community.org/; platforms = [ "x86_64-linux" ]; # Binary for i686 is also available if someone can package it - license = lib.licenses.unfree-redistributable; + license = lib.licenses.unfreeRedistributable; }; libPath = stdenv.lib.makeLibraryPath [ From f456111c50aeb876c1e5f51bc5cb25bfbf6ce9ab Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Tue, 23 Feb 2016 23:57:23 +0100 Subject: [PATCH 148/291] hovercraft 2.0b1 -> 2.0 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 42eac4716b2..1275d0f082c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5777,11 +5777,11 @@ in modules // { hovercraft = buildPythonPackage rec { disabled = ! isPy3k; name = "hovercraft-${version}"; - version = "2.0b1"; + version = "2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hovercraft/${name}.zip"; - sha256 = "1l88xp563miwwkahil1sxn4kz9khjcx6z85j8d6mq8gjc8rxz3j6"; + url = "https://pypi.python.org/packages/source/h/hovercraft/${name}.tar.gz"; + sha256 = "0lqxr816lymgnywln8bbv9nrmkyahjjcjkm9kjyny9bflayz4f1g"; }; propagatedBuildInputs = with self; [ docutils lxml manuel pygments svg-path watchdog ]; From 733619157483860d4f970559616fe30171c37022 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 23 Feb 2016 12:59:19 -0800 Subject: [PATCH 149/291] fix fetch-cargo SSL error --- pkgs/build-support/rust/fetch-cargo-deps | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/build-support/rust/fetch-cargo-deps b/pkgs/build-support/rust/fetch-cargo-deps index 5074e26848e..1f6afd60d31 100755 --- a/pkgs/build-support/rust/fetch-cargo-deps +++ b/pkgs/build-support/rust/fetch-cargo-deps @@ -43,6 +43,9 @@ set -u # Do any possible 'cargo update -p --precise ' ad-hoc updates eval "$cargoUpdateHook" +# stdenv setup sets SSL_CERT_FILE to a nonexistent path; cargo doesn't like that +unset SSL_CERT_FILE + # Do the fetch cargo fetch --verbose From beea8537f7ebac9805cf526538f51e170353647e Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 23 Feb 2016 12:59:36 -0800 Subject: [PATCH 150/291] clean up usage of procps in rustc --- pkgs/development/compilers/rustc/generic.nix | 6 ++++-- pkgs/top-level/all-packages.nix | 6 +----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index d578facad69..8be2ec05f07 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps -, llvmPackages_37, jemalloc, ncurses +, llvmPackages_37, jemalloc, ncurses, darwin , shortVersion, isRelease , forceBundledLLVM ? false @@ -10,7 +10,7 @@ , configureFlags ? [] , patches -}: +} @ args: assert !stdenv.isFreeBSD; @@ -37,6 +37,8 @@ let version = if isRelease then name = "rustc-${version}"; + procps = if stdenv.isDarwin then darwin.ps else args.procps; + llvmShared = llvmPackages_37.llvm.override { enableSharedLibraries = true; }; platform = if stdenv.system == "i686-linux" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 471c83538b3..a05cf918ffa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5062,11 +5062,7 @@ let rtags = callPackage ../development/tools/rtags/default.nix {}; rustcMaster = callPackage ../development/compilers/rustc/head.nix {}; - rustc = callPackage ../development/compilers/rustc { - callPackage = newScope ({ - procps = if stdenv.isDarwin then darwin.ps else procps; - }); - }; + rustc = callPackage ../development/compilers/rustc {}; rustPlatform = rustStable; From 45ea4956d8144ce3dc46617b6c982ead57fe4f96 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 23 Feb 2016 12:59:51 -0800 Subject: [PATCH 151/291] fix library dependencies for cargo on darwin --- pkgs/development/tools/build-managers/cargo/common.nix | 3 ++- .../tools/build-managers/cargo/snapshot.nix | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/build-managers/cargo/common.nix b/pkgs/development/tools/build-managers/cargo/common.nix index 941fe807307..110956ebf85 100644 --- a/pkgs/development/tools/build-managers/cargo/common.nix +++ b/pkgs/development/tools/build-managers/cargo/common.nix @@ -12,7 +12,8 @@ "$out/lib/rustlib/uninstall.sh" \ "$out/lib/rustlib/manifest-cargo" - wrapProgram "$out/bin/cargo" --suffix PATH : "${rustc}/bin" + wrapProgram "$out/bin/cargo" --suffix PATH : "${rustc}/bin" \ + ${stdenv.lib.optionalString stdenv.isDarwin ''--suffix DYLD_LIBRARY_PATH : "${rustc}/lib"''} ''; platform = if stdenv.system == "i686-linux" diff --git a/pkgs/development/tools/build-managers/cargo/snapshot.nix b/pkgs/development/tools/build-managers/cargo/snapshot.nix index ad07148815b..6dbe1e727d3 100644 --- a/pkgs/development/tools/build-managers/cargo/snapshot.nix +++ b/pkgs/development/tools/build-managers/cargo/snapshot.nix @@ -34,6 +34,16 @@ stdenv.mkDerivation { dontStrip = true; + __propagatedImpureHostDeps = [ + "/usr/lib/libiconv.2.dylib" + "/usr/lib/libssl.0.9.8.dylib" + "/usr/lib/libcurl.4.dylib" + "/System/Library/Frameworks/GSS.framework/GSS" + "/System/Library/Frameworks/GSS.framework/Versions/Current" + "/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal" + "/System/Library/PrivateFrameworks/Heimdal.framework/Versions/Current" + ]; + installPhase = '' mkdir -p "$out" ./install.sh "--prefix=$out" From 7f7ebe5bf6ecb6fcb3c5d603c8f2e5b927ad0750 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 24 Feb 2016 01:37:40 +0100 Subject: [PATCH 152/291] nixpkgs manual: Fix license strings docs The wrong usage of unfree-redistributable fixed in ea242619fb0028f830238a0fa1b19277d14508ff can be explaind by unclear documention, specifically the section in the nixpkgs manual describing generic licenses it is written to use attributes from `stdenv.lib.licenses` but in the list the strings form was documented without quotation marks. This confuses people because the package builds fine locally but failes the tests on travis-ci. --- doc/meta.xml | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/doc/meta.xml b/doc/meta.xml index 5266d83aea6..b1ffd0502b2 100644 --- a/doc/meta.xml +++ b/doc/meta.xml @@ -258,45 +258,54 @@ a value from stdenv.lib.licenses defined in nixpkgs/lib/licenses.nix, or in-place license description of the same format if the license is -unlikely to be useful in another expression. +unlikely to be useful in another expression. + +Although it's typically better to indicate the specific license, +a few generic options are available: -A few generic options are available, although it's typically better -to indicate the specific license: - free + stdenv.lib.licenses.free, + "free" + Catch-all for free software licenses not listed above. - unfree-redistributable + stdenv.lib.licenses.unfreeRedistributable, + "unfree-redistributable" + Unfree package that can be redistributed in binary - form. That is, it’s legal to redistribute the + form. That is, it’s legal to redistribute the output of the derivation. This means that the package can be included in the Nixpkgs channel. Sometimes proprietary software can only be redistributed - unmodified. Make sure the builder doesn’t actually modify the + unmodified. Make sure the builder doesn’t actually modify the original binaries; otherwise we’re breaking the license. For instance, the NVIDIA X11 drivers can be redistributed unmodified, but our builder applies patchelf to make them - work. Thus, its license is unfree and it + work. Thus, its license is "unfree" and it cannot be included in the Nixpkgs channel. - unfree - Unfree package that cannot be redistributed. You + stdenv.lib.licenses.unfree, + "unfree" + + Unfree package that cannot be redistributed. You can build it yourself, but you cannot redistribute the output of - the derivation. Thus it cannot be included in the Nixpkgs + the derivation. Thus it cannot be included in the Nixpkgs channel. - unfree-redistributable-firmware + stdenv.lib.licenses.unfreeRedistributableFirmware, + "unfree-redistributable-firmware" + This package supplies unfree, redistributable firmware. This is a separate value from unfree-redistributable because not everybody From e559c3a72a06d4a92cb252ef077add1443f1a9d0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 23 Feb 2016 19:16:29 -0600 Subject: [PATCH 153/291] ibus-table-others: use mktemp for temporary directory --- .../inputmethods/ibus-engines/ibus-table-others/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix index 13d9df5de08..f3e3973a2c3 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation rec { buildInputs = [ ibus ibus-table pkgconfig python3 ]; preBuild = '' - export HOME=/tmp/ibus-table-others + export HOME=$(mktemp -d)/ibus-table-others ''; postFixup = '' - rm -rf /tmp/ibus-table-others + rm -rf $HOME ''; meta = with stdenv.lib; { From bc7f99cd2f36bd6745e3e96d381ed42bf3028d04 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 23 Feb 2016 19:22:28 -0600 Subject: [PATCH 154/291] ibus-table-others: import ibus-table properly --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a05cf918ffa..37f1098a823 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1192,7 +1192,9 @@ let table = callPackage ../tools/inputmethods/ibus-engines/ibus-table { }; - table-others = callPackage ../tools/inputmethods/ibus-engines/ibus-table-others { }; + table-others = callPackage ../tools/inputmethods/ibus-engines/ibus-table-others { + ibus-table = ibus-engines.table; + }; }; From a2b19cdb0464eb71757b7584579cf0154c1d3771 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Tue, 23 Feb 2016 18:31:40 -0800 Subject: [PATCH 155/291] revert fetch-cargo-deps change --- pkgs/build-support/rust/fetch-cargo-deps | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/build-support/rust/fetch-cargo-deps b/pkgs/build-support/rust/fetch-cargo-deps index 1f6afd60d31..5074e26848e 100755 --- a/pkgs/build-support/rust/fetch-cargo-deps +++ b/pkgs/build-support/rust/fetch-cargo-deps @@ -43,9 +43,6 @@ set -u # Do any possible 'cargo update -p --precise ' ad-hoc updates eval "$cargoUpdateHook" -# stdenv setup sets SSL_CERT_FILE to a nonexistent path; cargo doesn't like that -unset SSL_CERT_FILE - # Do the fetch cargo fetch --verbose From a2bd90650d319bf86a601a778388476daa9883f2 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 24 Feb 2016 00:41:46 +0000 Subject: [PATCH 156/291] linux_4_3: 4.3.5 -> 4.3.6 (close #13408) --- pkgs/os-specific/linux/kernel/linux-4.3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.3.nix b/pkgs/os-specific/linux/kernel/linux-4.3.nix index 20573ee5ceb..0bdc2d08d8a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.3.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.3.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.3.5"; + version = "4.3.6"; extraMeta.branch = "4.3"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0g656q51nzb61n0kb2k8br9shvz51yh8kyrsblbjmhi4dbcpizr8"; + sha256 = "0wdd8z4ykjz1rkizlv9dm70vjd87fly4km4bs7av4p5w5xfp98z0"; }; features.iwlwifi = true; From 08cf57204f83cac4454b6b67946f0dd039aae94d Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 24 Feb 2016 00:35:01 +0000 Subject: [PATCH 157/291] linux_3_14: 3.14.60 -> 3.14.61 (close #13407) --- pkgs/os-specific/linux/kernel/linux-3.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.14.nix b/pkgs/os-specific/linux/kernel/linux-3.14.nix index 9ad5a336de3..80cb4bf89dc 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.14.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.14.60"; + version = "3.14.61"; extraMeta.branch = "3.14"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1zwq0j4slqg33z4yyk5s35hdzrq0g7jk1bd2kvgvkyqn1dkkvh0j"; + sha256 = "06lrz2z3lskajk87kq1qi8q6rbdczhsz6sbp5cba4i0nw7sg1nbg"; }; kernelPatches = args.kernelPatches; From 642517fbda94d7c7fcd77ad910812d6d42a40760 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 24 Feb 2016 00:30:03 +0000 Subject: [PATCH 158/291] linux_3_12: 3.12.53 -> 3.12.54 (close #13406) --- pkgs/os-specific/linux/kernel/linux-3.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix index 378a2b854f9..636ff9e7d29 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.12.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.12.53"; + version = "3.12.54"; extraMeta.branch = "3.12"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1f2h4z8lk1s0h5lw7n3yb47dhpbr7gzma7ifsslwhyjg7s44cb27"; + sha256 = "0a6wv72257nasc1qrw966ajd60z24cjpc83hnbblsjkfl0b3zrrn"; }; kernelPatches = args.kernelPatches; From 3ef63227dd580d97cd6052bb03ec05a878fd6e93 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 24 Feb 2016 00:15:47 +0000 Subject: [PATCH 159/291] linux-testing: 4.5-rc4 -> 4.5-rc5 (close #13403) --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 5b2034d2191..4b5cd20e831 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5-rc4"; - modDirVersion = "4.5.0-rc4"; + version = "4.5-rc5"; + modDirVersion = "4.5.0-rc5"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "02kzcz2gblbjr0ixjdbwdbk4yix8wyd0xjpqk5mk78132pgj3w0a"; + sha256 = "06qlypnrlkckxhf3clq6l2d3kps7rwfw811sxapjbnhzjd75fcx8"; }; features.iwlwifi = true; From 5cf823e1f48296b666eaa116dd153bd2fd10184c Mon Sep 17 00:00:00 2001 From: Roger Qiu Date: Wed, 24 Feb 2016 18:54:25 +1100 Subject: [PATCH 160/291] nixos/stage-1/2: Added -r option to read so that read interprets backslashes literally, and corrected the comment about optional logging. --- nixos/modules/system/boot/stage-1-init.sh | 5 ++--- nixos/modules/system/boot/stage-2-init.sh | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index 7a4c93e8a0f..c0c2b6a9416 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -71,14 +71,13 @@ mount -t devtmpfs -o "size=@devSize@" devtmpfs /dev mkdir -p /run mount -t tmpfs -o "mode=0755,size=@runSize@" tmpfs /run - -# Optionally log the script output to /dev/kmsg or /run/log/stage-1-init.log. +# Log the script output to /dev/kmsg or /run/log/stage-1-init.log. mkdir -p /tmp mkfifo /tmp/stage-1-init.log.fifo logOutFd=8 && logErrFd=9 eval "exec $logOutFd>&1 $logErrFd>&2" if test -w /dev/kmsg; then - tee -i < /tmp/stage-1-init.log.fifo /proc/self/fd/"$logOutFd" | while read line; do + tee -i < /tmp/stage-1-init.log.fifo /proc/self/fd/"$logOutFd" | while read -r line; do if test -n "$line"; then echo "<7>stage-1-init: $line" > /dev/kmsg fi diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh index 9b34d24bdbc..1b5b22c2005 100644 --- a/nixos/modules/system/boot/stage-2-init.sh +++ b/nixos/modules/system/boot/stage-2-init.sh @@ -155,11 +155,11 @@ mkdir -m 0755 -p /var/setuid-wrappers mount -t tmpfs -o "mode=0755" tmpfs /var/setuid-wrappers -# Optionally log the script output to /dev/kmsg or /run/log/stage-2-init.log. +# Log the script output to /dev/kmsg or /run/log/stage-2-init.log. # Only at this point are all the necessary prerequisites ready for these commands. exec {logOutFd}>&1 {logErrFd}>&2 if test -w /dev/kmsg; then - exec > >(tee -i /proc/self/fd/"$logOutFd" | while read line; do + exec > >(tee -i /proc/self/fd/"$logOutFd" | while read -r line; do if test -n "$line"; then echo "<7>stage-2-init: $line" > /dev/kmsg fi From 3845649b89c7a24a360c4d988c6eb0c37cd28f5a Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 24 Feb 2016 10:37:34 +0100 Subject: [PATCH 161/291] vanity counter: update Github name search --- maintainers/scripts/vanity.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/scripts/vanity.sh b/maintainers/scripts/vanity.sh index c5665ab862a..1f6fdaff6dd 100755 --- a/maintainers/scripts/vanity.sh +++ b/maintainers/scripts/vanity.sh @@ -28,7 +28,7 @@ fetchGithubName () { )" userid="$( curl https://github.com/NixOS/nixpkgs/commit/"$commitid" 2>/dev/null | - grep authored -B10 | grep 'href="/' | + grep committed -B10 | grep 'href="/' | sed -re 's@.* href="/@@; s@".*@@' | grep -v "/commit/" )"; From c4644c8b437683a49b0445075ea3bb225a6005a7 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Fri, 19 Feb 2016 16:35:19 +0100 Subject: [PATCH 162/291] gdal: 2.0.1 -> 2.0.2 + netCDF format support may be disabled by netcdfSupport=false --- pkgs/development/libraries/gdal/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix index 8cf84eb08c3..1607387160d 100644 --- a/pkgs/development/libraries/gdal/default.nix +++ b/pkgs/development/libraries/gdal/default.nix @@ -1,18 +1,22 @@ { stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib , postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl -, libpng }: +, libpng +, netcdf, hdf5 , curl +, netcdfSupport ? true + }: composableDerivation.composableDerivation {} (fixed: rec { - version = "2.0.1"; + version = "2.0.2"; name = "gdal-${version}"; src = fetchurl { url = "http://download.osgeo.org/gdal/${version}/${name}.tar.gz"; - sha256 = "b55f794768e104a2fd0304eaa61bb8bda3dc7c4e14f2c9d0913baca3e55b83ab"; + sha256 = "db7722caf8d9dd798ec18012b9cacf40a518918466126a88b9fd277bd7d40cc4"; }; buildInputs = [ unzip libjpeg libtiff libpng proj openssl ] - ++ (with pythonPackages; [ python numpy wrapPython ]); + ++ (with pythonPackages; [ python numpy wrapPython ]) + ++ (stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ]); patches = [ # This ensures that the python package is installed into gdal's prefix, @@ -36,6 +40,7 @@ composableDerivation.composableDerivation {} (fixed: rec { "--with-python" # optional "--with-static-proj4=${proj}" # optional "--with-geos=${geos}/bin/geos-config"# optional + (if netcdfSupport then "--with-netcdf=${netcdf}" else "") ]; # Prevent this: From 2f050b5d13784d6ab4b63405db495b7a8485f61a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 24 Feb 2016 11:01:11 +0100 Subject: [PATCH 163/291] stdenvLinux: Use bash instead of sh from bootstrapTools "sh" is also bash, but invoking it as "sh" disables certain features like process substitution. Closes #13395. --- pkgs/stdenv/linux/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index ac7d8f5c706..cd49d4a5a74 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -78,7 +78,7 @@ rec { dontPatchShebangs=1 ${commonPreHook} ''; - shell = "${bootstrapTools}/bin/sh"; + shell = "${bootstrapTools}/bin/bash"; initialPath = [bootstrapTools]; fetchurlBoot = import ../../build-support/fetchurl { stdenv = stage0.stdenv; From 11a474e81b8457dc77c912cf2e53099e37f2ffed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Czy=C5=BC?= Date: Tue, 5 Jan 2016 22:57:36 +0000 Subject: [PATCH 164/291] idea.android-studio: 1.5.0.4 -> 2.0.0.0 --- pkgs/applications/editors/idea/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 7d02bd480dd..751e66cca07 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -148,14 +148,14 @@ in android-studio = buildAndroidStudio rec { name = "android-studio-${version}"; - version = "1.5.1.0"; - build = "141.2456560"; + version = "2.0.0.0"; + build = "143.2443734"; description = "Android development environment based on IntelliJ IDEA"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" + "/android-studio-ide-${build}-linux.zip"; - sha256 = "0p6h21jd0xx3xzdrfv9530n1ssyc3xigr3fg33r8ain4k6n02vj6"; + sha256 = "0j6bi87hb5jxjwfhfya64s673vdkdslsqc6sqa4zl97sabvafk2w"; }; }; From aff0451c1059db83acb77125f79b76075261dabd Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 24 Feb 2016 11:13:36 +0100 Subject: [PATCH 165/291] patchELF: Use correct directory Borrowed from https://github.com/NixOS/nixpkgs/pull/13395. --- pkgs/development/tools/misc/patchelf/setup-hook.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/patchelf/setup-hook.sh b/pkgs/development/tools/misc/patchelf/setup-hook.sh index 03b6f362a77..563ef57fce1 100644 --- a/pkgs/development/tools/misc/patchelf/setup-hook.sh +++ b/pkgs/development/tools/misc/patchelf/setup-hook.sh @@ -5,7 +5,8 @@ fixupOutputHooks+=('if [ -z "$dontPatchELF" ]; then patchELF "$prefix"; fi') patchELF() { - header "shrinking RPATHs of ELF executables and libraries in $prefix" + local dir="$1" + header "shrinking RPATHs of ELF executables and libraries in $dir" local i while IFS= read -r -d $'\0' i; do @@ -13,7 +14,7 @@ patchELF() { if ! isELF "$i"; then continue; fi echo "shrinking $i" patchelf --shrink-rpath "$i" || true - done < <(find "$prefix" -type f -print0) + done < <(find "$dir" -type f -print0) stopNest } From 17a759f346066ab2cb0e3f557117234e55d45c0e Mon Sep 17 00:00:00 2001 From: Wout Mertens Date: Wed, 24 Feb 2016 11:22:59 +0100 Subject: [PATCH 166/291] Watchman: 4.3.0 => 4.5.0 --- pkgs/development/tools/watchman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/watchman/default.nix b/pkgs/development/tools/watchman/default.nix index 2f02a7a4a1f..9c09277deb7 100644 --- a/pkgs/development/tools/watchman/default.nix +++ b/pkgs/development/tools/watchman/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "watchman-${version}"; - version = "4.3.0"; + version = "4.5.0"; src = fetchFromGitHub { owner = "facebook"; repo = "watchman"; rev = "v${version}"; - sha256 = "0dcaklw4d42z8hndy9zsdqqv1q8r18wnwldgdgjvp5c9vijvgyrd"; + sha256 = "0hyj7nbsm5mv8zq2fldd06f92a3wamavha20311518qv7q5jj72v"; }; buildInputs = [ autoconf automake pcre ]; From 7d91ee54c90edf9663d2a9370b4823208e996b87 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Wed, 24 Feb 2016 22:54:08 +1100 Subject: [PATCH 167/291] openbox: fix copy/paste typo in config --- nixos/modules/services/x11/window-managers/openbox.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/window-managers/openbox.nix b/nixos/modules/services/x11/window-managers/openbox.nix index 091b533b28b..07ef77151e9 100644 --- a/nixos/modules/services/x11/window-managers/openbox.nix +++ b/nixos/modules/services/x11/window-managers/openbox.nix @@ -8,7 +8,7 @@ in { options = { - services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus"; + services.xserver.windowManager.openbox.enable = mkEnableOption "openbox"; }; config = mkIf cfg.enable { From 29809666cba687d248cfaf1054182bb16e70646c Mon Sep 17 00:00:00 2001 From: koral Date: Wed, 24 Feb 2016 12:56:15 +0100 Subject: [PATCH 168/291] aria2: 1.19.3 -> 1.20.0 --- pkgs/tools/networking/aria2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix index 09e4531d925..8cb6172d87b 100644 --- a/pkgs/tools/networking/aria2/default.nix +++ b/pkgs/tools/networking/aria2/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "aria2-${version}"; - version = "1.19.3"; + version = "1.20.0"; src = fetchurl { url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz"; - sha256 = "1qwr4al6wlh5f558r0mr1hvdnf7d8ss6qwqn2361k99phk1cdg3a"; + sha256 = "1l4gzz3yr0cl6a9xdy7843c5sb7afyq0i80wi2hasfpfdx5k95mz"; }; nativeBuildInputs = [ pkgconfig ]; From 2552fa4bf4578fb4980ef64d189f0a3a2ca9cbce Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 24 Feb 2016 13:21:53 +0100 Subject: [PATCH 169/291] bitcoin: 0.11.0 -> 0.12.0 --- pkgs/applications/altcoins/bitcoin.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix index 91432f2f5a8..1a574635711 100644 --- a/pkgs/applications/altcoins/bitcoin.nix +++ b/pkgs/applications/altcoins/bitcoin.nix @@ -1,23 +1,23 @@ { stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost -, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode +, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode, libevent , withGui }: with stdenv.lib; stdenv.mkDerivation rec{ name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version; - core_version = "0.11.0"; + core_version = "0.12.0"; version = core_version; src = fetchurl { urls = [ "https://bitcoin.org/bin/bitcoin-core-${core_version}/bitcoin-${version}.tar.gz" "mirror://sourceforge/bitcoin/Bitcoin/bitcoin-${core_version}/bitcoin-${version}.tar.gz" ]; - sha256 = "51ba1756addfa71567559e3f22331c1d908a63571891287689fff7113035d09f"; + sha256 = "0f1cda66c841a548a07cc37e80b0727354b1236d9f374c7d44362acdb85eb3e1"; }; buildInputs = [ pkgconfig autoreconfHook openssl db48 boost zlib - miniupnpc protobuf ] + miniupnpc protobuf libevent] ++ optionals stdenv.isLinux [ utillinux ] ++ optionals withGui [ qt4 qrencode ]; From c1504c5a94d70c38ed780f2b1eccb93ee74a5dd6 Mon Sep 17 00:00:00 2001 From: koral Date: Wed, 24 Feb 2016 13:47:23 +0100 Subject: [PATCH 170/291] git: 2.7.0 -> 2.7.1 --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 49ecce0456b..47669538fcc 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.7.0"; + version = "2.7.1"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "03bvb8s5j8i54qbi3yayl42bv0wf2fpgnh1a2lkhbj79zi7b77zs"; + sha256 = "1zkbdmh5gvxalr8l1cwnirqq5raijmp2d0s36s6qabrlvqvq2yj7"; }; patches = [ From 551f0ca898122f0ea65efb82edea8e118f3832d7 Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Wed, 24 Feb 2016 12:49:49 +0000 Subject: [PATCH 171/291] mendeley: 1.15.3 -> 1.16 --- pkgs/applications/office/mendeley/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix index d9505c17e8d..4f641d1ee50 100644 --- a/pkgs/applications/office/mendeley/default.nix +++ b/pkgs/applications/office/mendeley/default.nix @@ -12,14 +12,14 @@ let then "i386" else "amd64"; - shortVersion = "1.15.3-stable"; + shortVersion = "1.16-stable"; version = "${shortVersion}_${arch}"; url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb"; sha256 = if stdenv.system == arch32 - then "7d0737eb28cb4238fafdd6cf973ad899dd6a7622bc1a5c44f32a9c1790eaf6af" - else "0hvvyvbkbz8hg8s532rrrcv7jf07zh4axjzk18bvr6p9cgcdirl8"; + then "da56abe0e0e86d868d305119f06cf6d14273d2f65e5c135fc2d190ca599b3cb6" + else "e9c2f026fd267db34396ff5f24bce9c6a4beba530bd8b40265a792d417282fba"; deps = [ gcc.cc From ef86e9506d5d6ed82ed8af5369b296aa2f3431a2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 24 Feb 2016 14:01:20 +0100 Subject: [PATCH 172/291] Untested fix for #13401 --- pkgs/development/libraries/openssl/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 6300068f09f..98e168f310d 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -21,7 +21,9 @@ let patches = [ ./use-etc-ssl-certs.patch ] ++ optional stdenv.isCygwin ./1.0.1-cygwin64.patch - ++ optional (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem")) ./darwin-arch.patch; + ++ optional + (versionOlder version "1.0.2" && (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem"))) + ./darwin-arch.patch; nativeBuildInputs = [ perl ]; buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders; @@ -102,9 +104,9 @@ in { sha256 = "0iik7a3b0mrfrxzngdf7ywfscg9inbw77y0jp2ccw0gdap9xhjvq"; }; - openssl_1_0_2 = common { + openssl_1_0_2 = lowPrio (common { version = "1.0.2f"; sha256 = "932b4ee4def2b434f85435d9e3e19ca8ba99ce9a065a61524b429a9d5e9b2e9c"; - }; + }); } From 301d1d9e76d4ec470a60761f61019e63d1c59ee7 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 24 Feb 2016 14:23:48 +0100 Subject: [PATCH 173/291] hedgewars: 0.9.21 -> 0.9.22, fix build failure cc @kragniz --- ...5b79072b147d0a9b7fafca98501e7056c834.patch | 36 ------------------- pkgs/games/hedgewars/default.nix | 8 ++--- 2 files changed, 3 insertions(+), 41 deletions(-) delete mode 100644 pkgs/games/hedgewars/21eb5b79072b147d0a9b7fafca98501e7056c834.patch diff --git a/pkgs/games/hedgewars/21eb5b79072b147d0a9b7fafca98501e7056c834.patch b/pkgs/games/hedgewars/21eb5b79072b147d0a9b7fafca98501e7056c834.patch deleted file mode 100644 index 1de99542bdb..00000000000 --- a/pkgs/games/hedgewars/21eb5b79072b147d0a9b7fafca98501e7056c834.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 21eb5b79072b147d0a9b7fafca98501e7056c834 Mon Sep 17 00:00:00 2001 -From: koda -Date: Tue, 2 Jun 2015 19:51:04 +0100 -Subject: [PATCH] Fix building hedgewars-server - ---- - gameServer/CoreTypes.hs | 2 +- - gameServer/hedgewars-server.cabal | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/gameServer/CoreTypes.hs b/gameServer/CoreTypes.hs -index 553e722..2c75153 100644 ---- a/gameServer/CoreTypes.hs -+++ b/gameServer/CoreTypes.hs -@@ -38,7 +38,7 @@ import RoomsAndClients - instance NFData B.ByteString - #endif - --instance NFData (Chan a) -+instance NFData (Chan a) where rnf a = () - - instance NFData Action where - rnf (AnswerClients chans msg) = chans `deepseq` msg `deepseq` () -diff --git a/gameServer/hedgewars-server.cabal b/gameServer/hedgewars-server.cabal -index 122f2ef..f36a190 100644 ---- a/gameServer/hedgewars-server.cabal -+++ b/gameServer/hedgewars-server.cabal -@@ -33,7 +33,7 @@ Executable hedgewars-server - utf8-string, - SHA, - entropy, -- zlib -+ zlib >= 0.5.3 && < 0.6 - - if !os(windows) - build-depends: unix diff --git a/pkgs/games/hedgewars/default.nix b/pkgs/games/hedgewars/default.nix index f5d4627c5c0..8d601e29d0b 100644 --- a/pkgs/games/hedgewars/default.nix +++ b/pkgs/games/hedgewars/default.nix @@ -5,15 +5,15 @@ let ghc = ghcWithPackages (pkgs: with pkgs; [ - network vector utf8-string bytestring-show random hslogger dataenc SHA entropy zlib + network vector utf8-string bytestring-show random hslogger dataenc SHA entropy zlib_0_5_4_2 ]); in stdenv.mkDerivation rec { - version = "0.9.21"; + version = "0.9.22"; name = "hedgewars-${version}"; src = fetchurl { url = "http://download.gna.org/hedgewars/hedgewars-src-${version}.tar.bz2"; - sha256 = "0abnzpyq6sxlfcz5b0kh6r7n1692dwrgsdsr4s216xhh9n19xm0w"; + sha256 = "14i1wvqbqib9h9092z10g4g0y14r5sp2fdaksvnw687l3ybwi6dn"; }; buildInputs = [ @@ -21,8 +21,6 @@ stdenv.mkDerivation rec { qt4 ghc ffmpeg freeglut makeWrapper physfs ]; - patches = [ ./21eb5b79072b147d0a9b7fafca98501e7056c834.patch ]; - preBuild = '' export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${SDL_image}/lib -rpath ${SDL_mixer}/lib From 501a1d92f09bf18973056e648dd2a0540343da7c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 24 Feb 2016 13:57:20 +0100 Subject: [PATCH 174/291] lmms: 1.1.3 -> 1.1.90 cc @goibhniu --- pkgs/applications/audio/lmms/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/audio/lmms/default.nix b/pkgs/applications/audio/lmms/default.nix index 783b506c4d7..5bd8068cd4c 100644 --- a/pkgs/applications/audio/lmms/default.nix +++ b/pkgs/applications/audio/lmms/default.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl, SDL, alsaLib, cmake, fftwSinglePrec, fluidsynth +{ stdenv, fetchFromGitHub, SDL, alsaLib, cmake, fftwSinglePrec, fluidsynth , fltk13, libjack2, libvorbis , libsamplerate, libsndfile, pkgconfig -, libpulseaudio, qt4, freetype +, libpulseaudio, qt4, freetype, libgig }: -stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "lmms-${version}"; - version = "1.1.3"; + version = "1.1.90"; - src = fetchurl { - url = "https://github.com/LMMS/lmms/archive/v${version}.tar.gz"; - sha256 = "1g76z7ha3hd53vbqaq9n1qg6s3lw8zzaw51iny6y2bz0j1xqwcsr"; + src = fetchFromGitHub { + owner = "LMMS"; + repo = "lmms"; + rev = "v${version}"; + sha256 = "0njiarndwqamqiinr1wbwkzjn87yzr1z5k9cfwk0jdkbalgakkq3"; }; buildInputs = [ - SDL alsaLib cmake fftwSinglePrec fltk13 fluidsynth libjack2 + SDL alsaLib cmake fftwSinglePrec fltk13 fluidsynth libjack2 libgig libsamplerate libsndfile libvorbis pkgconfig libpulseaudio qt4 ]; From 0ee46ddffbd3b8afb585021cd724bc93a9adca04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 24 Feb 2016 15:02:19 +0100 Subject: [PATCH 175/291] libssh: security update 0.7.2 -> 0.7.3 It's supposed to fix CVE-2016-0739: weak secret with diffie-hellman. --- pkgs/development/libraries/libssh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libssh/default.nix b/pkgs/development/libraries/libssh/default.nix index 3f6eeac892b..17538a6c380 100644 --- a/pkgs/development/libraries/libssh/default.nix +++ b/pkgs/development/libraries/libssh/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }: stdenv.mkDerivation rec { - name = "libssh-0.7.2"; + name = "libssh-0.7.3"; src = fetchurl { - url = "https://red.libssh.org/attachments/download/177/${name}.tar.xz"; - sha256 = "0qmfxgx88dbzcbyvh40gddn0fcg9adyyskg8pnsclha1cywlab53"; + url = "https://red.libssh.org/attachments/download/195/${name}.tar.xz"; + sha256 = "165g49i4kmm3bfsjm0n8hm21kadv79g9yjqyq09138jxanz4dvr6"; }; postPatch = '' From 25b1fab48532aa48f588d99a1ccab0400ec3c27c Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 24 Feb 2016 14:55:57 +0100 Subject: [PATCH 176/291] weboob: 1.0 -> 1.1 --- pkgs/top-level/python-packages.nix | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 42eac4716b2..4e05f575eac 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6530,6 +6530,26 @@ in modules // { }; }; + pdfminer = buildPythonPackage rec { + version = "20140328"; + name = "pdfminer-${version}"; + + disabled = ! isPy27; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pdfminer/pdfminer-${version}.tar.gz"; + sha256 = "0qpjv4b776dwvpf5a7v19g41qsz97bv0qqsyvm7a31k50n9pn65s"; + }; + + propagatedBuildInputs = with self; [ ]; + + meta = { + description = "Tool for extracting information from PDF documents"; + homepage = http://euske.github.io/pdfminer/index.html; + license = licenses.mit; + maintainers = with maintainers; [ DamienCassou ]; + }; + }; peppercorn = buildPythonPackage rec { name = "peppercorn-0.5"; @@ -23937,17 +23957,17 @@ in modules // { }; weboob = buildPythonPackage rec { - name = "weboob-1.0"; + name = "weboob-1.1"; disabled = ! isPy27; src = pkgs.fetchurl { - url = "https://symlink.me/attachments/download/289/${name}.tar.gz"; - md5 = "38f832f1b8654441adafe8558faa7109"; + url = "https://symlink.me/attachments/download/324/${name}.tar.gz"; + sha256 = "0736c5wsck2abxlwvx8i4496kafk9xchkkzhg4dcfbj0isldih6b"; }; setupPyBuildFlags = ["--qt" "--xdg"]; - propagatedBuildInputs = with self; [ pillow prettytable pyyaml dateutil gdata requests2 mechanize feedparser lxml pkgs.gnupg pyqt4 pkgs.libyaml simplejson cssselect futures ]; + propagatedBuildInputs = with self; [ pillow prettytable pyyaml dateutil gdata requests2 mechanize feedparser lxml pkgs.gnupg pyqt4 pkgs.libyaml simplejson cssselect futures pdfminer termcolor ]; meta = { homepage = http://weboob.org; From de8213bd287b80d564ab9fc62c9c9c20c15bdacb Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 24 Feb 2016 14:35:34 +0000 Subject: [PATCH 177/291] curl: disable http2 support on Darwin Should fix https://hydra.nixos.org/build/32265403/nixlog/12 --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 37f1098a823..15b9862e390 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1270,6 +1270,7 @@ let curl = callPackage ../tools/networking/curl rec { fetchurl = fetchurlBoot; + http2Support = !stdenv.isDarwin; zlibSupport = true; sslSupport = zlibSupport; scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin; From d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Wed, 24 Feb 2016 15:45:44 +0100 Subject: [PATCH 178/291] gdb: 7.10 -> 7.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See announcement here : http://lists.gnu.org/archive/html/info-gnu/2016-02/msg00010.html --- pkgs/development/tools/misc/gdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix index cdef2ee58ca..472bb4de58b 100644 --- a/pkgs/development/tools/misc/gdb/default.nix +++ b/pkgs/development/tools/misc/gdb/default.nix @@ -12,7 +12,7 @@ let - basename = "gdb-7.10.1"; + basename = "gdb-7.11"; # Whether (cross-)building for GNU/Hurd. This is an approximation since # having `stdenv ? cross' doesn't tell us if we're building `crossDrv' and @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnu/gdb/${basename}.tar.xz"; - sha256 = "1mfnjcwnwm5cg4rc9pncs9v356a0bz6ymjyac56mbj6784yjzir5"; + sha256 = "1hg5kwwdvi9b9nxzxfjnx8fx3gip75fqyvkp82xpf3b3rcb42hvs"; }; nativeBuildInputs = [ pkgconfig texinfo perl ] From d4193c82c13e190b516ccaa9930544d4cdeaa98c Mon Sep 17 00:00:00 2001 From: koral Date: Wed, 24 Feb 2016 16:39:03 +0100 Subject: [PATCH 179/291] mercurial: 3.5.1 -> 3.7.1 --- pkgs/applications/version-management/mercurial/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix index d6929129320..b99727b2c9b 100644 --- a/pkgs/applications/version-management/mercurial/default.nix +++ b/pkgs/applications/version-management/mercurial/default.nix @@ -3,7 +3,7 @@ , ApplicationServices, cf-private }: let - version = "3.5.1"; + version = "3.7.1"; name = "mercurial-${version}"; in @@ -12,7 +12,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://mercurial.selenic.com/release/${name}.tar.gz"; - sha256 = "1795ia6ghbqwfp4d6bz0qwlvzymh76zdgk2viikrkqq3ldfs8zcr"; + sha256 = "1vfgqlb8z2k1vcx2nvcianxmml79cqqqncchw6aj40sa8hgpvlwn"; }; inherit python; # pass it so that the same version can be used in hg2git From a2b8cc0aaf74f4a98b820925f96a33123fbcd1c4 Mon Sep 17 00:00:00 2001 From: Jordan Mulcahey Date: Thu, 13 Aug 2015 22:05:03 -0700 Subject: [PATCH 180/291] netatalk: 3.1.0 -> 3.1.7, new service module --- nixos/modules/module-list.nix | 1 + .../services/network-filesystems/netatalk.nix | 150 ++++++++++++++++++ pkgs/tools/filesystems/netatalk/default.nix | 16 +- .../netatalk/omitLocalstatedirCreation.patch | 35 ++++ 4 files changed, 196 insertions(+), 6 deletions(-) create mode 100644 nixos/modules/services/network-filesystems/netatalk.nix create mode 100644 pkgs/tools/filesystems/netatalk/omitLocalstatedirCreation.patch diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 30e716c2ef4..585da96c32e 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -275,6 +275,7 @@ ./services/monitoring/zabbix-agent.nix ./services/monitoring/zabbix-server.nix ./services/network-filesystems/drbd.nix + ./services/network-filesystems/netatalk.nix ./services/network-filesystems/nfsd.nix ./services/network-filesystems/openafs-client/default.nix ./services/network-filesystems/rsyncd.nix diff --git a/nixos/modules/services/network-filesystems/netatalk.nix b/nixos/modules/services/network-filesystems/netatalk.nix new file mode 100644 index 00000000000..bff54406a2b --- /dev/null +++ b/nixos/modules/services/network-filesystems/netatalk.nix @@ -0,0 +1,150 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + + cfg = config.services.netatalk; + + extmapFile = pkgs.writeText "extmap.conf" cfg.extmap; + + afpToString = x: if builtins.typeOf x == "bool" + then (if x then "true" else "false") + else toString x; + + volumeConfig = name: + let vol = getAttr name cfg.volumes; in + "[${name}]\n " + (toString ( + map + (key: "${key} = ${afpToString (getAttr key vol)}\n") + (attrNames vol) + )); + + afpConf = ''[Global] + extmap file = ${extmapFile} + afp port = ${toString cfg.port} + + ${cfg.extraConfig} + + ${if cfg.homes.enable then ''[Homes] + ${optionalString (cfg.homes.path != "") "path = ${cfg.homes.path}"} + basedir regex = ${cfg.homes.basedirRegex} + ${cfg.homes.extraConfig} + '' else ""} + + ${toString (map volumeConfig (attrNames cfg.volumes))} + ''; + + afpConfFile = pkgs.writeText "afp.conf" afpConf; + +in + +{ + options = { + services.netatalk = { + + enable = mkOption { + default = false; + description = "Whether to enable the Netatalk AFP fileserver."; + }; + + port = mkOption { + default = 548; + description = "TCP port to be used for AFP."; + }; + + extraConfig = mkOption { + type = types.lines; + default = ""; + example = "uam list = uams_guest.so"; + description = '' + Lines of configuration to add to the [Global] section. + See man apf.conf for more information. + ''; + }; + + homes = { + enable = mkOption { + default = false; + description = "Enable sharing of the UNIX server user home directories."; + }; + + path = mkOption { + default = ""; + example = "afp-data"; + description = "Share not the whole user home but this subdirectory path."; + }; + + basedirRegex = mkOption { + example = "/home"; + description = "Regex which matches the parent directory of the user homes."; + }; + + extraConfig = mkOption { + type = types.lines; + default = ""; + description = '' + Lines of configuration to add to the [Homes] section. + See man apf.conf for more information. + ''; + }; + }; + + volumes = mkOption { + default = { }; + type = types.attrsOf (types.attrsOf types.unspecified); + description = + '' + Set of AFP volumes to export. + See man apf.conf for more information. + ''; + example = + { srv = + { path = "/srv"; + "read only" = true; + "hosts allow" = "10.1.0.0/16 10.2.1.100 2001:0db8:1234::/48"; + }; + }; + }; + + extmap = mkOption { + type = types.lines; + default = ""; + description = '' + File name extension mappings. + See man extmap.conf for more information. + ''; + }; + + }; + }; + + config = mkIf cfg.enable { + + systemd.services.netatalk = { + description = "Netatalk AFP fileserver for Macintosh clients"; + unitConfig.Documentation = "man:afp.conf(5) man:netatalk(8) man:afpd(8) man:cnid_metad(8) man:cnid_dbd(8)"; + after = [ "network.target" "avahi-daemon.service" ]; + wantedBy = [ "multi-user.target" ]; + + path = [ pkgs.netatalk ]; + + serviceConfig = { + Type = "forking"; + GuessMainPID = "no"; + PIDFile = "/run/lock/netatalk"; + ExecStartPre = "${pkgs.coreutils}/bin/mkdir -m 0755 -p /var/lib/netatalk/CNID"; + ExecStart = "${pkgs.netatalk}/sbin/netatalk -F ${afpConfFile}"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; + ExecStop = "${pkgs.coreutils}/bin/kill -TERM $MAINPID"; + Restart = "always"; + RestartSec = 1; + }; + + }; + + security.pam.services.netatalk.unixAuth = true; + + }; + +} diff --git a/pkgs/tools/filesystems/netatalk/default.nix b/pkgs/tools/filesystems/netatalk/default.nix index d5a0cbbc419..7e4ea032bb3 100644 --- a/pkgs/tools/filesystems/netatalk/default.nix +++ b/pkgs/tools/filesystems/netatalk/default.nix @@ -1,24 +1,28 @@ -{ fetchurl, stdenv, pkgconfig, db, libgcrypt, avahi, libiconv, pam, openssl }: +{ fetchurl, stdenv, pkgconfig, db, libgcrypt, avahi, libiconv, pam, openssl, acl }: -stdenv.mkDerivation rec { - name = "netatalk-3.1.0"; +stdenv.mkDerivation rec{ + name = "netatalk-3.1.7"; src = fetchurl { url = "mirror://sourceforge/netatalk/netatalk/${name}.tar.bz2"; - sha256 = "1d8dc8ysslkis4yl1xab1w9p0pz7a1kg0i6fds4wxsp4fhb6wqhq"; + sha256 = "0wf09fyqzza024qr1s26z5x7rsvh9zb4pv598gw7gm77wjcr6174"; }; - buildInputs = [ pkgconfig db libgcrypt avahi pam openssl libiconv ]; + buildInputs = [ pkgconfig db libgcrypt avahi libiconv pam openssl acl ]; + + patches = ./omitLocalstatedirCreation.patch; configureFlags = [ "--with-bdb=${db}" "--with-openssl=${openssl}" + "--with-lockfile=/run/lock/netatalk" + "--localstatedir=/var/lib" ]; enableParallelBuild = true; meta = { - description = "Apple File Protocl Server"; + description = "Apple Filing Protocol Server"; homepage = http://netatalk.sourceforge.net/; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.linux; diff --git a/pkgs/tools/filesystems/netatalk/omitLocalstatedirCreation.patch b/pkgs/tools/filesystems/netatalk/omitLocalstatedirCreation.patch new file mode 100644 index 00000000000..d1a9dcb0b3b --- /dev/null +++ b/pkgs/tools/filesystems/netatalk/omitLocalstatedirCreation.patch @@ -0,0 +1,35 @@ +diff -ur netatalk-3.1.7-old/config/Makefile.in netatalk-3.1.7-new/config/Makefile.in +--- netatalk-3.1.7-old/config/Makefile.in 2014-08-29 03:33:35.000000000 -0700 ++++ netatalk-3.1.7-new/config/Makefile.in 2015-08-13 20:52:35.000000000 -0700 +@@ -699,7 +699,7 @@ + + info-am: + +-install-data-am: install-data-local install-dbusserviceDATA ++install-data-am: install-dbusserviceDATA + + install-dvi: install-dvi-recursive + +@@ -754,7 +754,7 @@ + cscopelist cscopelist-recursive ctags ctags-recursive \ + distclean distclean-generic distclean-libtool distclean-tags \ + distdir dvi dvi-am html html-am info info-am install \ +- install-am install-data install-data-am install-data-local \ ++ install-am install-data install-data-am \ + install-dbusserviceDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ +@@ -782,12 +782,6 @@ + # install configuration files + # + +-install-data-local: install-config-files +- mkdir -pm 0755 $(DESTDIR)$(localstatedir)/netatalk/ +- mkdir -pm 0755 $(DESTDIR)$(localstatedir)/netatalk/CNID/ +- $(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(localstatedir)/netatalk/ +- $(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(localstatedir)/netatalk/CNID/ +- + uninstall-local: + @for f in $(CONFFILES) $(GENFILES); do \ + echo rm -f $(DESTDIR)$(pkgconfdir)/$$f; \ + From 2d5d0df8f10cee45cc92176cb13da2d32c05d075 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 24 Feb 2016 19:47:28 +0100 Subject: [PATCH 181/291] kde5.kile: 2016-02-12 -> 2016-02-14 Fixes building (poppler-qt5 could not be found) --- pkgs/applications/editors/kile/frameworks.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/kile/frameworks.nix b/pkgs/applications/editors/kile/frameworks.nix index ff8bc371cf3..422c132b649 100644 --- a/pkgs/applications/editors/kile/frameworks.nix +++ b/pkgs/applications/editors/kile/frameworks.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { name = "kile-${version}"; - version = "2016-02-12"; + version = "2016-02-14"; src = fetchgit { url = git://anongit.kde.org/kile.git; - rev = "c586532031872319ae5102fb13ab6de8d80da065"; - sha256 = "7d5ef8b8c1254a5988a1028e415c9139fbd20a9e6771413c38fa58345a744a7b"; + rev = "7b238c42580abc936816d4ea0df61d0cbbefecc4"; + sha256 = "f37d531489a84911b47664697bb3bddc0ba5591854749c17fb0c6b1e71dbc6ee"; }; From 8ee44708b21635588cdf7670e389197a9b835f35 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 24 Feb 2016 20:24:01 +0100 Subject: [PATCH 182/291] hdapsd: initial package at version 20141203 --- pkgs/os-specific/linux/hdapsd/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/os-specific/linux/hdapsd/default.nix diff --git a/pkgs/os-specific/linux/hdapsd/default.nix b/pkgs/os-specific/linux/hdapsd/default.nix new file mode 100644 index 00000000000..9f39cb56bf5 --- /dev/null +++ b/pkgs/os-specific/linux/hdapsd/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl }: + +let version = "20141203"; in +stdenv.mkDerivation rec { + name = "ldapsd-"+version; + + src = fetchurl { + url = "https://github.com/evgeni/hdapsd/releases/download/${version}/hdapsd-${version}.tar.gz"; + sha256 = "0ppgrfabd0ivx9hyny3c3rv4rphjyxcdsd5svx5pgfai49mxnl36"; + }; + + meta = with stdenv.lib; + { description = "Hard Drive Active Protection System Daemon"; + hompage = "http://hdaps.sf.net/"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.ehmry ]; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3ed02f71e5c..b2a8876d9d9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1936,6 +1936,8 @@ let halibut = callPackage ../tools/typesetting/halibut { }; + hdapsd = callPackage ../os-specific/linux/hdapsd { }; + hddtemp = callPackage ../tools/misc/hddtemp { }; hdf5 = callPackage ../tools/misc/hdf5 { From eb46cd3ab0ffbb5db0953094deb2e4bb0ace2537 Mon Sep 17 00:00:00 2001 From: Igor Sharonov Date: Tue, 23 Feb 2016 23:03:44 +0300 Subject: [PATCH 183/291] pyelftools: init at 0.23 --- pkgs/top-level/python-packages.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1a35c493565..1ea9cd2d2ba 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16265,6 +16265,32 @@ in modules // { }; }); + pyelftools = buildPythonPackage rec { + pname = "pyelftools"; + version = "0.23"; + name = "${pname}-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/${pname}/${name}.tar.gz"; + sha256 = "1pi1mdzfffgl5qcz0prsa7hlbriycy7mgagi0fdrp3vf17fslmzw"; + }; + + checkPhase = '' + ${python.interpreter} test/all_tests.py + ''; + # Tests cannot pass against system-wide readelf + # https://github.com/eliben/pyelftools/issues/65 + doCheck = false; + + meta = { + description = "A library for analyzing ELF files and DWARF debugging information"; + homepage = https://github.com/eliben/pyelftools; + license = licenses.publicDomain; + platforms = platforms.all; + maintainers = maintainers.igsha; + }; + }; + pyenchant = buildPythonPackage rec { name = "pyenchant-1.6.6"; From b16dc8dcc53d1910092d8dc2f30851eef2060c16 Mon Sep 17 00:00:00 2001 From: Emery Date: Wed, 24 Feb 2016 21:43:38 +0100 Subject: [PATCH 184/291] New hdapsd module --- nixos/modules/module-list.nix | 1 + nixos/modules/services/monitoring/hdaps.nix | 22 ++++++++++++++++++++ pkgs/os-specific/linux/hdapsd/default.nix | 6 ++++-- pkgs/os-specific/linux/hdapsd/postInstall.sh | 7 +++++++ 4 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 nixos/modules/services/monitoring/hdaps.nix create mode 100644 pkgs/os-specific/linux/hdapsd/postInstall.sh diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 585da96c32e..c2bcc361c44 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -257,6 +257,7 @@ ./services/monitoring/dd-agent.nix ./services/monitoring/grafana.nix ./services/monitoring/graphite.nix + ./services/monitoring/hdaps.nix ./services/monitoring/heapster.nix ./services/monitoring/longview.nix ./services/monitoring/monit.nix diff --git a/nixos/modules/services/monitoring/hdaps.nix b/nixos/modules/services/monitoring/hdaps.nix new file mode 100644 index 00000000000..be26c44e78d --- /dev/null +++ b/nixos/modules/services/monitoring/hdaps.nix @@ -0,0 +1,22 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.hdapsd; + hdapsd = [ pkgs.hdapsd ]; +in +{ + options = { + services.hdapsd.enable = mkEnableOption + '' + Hard Drive Active Protection System Daemon, + devices are detected and managed automatically by udev and systemd + ''; + }; + + config = mkIf cfg.enable { + services.udev.packages = hdapsd; + systemd.packages = hdapsd; + }; +} diff --git a/pkgs/os-specific/linux/hdapsd/default.nix b/pkgs/os-specific/linux/hdapsd/default.nix index 9f39cb56bf5..61c0c7b495d 100644 --- a/pkgs/os-specific/linux/hdapsd/default.nix +++ b/pkgs/os-specific/linux/hdapsd/default.nix @@ -2,13 +2,15 @@ let version = "20141203"; in stdenv.mkDerivation rec { - name = "ldapsd-"+version; + name = "hdapsd-"+version; src = fetchurl { url = "https://github.com/evgeni/hdapsd/releases/download/${version}/hdapsd-${version}.tar.gz"; sha256 = "0ppgrfabd0ivx9hyny3c3rv4rphjyxcdsd5svx5pgfai49mxnl36"; }; + postInstall = builtins.readFile ./postInstall.sh; + meta = with stdenv.lib; { description = "Hard Drive Active Protection System Daemon"; hompage = "http://hdaps.sf.net/"; @@ -16,4 +18,4 @@ stdenv.mkDerivation rec { platforms = platforms.linux; maintainers = [ maintainers.ehmry ]; }; -} \ No newline at end of file +} diff --git a/pkgs/os-specific/linux/hdapsd/postInstall.sh b/pkgs/os-specific/linux/hdapsd/postInstall.sh new file mode 100644 index 00000000000..37867817bf6 --- /dev/null +++ b/pkgs/os-specific/linux/hdapsd/postInstall.sh @@ -0,0 +1,7 @@ +mkdir -p $out/lib/udev/rules.d $out/lib/systemd/system +cp misc/hdapsd.rules $out/lib/udev/rules.d +SBIN_REWRITE="s|@sbindir@|$out/bin|g" +for i in misc/*.service.in +do sed $SBIN_REWRITE "$i" > "$out/lib/systemd/system/$(basename ${i%.in})" +done + From a5ed58445fb5a4a21f02fad57020ac90e2eb649b Mon Sep 17 00:00:00 2001 From: = Date: Fri, 19 Feb 2016 18:01:32 +0100 Subject: [PATCH 185/291] yarp (+ libace): init at 2.3.64 --- lib/licenses.nix | 5 +++ .../science/misc/yarp/default.nix | 26 ++++++++++++++ pkgs/development/libraries/ace/default.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 4 files changed, 71 insertions(+) create mode 100644 pkgs/applications/science/misc/yarp/default.nix create mode 100644 pkgs/development/libraries/ace/default.nix diff --git a/lib/licenses.nix b/lib/licenses.nix index 4703587ed56..64ba63b146a 100644 --- a/lib/licenses.nix +++ b/lib/licenses.nix @@ -155,6 +155,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec { fullName = "Common Public License 1.0"; }; + doc = spdx { + spdxId = "DOC"; + fullName = "DOC License"; + }; + efl10 = spdx { spdxId = "EFL-1.0"; fullName = "Eiffel Forum License v1.0"; diff --git a/pkgs/applications/science/misc/yarp/default.nix b/pkgs/applications/science/misc/yarp/default.nix new file mode 100644 index 00000000000..2daf5a4b5c7 --- /dev/null +++ b/pkgs/applications/science/misc/yarp/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchFromGitHub, pkgconfig, cmake, ace +}: + +stdenv.mkDerivation rec { + name = "yarp-${version}"; + version = "2.3.64"; + src = fetchFromGitHub { + owner = "robotology"; + repo = "yarp"; + rev = "v2.3.64"; + sha256 = "0x9sdc8d6rppzf1kx53w0yjlnmz7h75qv62yd3ls09w3cy7nb5x7"; + }; + + buildInputs = [ cmake ace ]; + + enableParallelBuilding = true; + + meta = { + description = "Yet Another Robot Platform"; + homepage = http://yarp.it; + license = stdenv.lib.licenses.lgpl21; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.nico202 ]; + }; +} + diff --git a/pkgs/development/libraries/ace/default.nix b/pkgs/development/libraries/ace/default.nix new file mode 100644 index 00000000000..10ba217175c --- /dev/null +++ b/pkgs/development/libraries/ace/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, pkgconfig, libtool, perl +}: + +stdenv.mkDerivation rec { + name = "ace-${version}"; + version = "6.3.3"; + src = fetchurl { + url=http://download.dre.vanderbilt.edu/previous_versions/ACE-6.3.3.tar.bz2; + sha256 = "124qk205v8rx8p7rfigsargrpxjx3mh4nr99nlyk9csdc9gy8qpk"; + }; + + enableParallelBuilding = true; + + buildInputs = [ pkgconfig libtool perl ]; + + patchPhase = ''substituteInPlace ./MPC/prj_install.pl \ + --replace /usr/bin/perl "${perl}/bin/perl"''; + + preConfigure = '' + export INSTALL_PREFIX=$out + export ACE_ROOT=$(pwd) + export LD_LIBRARY_PATH="$ACE_ROOT/ace:$ACE_ROOT/lib" + echo '#include "ace/config-linux.h"' > ace/config.h + echo 'include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU'\ + > include/makeinclude/platform_macros.GNU + ''; + +meta = { + description = "ADAPTIVE Communication Environment"; + homepage = http://www.dre.vanderbilt.edu/~schmidt/ACE.html; + license = stdenv.lib.licenses.doc; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.nico202 ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44c42e012a4..07793c2619c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6889,6 +6889,8 @@ let glib_networking = callPackage ../development/libraries/glib-networking {}; + ace = callPackage ../development/libraries/ace { }; + atk = callPackage ../development/libraries/atk { }; atkmm = callPackage ../development/libraries/atkmm { }; @@ -14138,6 +14140,8 @@ let pahole = callPackage ../development/tools/misc/pahole {}; + yarp = callPackage ../applications/science/misc/yarp {}; + yed = callPackage ../applications/graphics/yed {}; ykpers = callPackage ../applications/misc/ykpers {}; From 55720db388a2c2cf767c2770db7cb6da2806678c Mon Sep 17 00:00:00 2001 From: Ryan Trinkle Date: Wed, 24 Feb 2016 16:27:03 -0500 Subject: [PATCH 186/291] ghcjs: Make ghcjs-boot source code overridable --- pkgs/development/compilers/ghcjs/default.nix | 11 ++++++++++- pkgs/development/compilers/ghcjs/ghcjs-boot.nix | 12 +----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix index 722c3eab10a..808768f74b8 100644 --- a/pkgs/development/compilers/ghcjs/default.nix +++ b/pkgs/development/compilers/ghcjs/default.nix @@ -38,7 +38,16 @@ , coreutils , libiconv -, ghcjsBoot ? import ./ghcjs-boot.nix { inherit fetchgit runCommand; } +, ghcjsBootSrc ? fetchgit { + url = git://github.com/ghcjs/ghcjs-boot.git; + rev = "97dea5c4145bf80a1e7cffeb1ecd4d0ecacd5a2f"; + sha256 = "1cgjzm595l2dx6fibzbkyv23bp1857qia0hb9d8aghf006al558j"; + fetchSubmodules = true; + } +, ghcjsBoot ? import ./ghcjs-boot.nix { + inherit runCommand; + src = ghcjsBootSrc; + } , shims ? import ./shims.nix { inherit fetchFromGitHub; } }: let diff --git a/pkgs/development/compilers/ghcjs/ghcjs-boot.nix b/pkgs/development/compilers/ghcjs/ghcjs-boot.nix index add39a35242..c00e13a9240 100644 --- a/pkgs/development/compilers/ghcjs/ghcjs-boot.nix +++ b/pkgs/development/compilers/ghcjs/ghcjs-boot.nix @@ -1,14 +1,4 @@ -{ runCommand, fetchgit }: - -let - src = fetchgit { - url = git://github.com/ghcjs/ghcjs-boot.git; - rev = "97dea5c4145bf80a1e7cffeb1ecd4d0ecacd5a2f"; - sha256 = "1cgjzm595l2dx6fibzbkyv23bp1857qia0hb9d8aghf006al558j"; - fetchSubmodules = true; - }; - -in +{ runCommand, src }: # we remove the patches so ghcjs-boot doesn't try to apply them again. runCommand "${src.name}-patched" {} '' From b6ff8f9314359df78a7e846dec3cb0319983d0f9 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Wed, 24 Feb 2016 13:32:58 -0800 Subject: [PATCH 187/291] disable darwin-arch.patch on openssl >= 1.0.2 --- pkgs/development/libraries/openssl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 6300068f09f..db17e0cd73a 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -21,7 +21,7 @@ let patches = [ ./use-etc-ssl-certs.patch ] ++ optional stdenv.isCygwin ./1.0.1-cygwin64.patch - ++ optional (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem")) ./darwin-arch.patch; + ++ optional (stdenv.lib.versionOlder version "1.0.2" && (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem"))) ./darwin-arch.patch; nativeBuildInputs = [ perl ]; buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders; From bd9f128cc2a150a53ff3b63eba485f940d02d61a Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Wed, 24 Feb 2016 13:33:07 -0800 Subject: [PATCH 188/291] add darwin.libiconv to ghcjs packages --- pkgs/development/haskell-modules/configuration-ghcjs.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index ac7a30d4cfb..5c14fe788f7 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -19,8 +19,12 @@ self: super: postPatch = '' ${pkgs.autoconf}/bin/autoreconf --install --force --verbose ''; + buildTools = pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv; }); + network = addBuildTools super.network (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); + zlib = addBuildTools super.zlib (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); + # LLVM is not supported on this GHC; use the latest one. inherit (pkgs) llvmPackages; From 1fb998f6c69aa2fcbd412fae2e83b26fa7bf4b23 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Wed, 24 Feb 2016 22:47:21 +0100 Subject: [PATCH 189/291] calc: init at 2.12.5.3 --- .../science/math/calc/default.nix | 45 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/applications/science/math/calc/default.nix diff --git a/pkgs/applications/science/math/calc/default.nix b/pkgs/applications/science/math/calc/default.nix new file mode 100644 index 00000000000..8673d7debd9 --- /dev/null +++ b/pkgs/applications/science/math/calc/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl, makeWrapper, glibc, readline, ncurses, groff, utillinux }: + +with stdenv.lib; +let + makeFlags = '' + INCDIR=${glibc}/include \ + BINDIR=$out/bin LIBDIR=$out/lib CALC_INCDIR=$out/include/calc CALC_SHAREDIR=$out/share/calc MANDIR=$out/share/man/man1 \ + USE_READLINE=-DUSE_READLINE READLINE_LIB=-lreadline READLINE_EXTRAS='-lhistory -lncurses' \ + TERMCONTROL=-DUSE_TERMIOS \ + NROFF=groff + ''; +in +stdenv.mkDerivation rec { + + name = "calc-${version}"; + version = "2.12.5.3"; + + src = fetchurl { + url = "mirror://sourceforge/calc/${name}.tar.bz2"; + sha256 = "14mnz6smhi3a0rgmwvddk9w3vdisi8khq67i8nqsl47vgs8n1kqg"; + }; + + buildInputs = [ makeWrapper readline ncurses groff utillinux ]; + + configurePhase = '' + sed -i 's/all: check_include/all:/' Makefile + ''; + + buildPhase = '' + make ${makeFlags} + ''; + + installPhase = '' + make install ${makeFlags} + wrapProgram $out/bin/calc --prefix LD_LIBRARY_PATH : $out/lib + ''; + + meta = { + description = "C-style arbitrary precision calculator"; + homepage = http://www.isthe.com/chongo/tech/comp/calc/; + license = licenses.lgpl21; + maintainers = [ ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b2a8876d9d9..f8ceea6ea12 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15525,6 +15525,8 @@ let pari = callPackage ../applications/science/math/pari {}; + calc = callPackage ../applications/science/math/calc { }; + pcalc = callPackage ../applications/science/math/pcalc { }; pspp = callPackage ../applications/science/math/pssp { From a2d1cbd019d17728d57325198f8a1a0f2d890c5c Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Fri, 22 Jan 2016 04:45:27 -0600 Subject: [PATCH 190/291] nixpkgs: bittorrentSync20 2.2.7 -> 2.3.0 Signed-off-by: Austin Seipp --- pkgs/applications/networking/bittorrentsync/2.0.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix index 1ae3041b4da..8ecfb476a18 100644 --- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix +++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix @@ -5,15 +5,15 @@ let else if stdenv.system == "i686-linux" then "i386" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; - sha256 = if stdenv.system == "x86_64-linux" then "1ldhi0ydpxdbpd0ak5c3zv93wif5sqsgfj4ggav2b0djm76al2gb" - else if stdenv.system == "i686-linux" then "1fhki13isw3g7785b5jdl4warayg94ihah6wsr5h9gljjjghgi1c" + sha256 = if stdenv.system == "x86_64-linux" then "1fzwqi3vjv5shmw02pz2lgdi6b138vj042hn92szc49c9wd1vdgq" + else if stdenv.system == "i686-linux" then "1x47jc5i37r0cwrrgi5ylfb14zwj7qyf1xhgl7g724bm1cgdc00n" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ]; in stdenv.mkDerivation rec { name = "btsync-${version}"; - version = "2.2.7"; + version = "2.3.0"; src = fetchurl { url = "https://download-cdn.getsyncapp.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"; From 4da1711988df18a5544a945b2e8aaab4835cfe04 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Wed, 24 Feb 2016 22:28:16 -0600 Subject: [PATCH 191/291] nixpkgs: bittorrentSync20 2.3.0 -> 2.3.3 Signed-off-by: Austin Seipp --- pkgs/applications/networking/bittorrentsync/2.0.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix index 8ecfb476a18..4f9c7ebf333 100644 --- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix +++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix @@ -5,15 +5,15 @@ let else if stdenv.system == "i686-linux" then "i386" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; - sha256 = if stdenv.system == "x86_64-linux" then "1fzwqi3vjv5shmw02pz2lgdi6b138vj042hn92szc49c9wd1vdgq" - else if stdenv.system == "i686-linux" then "1x47jc5i37r0cwrrgi5ylfb14zwj7qyf1xhgl7g724bm1cgdc00n" + sha256 = if stdenv.system == "x86_64-linux" then "0l6z2fyd7i3i3cr95gkihbf6fwa7mk1b2m1jpf2nq5ispg0qf74n" + else if stdenv.system == "i686-linux" then "06x8f75dh58saqrz2k2xgcilh27v0jmql4k4rs7g361aad9v3pnr" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ]; in stdenv.mkDerivation rec { name = "btsync-${version}"; - version = "2.3.0"; + version = "2.3.3"; src = fetchurl { url = "https://download-cdn.getsyncapp.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"; From 06ee2eb7b6b7ad72c0d8ff1ee65d6c3a450d4592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 25 Feb 2016 07:58:05 +0100 Subject: [PATCH 192/291] pyelftools: fix meta evaluation --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ea9cd2d2ba..ffcd6c4229d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16287,7 +16287,7 @@ in modules // { homepage = https://github.com/eliben/pyelftools; license = licenses.publicDomain; platforms = platforms.all; - maintainers = maintainers.igsha; + maintainers = [ maintainers.igsha ]; }; }; From e053971d81498526d0cdfdfdc0f03fc6d6050142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 25 Feb 2016 08:29:57 +0100 Subject: [PATCH 193/291] tarball: fix the job Find-tarballs was failing on some `requireFile` that was fixed-output but didn't specify `outputHashMode`. Apparently, nix is fine with that and uses the "flat" default, although that's undocumented. --- maintainers/scripts/find-tarballs.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maintainers/scripts/find-tarballs.nix b/maintainers/scripts/find-tarballs.nix index e989c0e2a9e..00659459660 100644 --- a/maintainers/scripts/find-tarballs.nix +++ b/maintainers/scripts/find-tarballs.nix @@ -18,7 +18,8 @@ let fetchurlDependencies = filter - (drv: drv.outputHash or "" != "" && drv.outputHashMode == "flat" && drv.postFetch or "" == "" && drv ? urls) + (drv: drv.outputHash or "" != "" && drv.outputHashMode or "flat" == "flat" + && drv.postFetch or "" == "" && drv ? urls) dependencies; dependencies = map (x: x.value) (genericClosure { From eead3bc5365522720e0162b403895497c8817cd6 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Fri, 12 Feb 2016 08:26:46 -0500 Subject: [PATCH 194/291] util-linux: create -Minimal and utillinux (full) Close #12952. Now the full version is used by default, supporting systemd and curses. --- pkgs/desktops/e19/efl.nix | 4 ++-- pkgs/os-specific/linux/systemd/default.nix | 12 ++++++------ pkgs/os-specific/linux/util-linux/default.nix | 9 ++++++++- pkgs/top-level/all-packages.nix | 15 +++++++-------- pkgs/top-level/release-small.nix | 2 +- 5 files changed, 24 insertions(+), 18 deletions(-) diff --git a/pkgs/desktops/e19/efl.nix b/pkgs/desktops/e19/efl.nix index aa662f1ed87..853bee31cc8 100644 --- a/pkgs/desktops/e19/efl.nix +++ b/pkgs/desktops/e19/efl.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinuxCurses, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, libwebp, curl, libinput }: +{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, libwebp, curl, libinput }: stdenv.mkDerivation rec { @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig openssl zlib freetype fontconfig fribidi SDL2 SDL mesa giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-libav libpulseaudio libsndfile xorg.libXcursor xorg.printproto - xorg.libX11 udev utillinuxCurses ]; + xorg.libX11 udev utillinux ]; propagatedBuildInputs = [ libxkbcommon python27Packages.dbus dbus libjpeg xorg.libXcomposite xorg.libXdamage xorg.libXinerama xorg.libXp xorg.libXtst xorg.libXi xorg.libXext diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index ec5a85ef4ad..cb1521a4005 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, pkgconfig, intltool, gperf, libcap, dbus, kmod -, xz, pam, acl, cryptsetup, libuuid, m4, utillinux +, xz, pam, acl, cryptsetup, libuuid, m4, utillinuxMinimal , glib, kbd, libxslt, coreutils, libgcrypt, libgpgerror, libapparmor, audit, lz4 , kexectools, libmicrohttpd, linuxHeaders, libseccomp , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 @@ -75,13 +75,13 @@ stdenv.mkDerivation rec { test -e $i substituteInPlace $i \ --replace /usr/bin/getent ${stdenv.glibc}/bin/getent \ - --replace /bin/mount ${utillinux}/bin/mount \ - --replace /bin/umount ${utillinux}/bin/umount \ - --replace /sbin/swapon ${utillinux}/sbin/swapon \ - --replace /sbin/swapoff ${utillinux}/sbin/swapoff \ + --replace /bin/mount ${utillinuxMinimal}/bin/mount \ + --replace /bin/umount ${utillinuxMinimal}/bin/umount \ + --replace /sbin/swapon ${utillinuxMinimal}/sbin/swapon \ + --replace /sbin/swapoff ${utillinuxMinimal}/sbin/swapoff \ --replace /bin/echo ${coreutils}/bin/echo \ --replace /bin/cat ${coreutils}/bin/cat \ - --replace /sbin/sulogin ${utillinux}/sbin/sulogin \ + --replace /sbin/sulogin ${utillinuxMinimal}/sbin/sulogin \ --replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck done diff --git a/pkgs/os-specific/linux/util-linux/default.nix b/pkgs/os-specific/linux/util-linux/default.nix index bcd9aa58bcc..a84740b1a30 100644 --- a/pkgs/os-specific/linux/util-linux/default.nix +++ b/pkgs/os-specific/linux/util-linux/default.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, zlib, ncurses ? null, perl ? null, pam }: +{ stdenv, fetchurl, zlib, ncurses ? null, perl ? null, pam, systemd ? null +, pkgconfig +}: stdenv.mkDerivation rec { name = "util-linux-2.27.1"; @@ -38,11 +40,16 @@ stdenv.mkDerivation rec { --disable-use-tty-group --enable-fs-paths-default=/var/setuid-wrappers:/var/run/current-system/sw/bin:/sbin ${if ncurses == null then "--without-ncurses" else ""} + ${if systemd == null then "" else '' + --with-systemd + --with-systemdsystemunitdir=$out/lib/systemd/system/ + ''} ''; buildInputs = [ zlib pam ] ++ stdenv.lib.optional (ncurses != null) ncurses + ++ stdenv.lib.optional (systemd != null) [ systemd pkgconfig ] ++ stdenv.lib.optional (perl != null) perl; postInstall = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f6125fbdfd8..9563feeb292 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10021,8 +10021,8 @@ let libuuid = if crossSystem != null && crossSystem.config == "i586-pc-gnu" - then (utillinux // { - crossDrv = lib.overrideDerivation utillinux.crossDrv (args: { + then (utillinuxMinimal // { + crossDrv = lib.overrideDerivation utillinuxMinimal.crossDrv (args: { # `libblkid' fails to build on GNU/Hurd. configureFlags = args.configureFlags + " --disable-libblkid --disable-mount --disable-libmount" @@ -10035,7 +10035,7 @@ let }); }) else if stdenv.isLinux - then utillinux + then utillinuxMinimal else null; light = callPackage ../os-specific/linux/light { }; @@ -10809,13 +10809,12 @@ let usermount = callPackage ../os-specific/linux/usermount { }; - utillinux = callPackage ../os-specific/linux/util-linux { + utillinux = callPackage ../os-specific/linux/util-linux { }; + + utillinuxMinimal = appendToName "minimal" (utillinux.override { ncurses = null; perl = null; - }; - - utillinuxCurses = appendToName "curses" (utillinux.override { - inherit ncurses perl; + systemd = null; }); v4l_utils = callPackage ../os-specific/linux/v4l-utils { diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index fc428a73743..01786591973 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -169,7 +169,7 @@ with import ./release-lib.nix { inherit supportedSystems; }; upstart = linux; usbutils = linux; utillinux = linux; - utillinuxCurses = linux; + utillinuxMinimal = linux; w3m = all; webkit = linux; wget = all; From 21917bc8e23f5dd8b237b261523aebd665276926 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Thu, 25 Feb 2016 02:16:35 -0600 Subject: [PATCH 195/291] jenkins: 1.649 -> 1.650 --- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index c2473ce754c..f416345028f 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.649"; + version = "1.650"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "10lvrdd6mfgkz0rdc41hg9fai44vzxy6qlayfvkjg29xgqm0n9ya"; + sha256 = "0iypkyjcsfj36j683a6yis4q0wil6m8l065fx8v2p7ba4j2ql00n"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; From f930b3949f0eb85930497b9238ad1afe86cf06a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 25 Feb 2016 09:57:51 +0100 Subject: [PATCH 196/291] kde4: use older ruby to fix qtruby build /cc maintainer @ttuegel. Discussion: https://github.com/NixOS/nixpkgs/pull/12610#issuecomment-188666473 I'm personally not certain that building bindings against a non-default ruby version is a good thing, but it's likely better than a build failure. --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b2a8876d9d9..c8390ee8fb5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14845,6 +14845,7 @@ let perlBindings = true; pythonBindings = true; }; + ruby = ruby_2_2; # see https://github.com/NixOS/nixpkgs/pull/12610#issuecomment-188666473 } ../desktops/kde-4.14; From d2d0f19b57e4a7abb9d88556f04a526473404aaf Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 25 Feb 2016 12:17:06 +0300 Subject: [PATCH 197/291] vimPlugins: update 2016-02-25 --- pkgs/misc/vim-plugins/default.nix | 453 +++++++++--------- pkgs/misc/vim-plugins/vim-plugin-names | 2 +- .../vim2nix/additional-nix-code/racer | 4 - 3 files changed, 226 insertions(+), 233 deletions(-) delete mode 100644 pkgs/misc/vim-plugins/vim2nix/additional-nix-code/racer diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 84386efeb3a..6c9f8d665e1 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -101,7 +101,7 @@ rec { src = fetchgit { url = "git://github.com/godlygeek/csapprox"; rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd"; - sha256 = "8ccb47eb79c7ab63109d32158388812bdca340985527af4f2a5489ff8683389f"; + sha256 = "17rqhf3gz2al597sy9smk10a7p1bh648659jkl867ay7g7mlgjwc"; }; dependencies = []; @@ -112,7 +112,7 @@ rec { src = fetchgit { url = "git://github.com/chrisbra/CheckAttach"; rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68"; - sha256 = "b8921c826f5a122e9b128301c620b8b3d3fd88a15a2b0634fdea01062fba2c1f"; + sha256 = "07rcp8phc0gazls0cassl64gvlxkp0hcc0c32adjw4jsdy11r4mq"; }; dependencies = []; @@ -123,7 +123,7 @@ rec { src = fetchgit { url = "git://github.com/mattn/gist-vim"; rev = "88c331e2e07765090112a396e5e119b39b5aa754"; - sha256 = "0da7e356b4a50921c1a67edcf066785ed637750094f42ac1bc61ae82a2f7f9c5"; + sha256 = "1igryyi85bk1pk0jmx4l01skgmjyg1kg1p3ylv0j22d5nibf79qd"; }; dependencies = []; @@ -134,7 +134,7 @@ rec { src = fetchgit { url = "git://github.com/Twinside/vim-hoogle"; rev = "a5db36f048ac16ab9774fc86f36cd4ae9a444932"; - sha256 = "31cb37f9fa38e15a52bc35c050e173afc2af5fe8b3d6e5f2026cd5a89bb1a5a0"; + sha256 = "1855n6dsimbc0brfbmmkx1gszhmgfghm1h1mpi95mq9qzbwkgjri"; }; dependencies = []; @@ -145,7 +145,7 @@ rec { src = fetchgit { url = "git://github.com/altercation/vim-colors-solarized"; rev = "528a59f26d12278698bb946f8fb82a63711eec21"; - sha256 = "a1b2ef696eee94dafa76431c31ee260acdd13a7cf87939f27eca431d5aa5a315"; + sha256 = "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1"; }; dependencies = []; @@ -156,18 +156,18 @@ rec { src = fetchgit { url = "git://github.com/ervandew/supertab"; rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641"; - sha256 = "fd49314e9f3ca3262e40b67f05311de94f50d03c946fc53e25b3bd61e33eb418"; + sha256 = "065l7vin3gdk4lzcavwl7k850kz93lqhazxn80p2d8rwkx732jgx"; }; dependencies = []; }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2016-01-18"; + name = "Syntastic-2016-02-20"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "d1a179d750bd1d136d7f38e69f2c5b8439886de7"; - sha256 = "e2cfa0fa27b0249b1e5d783883f4c72a13a167a869218d73ae1b2cad631c3a28"; + rev = "8f97e64c78e9ade6cf09fc5d5446f5d2a8deaa35"; + sha256 = "1xxmcr5r0cf2nyp2c2dfxm38x4c19dmax1g2m4clnys5dak7lsdd"; }; dependencies = []; @@ -178,7 +178,7 @@ rec { src = fetchgit { url = "git://github.com/godlygeek/tabular"; rev = "60f25648814f0695eeb6c1040d97adca93c4e0bb"; - sha256 = "28c860ad621587f2c3213fae47d1a3997746527c17d51e9ab94c209eb7bfeb0f"; + sha256 = "03zbpyvrw82cp6d1xm8pgi94cxwrlg8lgbiz471z51qmcann1j18"; }; dependencies = []; @@ -189,7 +189,7 @@ rec { src = fetchgit { url = "git://github.com/majutsushi/tagbar"; rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66"; - sha256 = "346773e772772d1c68318effd8e6c8c8b36f61cfd9c72a85c0bfcec9843f13c7"; + sha256 = "1iqk7y2ckkmzq22jmiyrrxhnzcy8r3kdizwf65l1qbbpfbkp6rrl"; }; dependencies = []; @@ -200,7 +200,7 @@ rec { src = fetchgit { url = "git://github.com/scrooloose/nerdcommenter"; rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe"; - sha256 = "4ef10aafc54bcb3e119cac7f4b0065d8dc09d43d92dc069a499e96e935afb83d"; + sha256 = "0gdqmwsyk5ly96d0dp4j7pa0kp6qcl04nzxckh8kxjsbqnphmwaf"; }; dependencies = []; @@ -211,18 +211,18 @@ rec { src = fetchgit { url = "git://github.com/scrooloose/nerdtree"; rev = "4ebbb533c3faf2c480211db2b547972bb3b60f2b"; - sha256 = "f730aa7347d6e710451514137985265338f8f60c4ab7f98e2a0eed65071e08ed"; + sha256 = "1v883q3nbv8f5a7gkdsa1kvghf2k4s2pj4ql2m2i1ryn8xrslc7p"; }; dependencies = []; }; UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "UltiSnips-2016-01-20"; + name = "UltiSnips-2016-02-13"; src = fetchgit { url = "git://github.com/SirVer/ultisnips"; - rev = "3f2c591c3b547e7d7b80d15897ac7a9e3bf85ec8"; - sha256 = "6644e8603202adc1ade58a972164e5e6470248ca1d2c40cd949b8f35e67b8019"; + rev = "25882e95cd8981308c4b2d87dcc2c2d6ecd73a6d"; + sha256 = "0bz1qywavysyqb2ni7s9k96pfwdldvhfz79xp5qcw352d1ii7s9n"; }; dependencies = []; @@ -233,18 +233,18 @@ rec { src = fetchgit { url = "git://github.com/vimoutliner/vimoutliner"; rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069"; - sha256 = "6faf7e34f4793b2445dd9c3facbf19cd6c1c9ab39b83dfb3d89626314ef1850f"; + sha256 = "03w5y57329lnv2rxz0wvnfd1qv6d36zsqgwwvm2j8fvryhs7xbvg"; }; dependencies = []; }; WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "WebAPI-2015-10-05"; + name = "WebAPI-2016-01-25"; src = fetchgit { url = "git://github.com/mattn/webapi-vim"; - rev = "dfc60635e610f9200646a84d11887af9e3d50b10"; - sha256 = "7bc85fe344854e02377f4ac931a015ef1ffd6de14f1d0d8fca04785beabe584b"; + rev = "5726e8270e2a774c7200ca79868b4128c0c57ad7"; + sha256 = "0gfzhny2i6jwkcw5ayhinq0ia3jb086h7bvmxy55lgr0a7ykhvh1"; }; dependencies = []; @@ -267,11 +267,11 @@ rec { }; commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "commentary-2015-09-12"; + name = "commentary-2016-02-15"; src = fetchgit { url = "git://github.com/tpope/vim-commentary"; - rev = "e0f4850d78137a35b9461c530078bd77f39e4dce"; - sha256 = "64896579a5c682e7da2cce7292cba16c4186a42ff68d0e92143fa7345d28cf0d"; + rev = "4dcfc318e0b02fdbb0c2d9ff77cf3562b46eea25"; + sha256 = "1l5krnkx7bx3xry0nj0amwgg6bhqw8ir0jzj75ibvklkg5lmqbxl"; }; dependencies = []; @@ -282,7 +282,7 @@ rec { src = fetchgit { url = "git://github.com/FelikZ/ctrlp-py-matcher"; rev = "8a803267a741cff3d6147650745f83c8f2125578"; - sha256 = "27fc887bdad36bd33a0e8645465e287c20158533408b241f46141528313baa34"; + sha256 = "0d5a7cqjh58l8qgj92s06f2ia83w51g4cic61qxd6sykv9xqiz17"; }; dependencies = []; @@ -293,7 +293,7 @@ rec { src = fetchgit { url = "git://github.com/amiorin/ctrlp-z"; rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026"; - sha256 = "d40ba49edba53805779706633ec3ee0056dd88835cc6b2e88fbe628a5e90da9a"; + sha256 = "16nsj1g8lqmyizlb5ijwhf4dsmh0xv1kwqq6jxvhaf55vfga82yl"; }; dependencies = []; @@ -304,29 +304,29 @@ rec { src = fetchgit { url = "git://github.com/int3/vim-extradite"; rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526"; - sha256 = "91f744ee73faad92adb67a698b58a14cfa0fbb65f6d483a96a1c5b139ee1cdf1"; + sha256 = "1wfdw6g16nqwdalq7m7ncnxhzyjcl5c8nsbsnsnr5bgsfgp49xwi"; }; dependencies = []; }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2016-01-08"; + name = "fugitive-2016-02-24"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "fd36aa9c61e06d71befdbe8931f97137c489b065"; - sha256 = "ef87be5ad469368f11185db32a8acc14ac08f1b151d0c58492042b0a9314c87e"; + rev = "008b9570860f552534109b4f618cf2ddd145eeb4"; + sha256 = "0nj6airs00q3f1ly29k0nk3ypznzsylqm8n0wakllg86qic4xjlr"; }; dependencies = []; }; ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ghcmod-2016-01-20"; + name = "ghcmod-2016-01-25"; src = fetchgit { url = "git://github.com/eagletmt/ghcmod-vim"; - rev = "a7c76b979918889fa6de02a3f712925931f62cb8"; - sha256 = "2ad76948c97e9141eca81423a8d27d092e0f5c62818c66f08679d9cae70268f6"; + rev = "815616e8b7d64677d6092e95bc6a3e83d2e035d4"; + sha256 = "1s0wxccmxi0w7ywhwyxggv5n8lcjgh68rhbpp2zrv5n5sg0das73"; }; dependencies = []; @@ -337,7 +337,7 @@ rec { src = fetchgit { url = "git://github.com/LnL7/vim-nix"; rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12"; - sha256 = "52dbdd4d5bc12988eb62d9022109dbd8b1c5716c27753ce187db6c2fb6737664"; + sha256 = "0r3nffv2yv6vhzhkqx97diqwbcfqvc4j20nrcbmqhaf1bd6xvnsj"; }; dependencies = []; @@ -348,18 +348,18 @@ rec { src = fetchgit { url = "git://github.com/ap/vim-css-color"; rev = "7ad79c7b77bd83296d7a10e596860d9269070207"; - sha256 = "bd6ad1ddad9d520c018083bab8eb53575f99572f3e079abad452db0bf8871708"; + sha256 = "020phzw0pnsjsjx9l1ry5xbrjpspagmvifl3h00hqllxmpfx2smx"; }; dependencies = []; }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2016-01-21"; + name = "neomake-2016-02-20"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "e0fa23401c1231bd942779c79c5c71d08f28e440"; - sha256 = "0d0536188127538cacedda77a81e0749d6207fa882ca1f34f36852d009aa73f9"; + rev = "645c433b73f527badaac5e315f1ea16e7d34ef99"; + sha256 = "0vprly61xhl7pqqp8nfr8vanl6ddq7kf5asqz4kpfdpgnbdxrdlc"; }; dependencies = []; @@ -370,7 +370,7 @@ rec { src = fetchgit { url = "git://github.com/bitc/vim-hdevtools"; rev = "474947c52ff9c93dd36f3c49de90bd9a78f0baa1"; - sha256 = "bf5f096b665c51ce611c6c1bfddc3267c4b2f94af84b04482b07272a6a5a92f3"; + sha256 = "1wwjb9m2l9q75d408jzq9bwv5i376bfgs6vc3ihwwlawcrmhjpxz"; }; dependencies = []; @@ -381,7 +381,7 @@ rec { src = fetchgit { url = "git://github.com/christoomey/vim-tmux-navigator"; rev = "1298b71c420f1d0abceba3f35cc710131f84d73b"; - sha256 = "bde962fe1441cd6f030d9704e6e71117fb43d827b8952d3e1d44009c297b4eb5"; + sha256 = "1dafgclrq0243lz2v5dq4zc47yqp27kyc14p1l1nzka12kz65sdx"; }; dependencies = []; @@ -392,29 +392,29 @@ rec { src = fetchgit { url = "git://github.com/ctrlpvim/ctrlp.vim"; rev = "7f74368d85bb521951dd58123349ce66b947d058"; - sha256 = "fecd1137845ccfe72a1d2e3e1660f8e2264dc46cc34dfa9f1037f14f84115f33"; + sha256 = "0csz2624zw9p22gzlkf3dk24s9p2z1h1cgif3lmfgkswhhvi3kgy"; }; dependencies = []; }; vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-jade-2016-01-21"; + name = "vim-jade-2016-02-11"; src = fetchgit { url = "git://github.com/digitaltoad/vim-jade"; - rev = "319cba1ee5313e8b50fd912d10dfe40a171f0312"; - sha256 = "280ef32d862793b42685aba4802f919928b52b93328d0cef35584a83baf884d0"; + rev = "0a7ec2edaa3f7fbe353f8fd5bf06d3c043d70c81"; + sha256 = "0qlwbywnx6sl2xacdialpmg1d2wmjkdsdklz97k8086glkairs10"; }; dependencies = []; }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2016-01-20"; + name = "neco-ghc-2016-02-13"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "26515b4219c04448d37d6cb4a3c54f2d3080b056"; - sha256 = "265ee24be8f9bf6d067213a751fd54ddcb53570831e7520af41c3eb7f5184fcd"; + rev = "a7b3dc018dff0cbe033c4c3939e1bd777f023083"; + sha256 = "0f48y8fnh9wp1iyq8w7sqzsw3vqm348vqs4p81nwnmwnhgpzxfri"; }; dependencies = []; @@ -425,18 +425,18 @@ rec { src = fetchgit { url = "git://github.com/esneider/YUNOcommit.vim"; rev = "981082055a73ef076d7e27477874d2303153a448"; - sha256 = "4bfd80720c353884e5c373b5457397a63e5e2e4ab4a97d6ce86c1740ac3b4c56"; + sha256 = "0mjc7fn405vcx1n7vadl98p5wgm6jxrlbdbkqgjq8f1m1ir81zab"; }; dependencies = []; }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-01-22"; + name = "vim-go-2016-02-25"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "1beac4aadccb921b3cb264a8e254b75c8a326c21"; - sha256 = "02e92ab38a667c0355a4e5c48e1fc53a7ad416208e9151ff4a9cbd7d477c0fc6"; + rev = "c264aec72eac21f868fdfff2aef67b9ca21aab74"; + sha256 = "1yld56l4bl17r9s1rn72fqfkrjpm96n4wx3qv9hk5vd0yn0nw7y1"; }; dependencies = []; @@ -447,18 +447,18 @@ rec { src = fetchgit { url = "git://github.com/flazz/vim-colorschemes"; rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; - sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5"; + sha256 = "1r9nmlw6ranl5xc3cx0knkmq90rcp6vlmrg2xib35h2dldsch22k"; }; dependencies = []; }; idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "idris-vim-2016-01-14"; + name = "idris-vim-2016-01-29"; src = fetchgit { url = "git://github.com/idris-hackers/idris-vim"; - rev = "09772ea37a83f8633890fc5cd9221bcf6e22c157"; - sha256 = "28eab2793950781a416e76657dfdcb58601c31ffafb336e3beb9790eef6a268d"; + rev = "e1711749f5078f5a9fa53cd15a37627ea9d239f2"; + sha256 = "0mbywk1mwbx3hjzrv7ypp5m800xjj08hxlfmd0piljg41xwkgk5q"; }; dependencies = []; @@ -469,18 +469,18 @@ rec { src = fetchgit { url = "git://github.com/itchyny/calendar.vim"; rev = "2a6c13ee8056fe5b82ce6529f426ed63096dc6bc"; - sha256 = "8228b6e97c42254eb8e8e35e391f24a7fc2f55753af913fe1605b9ade0ff9d98"; + sha256 = "164xzzhavf852vz17y9sfmajzz574hgkjpp3x2w4w9a2gklvca42"; }; dependencies = []; }; thumbnail-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "thumbnail-vim-2016-01-14"; + name = "thumbnail-vim-2016-02-16"; src = fetchgit { url = "git://github.com/itchyny/thumbnail.vim"; - rev = "cf4463dc31722ab116bc61779c515a4b7a1e9af1"; - sha256 = "7037916b16f72ea2aaff666e4fa3e1f9546995c0d6fb4634d2dbfac5b184bb26"; + rev = "3d404c89c7ea783c8386c2e1f03086373f764387"; + sha256 = "02wz7832kyrmwsfpniahpn3b1q1nw5h29zq0l3kj7n19xh5ighm1"; }; dependencies = []; @@ -491,7 +491,7 @@ rec { src = fetchgit { url = "git://github.com/ivanov/vim-ipython"; rev = "42499f094b805b90b683afa5009cee99abd0bb75"; - sha256 = "7f59c3edde4c2b8555d703c96e855ca36665aacdca5a30d1e9e21c31bc252f2d"; + sha256 = "0b9g4ny32772x78k0nnarnm6arm3bj2nxj83sxaqaascvvnw6nbz"; }; dependencies = []; @@ -502,7 +502,7 @@ rec { src = fetchgit { url = "git://github.com/jceb/vim-hier"; rev = "0b8c365263551a67404ebd7e528c55e17c1d3de7"; - sha256 = "f62836545abfe379f9c5410da28409947407cd282ef784b2db89aed0756a1785"; + sha256 = "118pd9sx1bl9vfr89xrf536hfx4l162a43a1qpwpkqxzb9a3ca7n"; }; dependencies = []; buildInputs = [ vim ]; @@ -513,7 +513,7 @@ rec { src = fetchgit { url = "git://github.com/jeetsukumaran/vim-buffergator"; rev = "9a6a946a41bcf492dfe8da5eee4cc2ee3d55c77f"; - sha256 = "6df3d1bffb42f7a96b3136ed80534380ba9e2f508b14dbd665260ffe240ccfee"; + sha256 = "1vng1hjgw3r6cpbdn54ba0prxfl08d9q1v9n65mskxs2zfzx3wvd"; }; dependencies = []; @@ -524,7 +524,7 @@ rec { src = fetchgit { url = "git://github.com/jgdavey/tslime.vim"; rev = "4a8091956e331d7b1d4187a2883b720dfec7e9dd"; - sha256 = "e63113f80c056484c462f6d1eb4634cbe4c6c29170f76f4c992adc17b3539a25"; + sha256 = "09csafrigp1ak566zxvhj71cdr6b6i3fplgncb288r051kw16cg6"; }; dependencies = []; @@ -535,18 +535,18 @@ rec { src = fetchgit { url = "git://github.com/jistr/vim-nerdtree-tabs"; rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7"; - sha256 = "ac4bfc3ae18e8a62ef8e20d0dd0a0f7c172d0ebd5fed58c533ccccec3ae7bdc2"; + sha256 = "1hmxwwxfrk6c6g2mivazpl72s5vw1w5dvl10ivpn52lfw4xgqjxc"; }; dependencies = []; }; vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorstepper-2015-08-04"; + name = "vim-colorstepper-2016-01-28"; src = fetchgit { url = "git://github.com/jonbri/vim-colorstepper"; - rev = "5783c2567a193e7604780353d6f8ce445b2ab191"; - sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59"; + rev = "f23ba0d995d41508a2dc9471cf31d3d01a4b5f05"; + sha256 = "05ykxn0gmh8liz0zv5hb8df1ajggxp88izq3825m0yb3ma3k1jqs"; }; dependencies = []; @@ -557,7 +557,7 @@ rec { src = fetchgit { url = "git://github.com/joonty/vim-xdebug"; rev = "a4980fa65f7f159780593ee37c178281691ba2c4"; - sha256 = "1ccb0e63eaf68548feb1c37b09c07c84b6bea9b350c4257549f091aa414601e2"; + sha256 = "1qh18r0sm4gh95sjbi2hnflvxdl4gk00jyy3n7z4i1gnx9ihxjqw"; }; dependencies = []; postInstall = false; @@ -568,7 +568,7 @@ rec { src = fetchgit { url = "git://github.com/junegunn/limelight.vim"; rev = "153e3f7b78484eb4f5d69833ebf628f44b94996d"; - sha256 = "85a5188dfd51a170b88e1df5ad4f5ae1cfb2e5c54dfbb734d7f4d85cf28eb5fd"; + sha256 = "1zdmivr5rn7lswsbgysdqpjv5kz1b97svx8xisw718aizn6ii9c5"; }; dependencies = []; @@ -579,7 +579,7 @@ rec { src = fetchgit { url = "git://github.com/junegunn/vim-peekaboo"; rev = "b14a7496897bb0a520bed4f519ca79a683bafeec"; - sha256 = "926f42ee4271395ad8a3526e7b0f1077482cec2f557595d3365ac86eb88ae8c3"; + sha256 = "1hz8iaw6xj2s6v9raxam5zn2qj3p207pnvjjlgc5lfbi8bp44vwj"; }; dependencies = []; @@ -590,7 +590,7 @@ rec { src = fetchgit { url = "git://github.com/justincampbell/vim-eighties"; rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5"; - sha256 = "b3386d1c40650e5c0ebda2105d1404cfb2aab74153e13bace4a73bc667d91e81"; + sha256 = "108yv5kwcfx7wjn3pqak86vsmcng0ha5s452pl75q3k580f6sf5k"; }; dependencies = []; @@ -601,7 +601,7 @@ rec { src = fetchgit { url = "git://github.com/latex-box-team/latex-box"; rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1"; - sha256 = "8af2c45209c39438da8481183a1f14885891db73454bb4b16d24799453184e81"; + sha256 = "10af319r8y94dnqv8js5fgdr2n482hgkl641hkd3i563159c9wla"; }; dependencies = []; @@ -612,40 +612,40 @@ rec { src = fetchgit { url = "git://github.com/lepture/vim-jinja"; rev = "4412484b410b15caecd71f2e52758b2a90ea124d"; - sha256 = "650c7f23688e8982f30be3f7d45b73d9c1d283f10a6829e518e2583b4a52befc"; + sha256 = "1z5ya953nn7233jjjs0ay61x5hfrfddx9xz31grq52cfd0ipy335"; }; dependencies = []; }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2016-01-15"; + name = "vimtex-2016-02-23"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "1aedd5a7464c93af5af86fec2f4cfce97d5f2947"; - sha256 = "5fcc46c0dcfd41e15dfdbc66417834e1b933cfb7ae3de9e16cfd3975bc196ba1"; + rev = "ec5e0df3607de6bf6562e60d4fe2759519e9f9a7"; + sha256 = "0ld27rr5lnqzlhqpjrkgvrgs7h1hdsrwswkg7whynw83vilal8bd"; }; dependencies = []; }; vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easymotion-2016-01-22"; + name = "vim-easymotion-2016-02-15"; src = fetchgit { url = "git://github.com/lokaltog/vim-easymotion"; - rev = "799491e007515890aff363b6eac5dbc9c5aa7f80"; - sha256 = "037ee34adc0811571c536cdd37fcfa2d483dd76276380c8858dfe134893bf5e7"; + rev = "649120e90e92bc2ae5361693fa1e4dd2d02c1822"; + sha256 = "1anh1yflahbsmw3zmgm9xzvpz3c4jh1crk695a6p2sjvf3rr68av"; }; dependencies = []; }; vim-xkbswitch = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-xkbswitch-2016-01-12"; + name = "vim-xkbswitch-2016-01-31"; src = fetchgit { url = "git://github.com/lyokha/vim-xkbswitch"; - rev = "46858cbe11a8d1a2abc94de8c817465d0020d6f6"; - sha256 = "36f89ca04c4fa15f4b792620660fefc48f31233351dcc0387d2c4ee0f3c50bbf"; + rev = "89fa3fc16251f2e97281d29ade3ee022ba285003"; + sha256 = "16wahaz9d6jyqlvmsn764xqircrwaap3pn4fbgmly7vfmdvq4p8b"; }; dependencies = []; patchPhase = '' @@ -656,11 +656,11 @@ rec { }; vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-startify-2016-01-12"; + name = "vim-startify-2016-02-15"; src = fetchgit { url = "git://github.com/mhinz/vim-startify"; - rev = "8545f6f553640dc0318582c9749c893f2be3345e"; - sha256 = "cf98c35c106998d7432df572501f7e3d9e452e8104eec3726e9fa6c94c592029"; + rev = "23e043cc828b76524edc09f7dd091753dd1c7f12"; + sha256 = "0cplcpl9a2nhnmnh1h13pxf3hg823frhjmdxssyk35snf6ycgm24"; }; dependencies = []; @@ -671,7 +671,7 @@ rec { src = fetchgit { url = "git://github.com/mkasa/lushtags"; rev = "3d7229b07b47ab2fc188d7db63b33dfcd63a1802"; - sha256 = "f5b6eb7b53a5202d0e55c57d6f4fd7b274dfb4224d8d94c91b708096b4fc07b9"; + sha256 = "1f87zjs9d03h3g4r93ad4asdyx5jsx7nyzf5al72s855adxypdpm"; }; dependencies = []; @@ -682,7 +682,7 @@ rec { src = fetchgit { url = "git://github.com/nbouscal/vim-stylish-haskell"; rev = "c664376ba814de3f87cb7641f90b2c6a9dd53671"; - sha256 = "12a9aad40112200060c3ee86f96589a264db287bdfeb3eb6fdf0f22a6656a5f6"; + sha256 = "1xm5ark2mwphznv3xsyzgcldnr52i5jzk1pfqdh0080j07aama8j"; }; dependencies = []; @@ -693,7 +693,7 @@ rec { src = fetchgit { url = "git://github.com/osyo-manga/shabadou.vim"; rev = "c5af30bb0c028d53cfd89e00cab636c844034a9a"; - sha256 = "392efa8a5e725219e478b571d9a30ddba88d47662467ed3123a168e8b55c4de6"; + sha256 = "1rjdbjsyhs514cqysrr4cr3qva6v1nixjwdmg3j1jlkjbs5glbir"; }; dependencies = []; @@ -704,76 +704,73 @@ rec { src = fetchgit { url = "git://github.com/osyo-manga/vim-watchdogs"; rev = "ebcf3df39007aa5d65910f44eb20c9caea9007df"; - sha256 = "3261d098ae472ec29159b724cf4851d6304d7798e3da6daa4d34be8d308b1a2c"; + sha256 = "0b0sicq8vgil9nm6vnp3k1vlsc6na54cy95pb68w4bj7mscd0q9j"; }; dependencies = []; }; - racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "racer-2016-01-22"; + vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-racer-2016-02-02"; src = fetchgit { - url = "git://github.com/phildawes/racer"; - rev = "1021df4b42436673f0124a62cad09e62d181635d"; - sha256 = "cef501a639da79bce31532b5f06570bd9c255a3d29ac97c6a4b67d640758bddb"; + url = "git://github.com/racer-rust/vim-racer"; + rev = "ec26ab4ca71a5a805339e1243a691c9f6472eeaa"; + sha256 = "0c70s1dymvp4ji81z2302j2dzl7z8sndvzpf2dwwl14fwlar52db"; }; dependencies = []; - buildPhase = '' - find . -type f -not -name 'racer.vim' -exec rm -rf {} \; - rm -rf editors images src - ''; + }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2016-01-22"; + name = "neocomplete-vim-2016-02-20"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "1606b89be1c4718115503156a657344bb3c62593"; - sha256 = "18c11d7f2aab440d895a742d63c58df5aa7d6353cbbf396ff31d1c85c617295a"; + rev = "fe8aa93a8a6030af3d208f2ecc92096cb3d52693"; + sha256 = "12lxb64jnjgppadli4g388cmf3mg5addkml03xmb94vpyf65cprx"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2016-01-22"; + name = "neosnippet-snippets-2016-02-15"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "ac866f64a507f8a9c7e2691d947e5eaea679e50b"; - sha256 = "b1493c4b26ec68fab5e994f462c71f8db0341a2d4b8e42c4ee4f2604562b1247"; + rev = "4e7b0a3962742eccaae298100e23e599d384ea67"; + sha256 = "1299wjmwc82x9z6jcy8332lk6jwnjhizgqzg9jf57704n312py8v"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2016-01-20"; + name = "neosnippet-vim-2016-02-24"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "52f8a2948957018572760837c165113dbb450e2b"; - sha256 = "a3451afd1896c0198fa9a3f3fd354efd2d0c7f1b59c15b43adf5db1b6c5e276b"; + rev = "e908126f402c4c0f4ff6b21c9dd0e5349f39e585"; + sha256 = "09r0b199fk4m5zvc1f1x2lwyapxhaws1lvvm69jjwp1x4vhfdvjv"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2016-01-17"; + name = "unite-vim-2016-02-25"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "c9ce3b13c19352e3b791db227aa373c0b028d656"; - sha256 = "34319f371b11d97ca3b08b367c919f534bff13a8ab10cf532207e1bf62092f72"; + rev = "65dffd7a27d9cbb0e026621c59d4ccc6073202bf"; + sha256 = "0m57f4kb8vh8z804qsahn94d3rcaqianpxfb3d0cd2d7v1cbgm71"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2016-01-06"; + name = "vimproc-vim-2016-02-16"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "aa075b9b56839e1adb08421d2e9837f90e59acad"; - sha256 = "bc587f1cca4dfe8f22af5eecf290a624cbebfdb989906cc02d5471325464b301"; + rev = "78cbb5c683026085de133f160929ccc56a6b203a"; + sha256 = "0hw6ghldrg9zvnkh3j9r9ldi1lzhda71gd630zj09wlaz70x60nj"; }; dependencies = []; buildInputs = [ which ]; @@ -788,11 +785,11 @@ rec { }; vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimshell-vim-2015-12-23"; + name = "vimshell-vim-2016-02-18"; src = fetchgit { url = "git://github.com/shougo/vimshell.vim"; - rev = "a5b3d99ba84e76cf94195c37ab762aef5f7b6e25"; - sha256 = "9a58b00cca9b2cf7ef73cdef2174ab69b7fb427130e5b125b96c6b385dec1947"; + rev = "f51ad1e3b4a897f32bb7ca0382f8fb25519e0d11"; + sha256 = "17zk2sm9n7cyhf92613vpqgaq74z4x61p4pxvvl25fc44bsddndf"; }; dependencies = [ "vimproc-vim" ]; }; @@ -802,29 +799,29 @@ rec { src = fetchgit { url = "git://github.com/sjl/gundo.vim"; rev = "e7fe41024ace9047eee610f23311d44fd9d917c0"; - sha256 = "30955656dd2cb6017e14658a3a5e98c79ec87ff1264b70cd6f628a4f3216bfcd"; + sha256 = "1kdz2qr4z2k2dz6p0jr6y5zwi7n7k1g3m2k52iz03dicvmb5d59h"; }; dependencies = []; }; vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-hardtime-2014-10-21"; + name = "vim-hardtime-2016-02-17"; src = fetchgit { url = "git://github.com/takac/vim-hardtime"; - rev = "b401c72528d1c23e4cc9bc9585fda4361d0199bf"; - sha256 = "65e4bda7531076147fc46f496c8e56c740d1fcf8fe85c18cb2d2070d0c3803cd"; + rev = "7c6a6ec70a1f8a1f8c3ccd21041f84375eb4c160"; + sha256 = "129pwjb3sjz4bffa5cysmk4gy5xd22na4i84ackwx77sw7n6y9kv"; }; dependencies = []; }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2015-12-28"; + name = "vim-quickrun-2016-01-27"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "da5328d0aec495e4dc25232fd769a8a2e56d8f7d"; - sha256 = "a70e2ffa05a2cc2306483e3ecc09972bcdf2d11bfafcfbf3f8195e23475e7102"; + rev = "ac9f4be0698dffb30ebdf284f8ba5abbaab5eaca"; + sha256 = "1g8s4h2a9iiq7d0j99ajqkl562m1w0vwa73riiz7axdmjz34vjwl"; }; dependencies = []; @@ -835,18 +832,18 @@ rec { src = fetchgit { url = "git://github.com/tomasr/molokai"; rev = "c67bdfcdb31415aa0ade7f8c003261700a885476"; - sha256 = "3a0cd4eef9b4e3a4fd826c66a8edec44a087d04f500217981a84fb59b2fc3ade"; + sha256 = "1piszjr5kyw43ac1f0jh9z88g824xknshrkchbys9qxlz7pd831s"; }; dependencies = []; }; vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-eunuch-2015-06-30"; + name = "vim-eunuch-2016-02-07"; src = fetchgit { url = "git://github.com/tpope/vim-eunuch"; - rev = "eb8b2d54fb537ee93f762f6331265057a3f69727"; - sha256 = "ec9194bf2ec97ae3c0f5818fb8a7a9edaf4ea93ca790df7c4d6a4e2486218fe6"; + rev = "d02b2d0404134e6cae2708069d6888110d3c2272"; + sha256 = "07xbrx5wrcrv19yaxmnbl7h2qz80f04kmlsz60pag84pyqlina0h"; }; dependencies = []; @@ -857,7 +854,7 @@ rec { src = fetchgit { url = "git://github.com/travitch/hasksyn"; rev = "c434040bf13a17ca20a551223021b3ace7e453b9"; - sha256 = "b1a735928aeca7011b83133959d59b9c95ab8535fd00ce9968fae4c3b1381931"; + sha256 = "0c8r72qw7r7sd2cww07x6n2sp5cwkgamjf8khcdh39zcia93b9xi"; }; dependencies = []; @@ -868,18 +865,18 @@ rec { src = fetchgit { url = "git://github.com/twinside/vim-haskellconceal"; rev = "f73c5dd660b7009a050b131783d7c17b4954e4d9"; - sha256 = "1ebf98b170642d342207eb8c16551f9969f884b3be975b8755f1018947053ba8"; + sha256 = "1a1v0m3qj0gian3mp5xynf2ghscr3xaid37b0wi38bb4f2qrigqy"; }; dependencies = []; }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-01-20"; + name = "youcompleteme-2016-02-25"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "d05bf551a677ac70d5b6de707a7174a97dccd4dd"; - sha256 = "28478612ddd2b917170e88d069687b65778fcb71a31f4aca7c26aa478b09a849"; + rev = "35f6090b7661989518d64451ea4effa376fcb795"; + sha256 = "1n8wzsbw4saawpjmacw7kvk5mhcxckik0sw8zdpbp885812ly5wi"; }; dependencies = []; buildInputs = [ @@ -911,22 +908,22 @@ rec { }; vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-2015-10-20"; + name = "vim-pandoc-2016-02-12"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc"; - rev = "7d7fdeabb83808f669f4cab37d7950b1bed8adbe"; - sha256 = "451e520ca62cf1207da0f22c2c23f4502f81c0b5a662cd9bfb898e1f53301c41"; + rev = "ff604abdf48e98dd4bd0c441429b9f8f9413134c"; + sha256 = "1c9m1p9zyxqxcrmpn24lkhx1jr6mx51qdvp5wj1vkqwbs811ps26"; }; dependencies = []; }; vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-syntax-2015-11-05"; + name = "vim-pandoc-syntax-2016-02-22"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc-syntax"; - rev = "40c65141bc8c771f270ce8251a99ccdda1ab102c"; - sha256 = "c1be96f358b211d8a5126fdb541a6500c9016e829527d57766b1ec18a4d8ad0e"; + rev = "c9f4eb129881fa48b82c181c84a77ec5ceacb6f6"; + sha256 = "117zl8fpzd34895f0i05zc8zx0jsdald0j2wb12yrhsxiw97fwlq"; }; dependencies = []; @@ -937,7 +934,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/Colour-Sampler-Pack"; rev = "05cded87b2ef29aaa9e930230bb88e23abff4441"; - sha256 = "e3dd18f9fd36543e0c87257b7eaa999a82d75cbfa6dce4dfea403fa751c8620f"; + sha256 = "03v2r18sfgs0xbgy9p56pxfdg0lsk6m7wyr5hw63wm1nzpwiipg3"; }; dependencies = []; @@ -948,7 +945,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/a.vim"; rev = "2cbe946206ec622d9d8cf2c99317f204c4d41885"; - sha256 = "ca0982873ed81e7f6545a6623b735104c574fe580d5f21b0aa3dc1557edac240"; + sha256 = "0h62v9z5bh9xmaq22pqdb3z79i84a5rknqm68mjpy7nq7s3q42fa"; }; dependencies = []; @@ -959,7 +956,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/align"; rev = "787662fe90cd057942bc5b682fd70c87e1a9dd77"; - sha256 = "f7b5764357370f03546556bd45558837f3790b0e86afadb63cd04d714a668a29"; + sha256 = "0acacr572kfh7jvavbw61q5pkwrpi1albgancma063rpax1pddgp"; }; dependencies = []; @@ -970,7 +967,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/changeColorScheme.vim"; rev = "b041d49f828629d72f2232531a230d1ec5de2405"; - sha256 = "094ccc132dc3991a30feb31bbdd777755294957e843517491345a4999e86cb5f"; + sha256 = "0pybhsg9k9252d4ifdc4gsar8lkmfzbvs6xkzqq1m6f35l9wqk09"; }; dependencies = []; @@ -981,7 +978,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/random.vim"; rev = "b2d85eb24a38074eab37a5acf2a295e1f2ad8989"; - sha256 = "571f4ed0a2d8c66d1c15029fb812a84b55228d07cd2e4bbbc73a33493013fed3"; + sha256 = "1lzy2cq4jcrsqyxlnbnd0y6j4mabm09bi7q22lf6vinqlb84w7sp"; }; dependencies = []; @@ -992,7 +989,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/tabmerge"; rev = "074e5f06f26e7108a0570071a0f938a821768c06"; - sha256 = "b84501b0fc5cd51bbb58f12f4c2b3a7c97b03fe2a76446b56a2c111bd4f7335f"; + sha256 = "0prkyza1n49cdaslcr57w8zv15vw78mlqbzib2xipmawzjq02idq"; }; dependencies = []; @@ -1003,7 +1000,7 @@ rec { src = fetchgit { url = "git://github.com/vim-scripts/wombat256.vim"; rev = "8734ba45dcf5e38c4d2686b35c94f9fcb30427e2"; - sha256 = "2feb7d57ab0a9f2ea44ccd606e540db64ab3285956398a50ecc562d7b8dbcd05"; + sha256 = "01fdvfwdfqn5xi88lfanb4lb6jmn1ma6wq6d9jj2x7qamdbpvsrg"; }; dependencies = []; @@ -1014,18 +1011,18 @@ rec { src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; rev = "91262cb3c04fe4d98ecdffe8da2197537c66359c"; - sha256 = "992e41ba32d575bb0bced8b2616cf08aab73f9980292fbc58c94c7f99f914540"; + sha256 = "0h25j6gzkiwlik2zp4h2k3wp7away1n63cnqrq5vnxfm6ax42blr"; }; dependencies = []; buildInputs = [ python ]; }; command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "command-t-2016-01-19"; + name = "command-t-2016-02-09"; src = fetchgit { url = "git://github.com/wincent/command-t"; - rev = "b772049e7e92a354702a9400ad185070ac7e7646"; - sha256 = "425f50d0c21c7f95bdd29532f487d00c7bccb97fb2e372a87a6a5bf2fd11a916"; + rev = "4c7f02c5a9020bbbd498f643abfb059048388707"; + sha256 = "1ij3zkc29zn03kw82c6zv8sbhx3ma3m39fgy9c29419brspzg1r5"; }; dependencies = []; buildInputs = [ perl ruby ]; @@ -1038,11 +1035,11 @@ rec { }; goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "goyo-2015-11-15"; + name = "goyo-2016-02-15"; src = fetchgit { url = "git://github.com/junegunn/goyo.vim"; - rev = "630f5d80861beb36ae2dfa0c587ec6b51982cff5"; - sha256 = "28e74ab067ce55d0dd964b5214601e851046149ccf98b377861c56225f36dc44"; + rev = "cb697998cce4d5a50fb1749310147ae16b0d70e6"; + sha256 = "0sbyk5byfsf10n93dk043ysyxfm43rabiw766pb1gkng5hdqypd0"; }; dependencies = []; @@ -1071,11 +1068,11 @@ rec { }; pathogen = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "pathogen-2016-01-19"; + name = "pathogen-2016-01-26"; src = fetchgit { url = "git://github.com/tpope/vim-pathogen"; - rev = "b4f20ff0acc8267875ca7a3841756fe18d55db15"; - sha256 = "649bdbc573fff16bf4bbb2f50f87978576a86af6fd836bef4f64e1e7996fdfe2"; + rev = "8c91196cfd9c8fe619f35fac6f2ac81be10677f8"; + sha256 = "17d1903spczg2rk0qzg94vvq41dwhmnxwajqgzcx4lmf606cfspi"; }; dependencies = []; @@ -1086,7 +1083,7 @@ rec { src = fetchgit { url = "git://github.com/dannyob/quickfixstatus"; rev = "fd3875b914fc51bbefefa8c4995588c088163053"; - sha256 = "7b6831d5da1c23d95f3158c67e4376d32c2f62ab2e30d02d3f3e14dcfd867d9b"; + sha256 = "16vxhvyxq51y7wnx0c1fmdi2yb6kfr1pxijq65gxj8qwvbak2s3v"; }; dependencies = []; @@ -1097,7 +1094,7 @@ rec { src = fetchgit { url = "git://github.com/kien/rainbow_parentheses.vim"; rev = "eb8baa5428bde10ecc1cb14eed1d6e16f5f24695"; - sha256 = "47975a426d06f41811882691d8a51f32bc72f590477ed52b298660486b2488e3"; + sha256 = "1qw84imlhq4654mxazj7j3sp5g1j3yjxi496i08iix06dm15m5s7"; }; dependencies = []; @@ -1108,18 +1105,18 @@ rec { src = fetchgit { url = "git://github.com/wting/rust.vim"; rev = "2450ecf3091cc7c2711ca9f00eae8e3bedd04376"; - sha256 = "9d2e8b2c06d6100f9a1e76644313d457a2ff955241d8f712de6fddd0b7f5c4ee"; + sha256 = "1vn4ynvx1pbgvq9ggn21aaazz8jpsh9l6r3n3sd0y46n0qn8nblx"; }; dependencies = []; }; sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "sensible-2015-12-26"; + name = "sensible-2016-02-09"; src = fetchgit { url = "git://github.com/tpope/vim-sensible"; - rev = "680a5c693213daa158c816f068fffa895d961dc9"; - sha256 = "959b55a97974d85374eccb58379c3f69c0ec43459d4df2484e42a437c61e34bc"; + rev = "2fb074e84169e177045e8bdb6ceb7eded3a80e8f"; + sha256 = "067ccar0adk2rx96ci26ykdi6bk0p4wnsd10la088lxdfva00m90"; }; dependencies = []; @@ -1130,7 +1127,7 @@ rec { src = fetchgit { url = "git://github.com/tpope/vim-sleuth"; rev = "a17462708aa40a7fc0afd4effa559087d8a2c908"; - sha256 = "72f4b7c5e60c942592e624806960736e71b9f109fbbfa3a5a2a37970b90f6025"; + sha256 = "09b01ywp0yd3lajs7gzv17qvjwbffdh6k014ws92b50cwv2vgx3j"; }; dependencies = []; @@ -1141,7 +1138,7 @@ rec { src = fetchgit { url = "git://github.com/garbas/vim-snipmate"; rev = "7f91de39088138491e40a35a855adb70677b02d3"; - sha256 = "e8c70bbad496fc1306814fbb078736a93d4f418d16f7692f4e37dbcc00ec6633"; + sha256 = "0cv6xh0crnrp9qpnkxqnim0lygd96s3hgfsgh4317z4nsjx0piz8"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1152,7 +1149,7 @@ rec { src = fetchgit { url = "git://github.com/chikatoike/sourcemap.vim"; rev = "0dd82d40faea2fdb0771067f46c01deb41610ba1"; - sha256 = "a08c77aea39be4a0a980d62673d1d17fecc518a8aeb9101210e453aaacb78fbd"; + sha256 = "1gcgnynallz420911fdfm0ccbv3zs78p69nnh2ls1r4vlfp7g350"; }; dependencies = []; @@ -1163,7 +1160,7 @@ rec { src = fetchgit { url = "git://github.com/tpope/vim-surround"; rev = "2d05440ad23f97a7874ebd9b5de3a0e65d25d85c"; - sha256 = "e5372cbb384e747181e3dfe4a53f042da18bd0d6af7a01184850ecb084ddb350"; + sha256 = "0l5kvn2b1v2h90c02ymgsv88p89d0hzsbr6zwf0p2x2f72xjqdz5"; }; dependencies = []; @@ -1174,7 +1171,7 @@ rec { src = fetchgit { url = "git://github.com/dhruvasagar/vim-table-mode"; rev = "2ab64777a5b81e240810999eb6e7dc65e1de5461"; - sha256 = "64aff63c0aeb696f087cf41021867e1576e4fe8d392d36ec2ca46ddec104a8e1"; + sha256 = "1qd80k0xwvd45kn3cb9ripzf8xhmgs32247lgh46ysgb18ygdbv4"; }; dependencies = []; @@ -1202,22 +1199,22 @@ rec { }; tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2016-01-21"; + name = "tlib-2016-01-26"; src = fetchgit { url = "git://github.com/tomtom/tlib_vim"; - rev = "3232708995e0e61d8e39af40e7a92598e30b84e8"; - sha256 = "525c31d4fdef8c44709b8d0b77d8ef70acf77b2375df40837088aeb0d4368747"; + rev = "9734d8d9e4f7b7b91272123463a62759aef31556"; + sha256 = "19dqzxy1v3wg1n8b93wjds311w3lw70g49svv59sr070s7bwl6z9"; }; dependencies = []; }; undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "undotree-2015-12-16"; + name = "undotree-2016-02-23"; src = fetchgit { url = "git://github.com/mbbill/undotree"; - rev = "39e5cf0fc241c64e920f91d52299b444475d54df"; - sha256 = "767c84917392d1b370ef542c218c0f7bd642e59a7176735bbdd80c8a8f8b04ca"; + rev = "e5a01b2eb94afd256a96cac07ba2981a55dd9665"; + sha256 = "1dga7yhk5gh980w2qlf764i9f2mba4ij9habd86i9mlsh3wdqnrm"; }; dependencies = []; @@ -1228,7 +1225,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-actions"; rev = "a5d20500fb8812958540cf17862bd73e7af64936"; - sha256 = "d2c3eb7a1f29e7233c6fcf3b02d07efebe8252d404ee593419ad399a5fdf6383"; + sha256 = "10v3vxgrlfdd34s5kvh4si985gpygv804fygdwy27rr93xxfphyj"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1239,7 +1236,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-async"; rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c"; - sha256 = "27f941e21a8ca5940bd20914e2a9e3809e554f3ef2c27b3bafb9a153107a5d07"; + sha256 = "01sxg88578drmwxpphpj7r7mb7l0wfly4509s85r99cc3bi43y97"; }; dependencies = ["vim-addon-signs"]; @@ -1250,7 +1247,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-background-cmd"; rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a"; - sha256 = "06223ebaa157e17434cc09dae474324c105374e4e05d85695a05c7d0a2761c20"; + sha256 = "080wfsid1iq5b9lqapg0wis5642c69sf9nh9rhs79qapl6x3w8h6"; }; dependencies = ["vim-addon-mw-utils"]; @@ -1261,7 +1258,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-commenting"; rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b"; - sha256 = "4ad7d5f6669f0a1b4a24c9ce3649c030d7d3fc8588de4d4d6c3269140fbe9b3e"; + sha256 = "0glvpq7i8s9jdi6lvpl8hpyd7mrhq14kdkn94i51n2lzcvvdbmsa"; }; dependencies = []; @@ -1272,7 +1269,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-completion"; rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75"; - sha256 = "969a474749edf7e4443d2540eaf12e891cc0a3f5533e62e081d32408f403a0ea"; + sha256 = "1sm00gs0h96kh7h64gjkyniw07495vqylh157m2f9xzd953lg6ln"; }; dependencies = ["tlib"]; @@ -1283,7 +1280,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-errorformats"; rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28"; - sha256 = "a1260206545d5ae17f2e6b3319f5cf1808b74e792979b1c6667d75974cc53f95"; + sha256 = "159zqm69fxbxcv3b2y99g57bf20qrzsijcvb5rzy2njxah3049m1"; }; dependencies = []; @@ -1294,7 +1291,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor"; rev = "f052e094bdb351829bf72ae3435af9042e09a6e4"; - sha256 = "34658ac99d9a630db9c544b3dfcd2c3df69afa5209e27558cc022b7afc2078ea"; + sha256 = "1skq43y7laq2ric7bqh9abx9mxix5k6xzcs4qnwhsqwskp4qlr9l"; }; dependencies = ["tlib"]; @@ -1305,18 +1302,18 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-local-vimrc"; rev = "6a27f95b35befa70cd0d049329cd0920566c764b"; - sha256 = "f0687e08f380ff085b6fa3e708d1631049571706f55d796e22612aff02e51459"; + sha256 = "0n8lwl1gyak149p7jpgm0qbmfj8hcg8hirx3dxdhizw0yc47ws7h"; }; dependencies = []; }; vim-addon-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-manager-2014-12-03"; + name = "vim-addon-manager-2016-02-07"; src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-manager"; - rev = "fda9d2f4522024aa8bd8b8305e6a71c4a4a28c07"; - sha256 = "a3b5da9bcc01c6f0fb0a5e13a6f9efb58471339ed32c480fde96856bb9e1e7be"; + rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d"; + sha256 = "0rl6sy1gfjsfr1hg2ilhhxppifvjfqn815kh27b3ikcy82rp7sb0"; }; dependencies = []; buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa; @@ -1327,7 +1324,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-mru"; rev = "e41e39bd9d1bf78ccfd8d5e1bc05ae5e1026c2bb"; - sha256 = "15b70f796f28cbd999060fea7f47408fa8a6cb176cd4915b9cc3dc6c53eed960"; + sha256 = "0q6rxr9nrp63kidr3m3c2z5sda4g813pzshg0scxkjr8dxwhzdqm"; }; dependencies = ["vim-addon-other" "vim-addon-mw-utils"]; @@ -1338,7 +1335,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-mw-utils"; rev = "0c5612fa31ee434ba055e21c76f456244b3b5109"; - sha256 = "4e1b6d1b59050f1063e58ef4bee9e9603616ad184cd9ef7466d0ec3d8e22b91c"; + sha256 = "075r4a73vv6hcrsfznac32nicdk0x7lvxx4fwmii03q5b4dns6sf"; }; dependencies = []; @@ -1349,7 +1346,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-nix"; rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1"; - sha256 = "0e326e2c6cb6597ca533a64a845ef9dd946cd249250375ef9775d974ecef37e2"; + sha256 = "1qipxzn79nbmjzppa0r59796r56xz5g88jm66fjpqndndhn6wchf"; }; dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"]; @@ -1360,7 +1357,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-other"; rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b"; - sha256 = "43f027e4b7576031072515c23c2b09f7f2c8bba7ee43a1e2041a4371bd954d1b"; + sha256 = "06sdjnyp2hqs0kia2hzflyxwiwpp14mkrhhm4l3k2q2pnzj2gw23"; }; dependencies = ["vim-addon-actions" "vim-addon-mw-utils"]; @@ -1371,7 +1368,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-php-manual"; rev = "5f9810dd1f6e9f36a45f637ae6260ccff09256ff"; - sha256 = "3942eb6a7191c308beab240e91c99ee4e2c52e2d672503d46f98312e823b86cd"; + sha256 = "1kc67f12wccqdza069b75lpcbqp4kv4r23i4mfz0ihwif5mfnhir"; }; dependencies = []; @@ -1382,7 +1379,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-signs"; rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae"; - sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8"; + sha256 = "1f4gk984760cbkkwl9isqwab63ghny61h18nfh313maqwwr3mh59"; }; dependencies = []; @@ -1393,7 +1390,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-sql"; rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b"; - sha256 = "a1334ae694e0a03229bacc8ba7e08e7223df240244c7378e3f1bd91d74e957c2"; + sha256 = "1hjpx5s1vn8v7y73gis408jdy8vjivhag2ycp8lk5870jkk4lcx1"; }; dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"]; @@ -1404,7 +1401,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-syntax-checker"; rev = "8eb7217e636ca717d4de5cd03cc0180c5b66ae77"; - sha256 = "aef048e664653b5007df71ac24ed34ec55d8938c763d3f80885a122e445a9b3d"; + sha256 = "0gcvb922w4jsi203ygbnij9xhmgc6knj9b3ivw3m0fv5ckk4iw5f"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1415,7 +1412,7 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-toggle-buffer"; rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b"; - sha256 = "672166ecfe0599177afb56b444366f587f77e9659c256ac4e41ee45cb2df6055"; + sha256 = "0mb0vyr5rr0ywk26l9cwcplpfzsqdwv49d2nzdx1g685zvn6c8b7"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1426,18 +1423,18 @@ rec { src = fetchgit { url = "git://github.com/MarcWeber/vim-addon-xdebug"; rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172"; - sha256 = "0a7bf2caf36772c94bd25bfbf46bf628623809c9cfab447ff788eb74149464ef"; + sha256 = "1vv4jha79sw8yxzl9aygr44khqi8yrmz9ysvs95wjwk7yg5g4yqa"; }; dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"]; }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2016-01-22"; + name = "vim-airline-2016-02-25"; src = fetchgit { url = "git://github.com/bling/vim-airline"; - rev = "fb255b570de5582af13563e243fba743dfd0edc9"; - sha256 = "2dbd61c157ba58213bdccb595bfa13951f4e1db8fa4fbce8ddf94aa3a87c938c"; + rev = "5cf193fa28d0c6f0f93fd1b481ba4845eac9a1ac"; + sha256 = "1dgh9xs4rhziayl18nrknvgjnx8ll5pw4xcy43wrcr7icnmddgrw"; }; dependencies = []; @@ -1448,40 +1445,40 @@ rec { src = fetchgit { url = "git://github.com/kchmck/vim-coffee-script"; rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42"; - sha256 = "d7162b2546c9949c96811d7a72c17ae2db9871697ee65ed0b1a8f0287d278690"; + sha256 = "14464xyjiw58n785xrkyd5qrinz2gb0p4yhxh6b9r5698qjjn5np"; }; dependencies = []; }; vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easy-align-2015-10-09"; + name = "vim-easy-align-2016-02-05"; src = fetchgit { url = "git://github.com/junegunn/vim-easy-align"; - rev = "7cb559eb70600bbd81afbb2d7f60d98334f631e2"; - sha256 = "2ea40064f64a8a4f0f1e405ea5db5a3e79424cdec44d033c3d65cc40a2a19b18"; + rev = "dd98d0a8957b7d43ac84be3318bbc950bc9ed467"; + sha256 = "1hdfcg07p4xvd5aa7hqmjg2zf6cmlrp4maid7qc4l0xcfx6wx4j1"; }; dependencies = []; }; vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gista-2016-01-23"; + name = "vim-gista-2016-02-22"; src = fetchgit { url = "git://github.com/lambdalisue/vim-gista"; - rev = "2021858d9cada2289a866387ba728dd025093aa1"; - sha256 = "1e3e925cdb6a9296f20c2261efb96eac0792e12c3b7a4f6a1637ac0a96255eb4"; + rev = "d4da4b6f53a93ebadc7c1dcc4e82836f96c706c9"; + sha256 = "19786fr2m44krq7l62j3h39ayl6a04474s2mkbv8szkg8jb4syzq"; }; dependencies = []; }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2016-01-19"; + name = "vim-gitgutter-2016-02-21"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "4510e9b33506b4b09168c99934c42ee1ce89bba2"; - sha256 = "77d97922e8970fcdb037272a53c2ab4209d804aced7ae654f6aeb4501705bcd8"; + rev = "0af9f2a3ab029054d279f69364351e95e107008a"; + sha256 = "0kqj50sha1i1jsm9mirx6jn7kpdm0zl60n0zc3rh8z1zsjic0mqr"; }; dependencies = []; @@ -1492,7 +1489,7 @@ rec { src = fetchgit { url = "git://github.com/noc7c9/vim-iced-coffee-script"; rev = "e42e0775fa4b1f8840c55cd36ac3d1cedbc1dea2"; - sha256 = "c7859591975a51a1736f99a433d7ca3e7638b417340a0472a63995e16d8ece93"; + sha256 = "14yfirny359rlrr082il2ys3hxiyrbbk794rdxrs2lasjy8rb1f7"; }; dependencies = []; @@ -1503,62 +1500,62 @@ rec { src = fetchgit { url = "git://github.com/xuhdev/vim-latex-live-preview"; rev = "7695dd4ebddb735bec632d468e2202d070029cb8"; - sha256 = "3551e2a84a98b07f5edce6e35bad5cd2a78da1ef60dd94202c623e238b05bfc8"; + sha256 = "1j5z0n5j6gk25hh99pb0xyhqv9yjbjnmpqz6vig7zc4q9alf4l9m"; }; dependencies = []; }; vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-multiple-cursors-2016-01-14"; + name = "vim-multiple-cursors-2016-01-28"; src = fetchgit { url = "git://github.com/terryma/vim-multiple-cursors"; - rev = "e543fc86f0c6a8981c9679beceb06482778c3531"; - sha256 = "d10506c2196b32d389027a359f382d41c7c972f615a6745b9ee41c17741e062a"; + rev = "47c9e3fb11a202a9a2fa1d591ec990a41e4221c4"; + sha256 = "006wj5jikdkz9zilhy9q55hr50v6x34z27jpn0dv9shgaj8xf62s"; }; dependencies = []; }; vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signature-2015-11-11"; + name = "vim-signature-2016-02-22"; src = fetchgit { url = "git://github.com/kshenoy/vim-signature"; - rev = "7cabfb5a3d3b45e739eb1d7e198782fb4a5a23da"; - sha256 = "18a8ab7ba9e74d2f65c64c0c316ef824e48f21196520dfd292522c1eb8c87cb3"; + rev = "8b7b40041f938092d3cb5c5db33fec54c41a1854"; + sha256 = "0qqc785r84g1ckxyds0zmf881wslsfa1cmpcx35jwcyjwdaya0a6"; }; dependencies = []; }; vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signify-2016-01-15"; + name = "vim-signify-2016-02-25"; src = fetchgit { url = "git://github.com/mhinz/vim-signify"; - rev = "4f69c11c7cd7b75bb23cf7565f278af918816546"; - sha256 = "816f7472f04043139f216b91fc36612a9d73cddd86ca6c1cf86a7d48ca2d20e3"; + rev = "051dc1a853cb86231497c58a5c06dc82a17837ca"; + sha256 = "0iy03qxv9m301pqa495ydacx072pa1jwdqgk50dpd1z6711cdh44"; }; dependencies = []; }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2016-01-17"; + name = "vim-snippets-2016-02-19"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "0fc7fd1181f33b26c015d0f306d149b756f9d679"; - sha256 = "d67ccdcfa42e8e713e7a5bee34b5b150fb955a81fdddfe9c956a1f652f1235b6"; + rev = "732978ab1622c8d6fdf0384cd3b524e3fe7ba5f3"; + sha256 = "0i7jr48vwazdy3bm9y2wa0y5ay1rhp91dpi5kqgs06na85qvhsiz"; }; dependencies = []; }; vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-webdevicons-2015-12-21"; + name = "vim-webdevicons-2016-02-08"; src = fetchgit { url = "git://github.com/ryanoasis/vim-devicons"; - rev = "8ac3e02537d32648c3f9738c711639f8b940460c"; - sha256 = "9d4ee89a551ab9e1ec3938e1eba1fd138bbee975ce3b247b5f56eb2613daefbc"; + rev = "d0111ec77c3d7e3e3072e576bb26055643e64a2f"; + sha256 = "1lhycam07licxkf8isl641mwd64i2x8kjqqvzxndhr26incs9pv2"; }; dependencies = []; @@ -1569,7 +1566,7 @@ rec { src = fetchgit { url = "git://github.com/dag/vim2hs"; rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664"; - sha256 = "485fc58595bb4e50f2239bec5a4cbb0d8f5662aa3f744e42c110cd1d66b7e5b0"; + sha256 = "1c75nxk1vk8hq514wx1zm9i5d3qdpd65mv4v4gr50kmvjn2waps8"; }; dependencies = []; @@ -1580,7 +1577,7 @@ rec { src = fetchgit { url = "git://github.com/vimwiki/vimwiki"; rev = "3bd3d9b86036b21aecd69f0a1e572643d626c280"; - sha256 = "7a10ae3881af0d17a041ffd766680ceedf706411abbbedccf64e9e777fabd5c8"; + sha256 = "1j6mmdzpg7jfyv6fvfxb25j71pzf1il6dmzz86h1f3dgh4waw43s"; }; dependencies = []; @@ -1591,18 +1588,18 @@ rec { src = fetchgit { url = "git://github.com/tpope/vim-vinegar"; rev = "75fc3824bc09053f22735d6726c5cfd614c15642"; - sha256 = "19fc1487169f1d8941ffddda1ffadd842ef4a773de2d32536eae52cf494154a6"; + sha256 = "19jl854wylmfdr9k4bfyffkz8bl4vpx1znnxzx0qj7cz2s3i9z0r"; }; dependencies = []; }; vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vundle-2015-11-04"; + name = "vundle-2016-02-21"; src = fetchgit { url = "git://github.com/gmarik/vundle"; - rev = "5f70ae6025e951f0154e3940d123138adffa4c88"; - sha256 = "c063cabca479449a3330c14e879536473d4fdb0ca4b384c9c8be18c198a929fa"; + rev = "8a054139a3623739321303cf06c09b0f9874dc0d"; + sha256 = "0hhjnp9i0glfa5fdfg9n9286zdfvfmdx1ln9ayfr8kmm9nwy24gp"; }; dependencies = []; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index a4dca009cdd..2feb3049c6f 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -54,7 +54,7 @@ "github:nbouscal/vim-stylish-haskell" "github:osyo-manga/shabadou.vim" "github:osyo-manga/vim-watchdogs" -"github:phildawes/racer" +"github:racer-rust/vim-racer" "github:shougo/neocomplete.vim" "github:shougo/neosnippet-snippets" "github:shougo/neosnippet.vim" diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/racer b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/racer deleted file mode 100644 index 57000b87064..00000000000 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/racer +++ /dev/null @@ -1,4 +0,0 @@ - buildPhase = '' - find . -type f -not -name 'racer.vim' -exec rm -rf {} \; - rm -rf editors images src - ''; From e695d73d8f18038ff8b2bb082ef15304e63a68e3 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 25 Feb 2016 12:22:44 +0300 Subject: [PATCH 198/291] vimPlugins.vim-autoformat: init at 2016-02-24 --- pkgs/misc/vim-plugins/default.nix | 11 +++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 7 ++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 6c9f8d665e1..5e6e73419d2 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -343,6 +343,17 @@ rec { }; + vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-autoformat-2016-02-24"; + src = fetchgit { + url = "git://github.com/Chiel92/vim-autoformat"; + rev = "a2f9b88bcd66fe47a44ae8b5e1002c2d8e6f4ad4"; + sha256 = "1fahm3dzcmpr7f9rrhzhyrj6fz95fblxal57gajcc3g136bizbnj"; + }; + dependencies = []; + + }; + vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-css-color-2015-10-03"; src = fetchgit { diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 2feb3049c6f..87420a7a4ca 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -1,7 +1,6 @@ "CSApprox" "CheckAttach" "Gist" -"github:sjl/gundo.vim" "Hoogle" "Solarized" "Supertab" @@ -20,6 +19,8 @@ "extradite" "fugitive" "ghcmod" +"github:Chiel92/vim-autoformat" +"github:LnL7/vim-nix" "github:ap/vim-css-color" "github:benekastah/neomake" "github:bitc/vim-hdevtools" @@ -46,7 +47,6 @@ "github:latex-box-team/latex-box" "github:lepture/vim-jinja" "github:lervag/vimtex" -"github:LnL7/vim-nix" "github:lokaltog/vim-easymotion" "github:lyokha/vim-xkbswitch" "github:mhinz/vim-startify" @@ -61,10 +61,11 @@ "github:shougo/unite.vim" "github:shougo/vimproc.vim" "github:shougo/vimshell.vim" +"github:sjl/gundo.vim" "github:takac/vim-hardtime" "github:thinca/vim-quickrun" -"github:tpope/vim-eunuch" "github:tomasr/molokai" +"github:tpope/vim-eunuch" "github:travitch/hasksyn" "github:twinside/vim-haskellconceal" "github:valloric/youcompleteme" From 4304419443532ad8da4edd9ebae58f6b47123ce4 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Thu, 25 Feb 2016 10:25:31 +0100 Subject: [PATCH 199/291] galen init at 2.2.1 --- pkgs/development/tools/galen/default.nix | 35 ++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pkgs/development/tools/galen/default.nix diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix new file mode 100644 index 00000000000..169c8fdd68a --- /dev/null +++ b/pkgs/development/tools/galen/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, jdk, unzip }: + +stdenv.mkDerivation rec { + pname = "galen"; + version = "2.2.1"; + name = "${pname}-${version}"; + + inherit jdk; + + src = fetchurl { + url = "https://github.com/galenframework/galen/releases/download/galen-2.2.1/galen-bin-${version}.zip"; + sha256 = "0zwrh3bxcgkwip6z9lvy3hn53kfr99cdij64c57ff8d95xilclhb"; + }; + + buildInputs = [ unzip ]; + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; + + buildPhase = '' + mkdir -p $out/bin + ''; + + installPhase = '' + cat galen | sed -e "s,java,$jdk/bin/java," > $out/bin/galen + chmod +x $out/bin/galen + cp galen.jar $out/bin + ''; + + meta = with stdenv.lib; { + homepage = http://galenframework.com; + description = "Automated layout testing for websites"; + license = licenses.asl20; + maintainers = [ ]; + platforms = platforms.linux ++ platforms.darwin; + }; +} From e054644c2f63ad254a4a107110aaed14fc184289 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 25 Feb 2016 12:33:17 +0300 Subject: [PATCH 200/291] rustRegistry: 2016-02-02 -> 2016-02-25 --- pkgs/top-level/rust-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index fc3e8fcb98c..765eb43e845 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-02-15"; - rev = "af2c6a768083a66a898a07f5f3b7ec62871dbc3c"; + version = "2016-02-25"; + rev = "a43392dd266a3e5c982f6bee3451187fc35ebfa8"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "f2da91b1a11146eed04c4b4ad7599f1bd3dc2bca4e011b3377ba16365b3124aa"; + sha256 = "45ad457fb1d13f1c0d0b09d36d5ea3e44baffc7884b82dfcbdff5ae7ab350bbd"; }; in From 03c9a7727530bef878a87034a1d3d2f13bee2175 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Thu, 25 Feb 2016 11:29:03 +0100 Subject: [PATCH 201/291] helm: 2015-09-11 -> 0.6.1 --- pkgs/applications/audio/helm/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/audio/helm/default.nix b/pkgs/applications/audio/helm/default.nix index 7be510a6418..b4cf0288672 100644 --- a/pkgs/applications/audio/helm/default.nix +++ b/pkgs/applications/audio/helm/default.nix @@ -1,14 +1,15 @@ -{ stdenv, fetchgit, xorg, freetype, alsaLib, libjack2 -, lv2, pkgconfig, mesa }: + { stdenv, fetchurl, xorg, freetype, alsaLib, libjack2 + , lv2, pkgconfig, mesa }: -stdenv.mkDerivation rec { - name = "helm-git-2015-09-11"; + stdenv.mkDerivation rec { + version = "0.6.1"; + name = "helm-${version}"; + + src = fetchurl { + url = "https://github.com/mtytel/helm/archive/v${version}.tar.gz"; + sha256 = "18d7zx6r7har47zj6x1f2z91x796mxnix7w3x1yilmqnyqc56r3w"; + }; - src = fetchgit { - url = "https://github.com/mtytel/helm.git"; - rev = "ad798d4a0a2e7db52e1a7451176ff198a393cdb4"; - sha256 = "0ic4xjikq7s2p53507ykv89844j6sqcd9mh3y59a6wnslr5wq1cw"; - }; buildInputs = [ xorg.libX11 xorg.libXcomposite xorg.libXcursor xorg.libXext From 26c2f7113192cfd14a00dced980bf24e832f0af8 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 22 Feb 2016 14:08:07 -0600 Subject: [PATCH 202/291] rustUnstable.rustc: 2015-08-09 -> 2016-02-22 --- pkgs/development/compilers/rustc/head.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index 4d203966959..66730cf855a 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -2,11 +2,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "2016-02-01"; + shortVersion = "2016-02-22"; isRelease = false; forceBundledLLVM = true; - srcRev = "094c5b0d6"; - srcSha = "0908xzxb4q8vqwmzi5c2vzrhfsrw7d18r4n7mq3ir5671y9cqpvz"; + srcRev = "d1f422ec280b881b8236c5d173103bc799e1590e"; + srcSha = "b0753045ae438c0869d37f429fe84451dcacc4b2ab9413d34bf29fde94fde462"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. From 34023d867dae6bbb60b867de605fb61853679249 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 24 Feb 2016 23:27:02 +0300 Subject: [PATCH 203/291] fetchcargo: set CA bundle path --- pkgs/build-support/rust/fetchcargo.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/rust/fetchcargo.nix b/pkgs/build-support/rust/fetchcargo.nix index 7910887ba64..a77540c396f 100644 --- a/pkgs/build-support/rust/fetchcargo.nix +++ b/pkgs/build-support/rust/fetchcargo.nix @@ -9,6 +9,7 @@ stdenv.mkDerivation { phases = "unpackPhase installPhase"; installPhase = '' + export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt bash ${./fetch-cargo-deps} . "$out" ''; From 39609a0c9414b398330e42f872e7358e30e133dd Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Feb 2016 13:53:03 +0300 Subject: [PATCH 204/291] stdenv: set SSL_CERT_FILE only if it isn't already --- pkgs/stdenv/generic/setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index 8081b69bffd..b49846fa050 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -384,7 +384,9 @@ paxmark() { true; } # Prevent OpenSSL-based applications from using certificates in # /etc/ssl. -export SSL_CERT_FILE=/no-cert-file.crt +if [ -z "$SSL_CERT_FILE" ]; then + export SSL_CERT_FILE=/no-cert-file.crt +fi ###################################################################### From 93aea6eccd95bd5048030e02f8a06cd3db4a2def Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Thu, 25 Feb 2016 11:25:06 +0100 Subject: [PATCH 205/291] sauce-connect: 4.3.6 -> 4.3.13 --- pkgs/development/tools/sauce-connect/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/sauce-connect/default.nix b/pkgs/development/tools/sauce-connect/default.nix index 7f925da376b..cc904153baf 100644 --- a/pkgs/development/tools/sauce-connect/default.nix +++ b/pkgs/development/tools/sauce-connect/default.nix @@ -1,21 +1,27 @@ -{ stdenv, lib, fetchurl, zlib }: +{ stdenv, lib, fetchurl, zlib, unzip }: with lib; stdenv.mkDerivation rec { name = "sauce-connect-${version}"; - version = "4.3.6"; + version = "4.3.13"; src = fetchurl ( if stdenv.system == "x86_64-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux.tar.gz"; sha1 = "0d7d2dc12766ac137e62a3e4dad3025b590f9782"; - } else { + } else if stdenv.system == "i686-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux32.tar.gz"; sha1 = "ee2c3002eae3b29df801a2ac1db77bb5f1c97bcc"; + } else { + url = "https://saucelabs.com/downloads/sc-${version}-osx.zip"; + sha1 = "ihr4ynnyi464pafgqyl5xkhfi13yi76j"; } ); + buildInputs = [ unzip ]; + phases = "unpackPhase installPhase" + (if stdenv.system == "x86_64-darwin" then "" else "patchPhase"); + patchPhase = '' patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ @@ -35,6 +41,6 @@ stdenv.mkDerivation rec { license = licenses.unfree; homepage = https://docs.saucelabs.com/reference/sauce-connect/; maintainers = with maintainers; [offline]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; } From 4f74a4aacb29b5d4d7fee4cf71e79b0fae681624 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Feb 2016 14:05:14 +0300 Subject: [PATCH 206/291] fetch-cargo-deps: factor into fetchCargoDeps function --- pkgs/build-support/rust/fetch-cargo-deps | 284 +++++++++++------------ pkgs/build-support/rust/fetchcargo.nix | 5 +- 2 files changed, 143 insertions(+), 146 deletions(-) diff --git a/pkgs/build-support/rust/fetch-cargo-deps b/pkgs/build-support/rust/fetch-cargo-deps index 5074e26848e..4fbc53d1039 100755 --- a/pkgs/build-support/rust/fetch-cargo-deps +++ b/pkgs/build-support/rust/fetch-cargo-deps @@ -1,183 +1,177 @@ -source $stdenv/setup +fetchCargoDeps() { + src=$(realpath $1) + out=$(realpath $2) -set -euo pipefail + echo "Fetching $src to $out" -src=$(realpath $1) -out=$(realpath $2) + mkdir $out -echo "Fetching $src to $out" + # Configure cargo to fetch from a local copy of the crates.io registry -mkdir $out + echo "Using rust registry from $rustRegistry" -# Configure cargo to fetch from a local copy of the crates.io registry - -echo "Using rust registry from $rustRegistry" - -cat < $out/config + cat < $out/config [registry] index = "file://$rustRegistry" EOF -export CARGO_HOME=$out -cd $src + export CARGO_HOME=$out + cd $src -if [[ ! -f Cargo.lock ]]; then - echo - echo "ERROR: The Cargo.lock file doesn't exist" - echo - echo "Cargo.lock is needed to make sure that depsSha256 doesn't change" - echo "when the registry is updated." - echo + if [[ ! -f Cargo.lock ]]; then + echo + echo "ERROR: The Cargo.lock file doesn't exist" + echo + echo "Cargo.lock is needed to make sure that depsSha256 doesn't change" + echo "when the registry is updated." + echo - exit 1 -fi + exit 1 + fi -# We need to do the following string replacement so that 'cargo fetch' -# doesn't ignore the versions specified in Cargo.lock -set +u -substituteInPlace Cargo.lock \ - --replace "registry+https://github.com/rust-lang/crates.io-index" \ - "registry+file://$rustRegistry" -set -u + # We need to do the following string replacement so that 'cargo fetch' + # doesn't ignore the versions specified in Cargo.lock + substituteInPlace Cargo.lock \ + --replace "registry+https://github.com/rust-lang/crates.io-index" \ + "registry+file://$rustRegistry" -# Do any possible 'cargo update -p --precise ' ad-hoc updates -eval "$cargoUpdateHook" + # Do any possible 'cargo update -p --precise ' ad-hoc updates + eval "$cargoUpdateHook" -# Do the fetch -cargo fetch --verbose + # Do the fetch + cargo fetch --verbose -# Now that we have fetched everything, let's make the output deterministic + # Now that we have fetched everything, let's make the output deterministic -# Cargo uses the following directory structure for fetched data, where -# $indexHash is a hash of the registry index URL: -# -# -# /config: -# -# Cargo config file. We'll delete this because it's not deterministic, -# and instead recreate it just before running 'cargo build'. -# -# /registry/cache/$indexHash/: -# -# This is where tarballs of registry package dependencies are kept -# We'll need to keep this, but make sure $indexHash is a fixed name. -# -# /registry/index/$indexHash/: -# -# A copy of the registry index is kept here. We can delete this, and -# instead, just before running 'cargo build', we'll symlink this -# directory to our static copy of the registry in the Nix store. -# -# /registry/src/$indexHash/{pkgName-pkgVersion}/: -# -# Here cargo keeps extracted sources of the cached tarballs. -# We'll just delete this because cargo will re-populate them from the -# tarballs. -# -# /git/db/{domain-hash}/: -# -# Here cargo keeps the `.git` directories of git dependencies. -# We'll need to keep these, but make them deterministic. -# -# /git/checkouts/{domain-hash}/{branchName}/: -# -# Here cargo keeps checked-out sources of the git dependencies. -# We can delete this, because cargo will re-populate them from the above -# `.git` directories. -# -# Let's start + # Cargo uses the following directory structure for fetched data, where + # $indexHash is a hash of the registry index URL: + # + # + # /config: + # + # Cargo config file. We'll delete this because it's not deterministic, + # and instead recreate it just before running 'cargo build'. + # + # /registry/cache/$indexHash/: + # + # This is where tarballs of registry package dependencies are kept + # We'll need to keep this, but make sure $indexHash is a fixed name. + # + # /registry/index/$indexHash/: + # + # A copy of the registry index is kept here. We can delete this, and + # instead, just before running 'cargo build', we'll symlink this + # directory to our static copy of the registry in the Nix store. + # + # /registry/src/$indexHash/{pkgName-pkgVersion}/: + # + # Here cargo keeps extracted sources of the cached tarballs. + # We'll just delete this because cargo will re-populate them from the + # tarballs. + # + # /git/db/{domain-hash}/: + # + # Here cargo keeps the `.git` directories of git dependencies. + # We'll need to keep these, but make them deterministic. + # + # /git/checkouts/{domain-hash}/{branchName}/: + # + # Here cargo keeps checked-out sources of the git dependencies. + # We can delete this, because cargo will re-populate them from the above + # `.git` directories. + # + # Let's start -# Remove cargo config file, which points to the ever-changing registry -rm $out/config + # Remove cargo config file, which points to the ever-changing registry + rm $out/config -# Save the Cargo.lock file into the output, so that we don't have to do another -# 'cargo update' during the build (which would try to access the network) for -# any ad-hoc package updates (through $cargoUpdateHook). -# -# We need to replace the rustRegistry URL with something deterministic. -# Since the URL won't actually be accessed anymore, it's fine to use /dev/null. + # Save the Cargo.lock file into the output, so that we don't have to do another + # 'cargo update' during the build (which would try to access the network) for + # any ad-hoc package updates (through $cargoUpdateHook). + # + # We need to replace the rustRegistry URL with something deterministic. + # Since the URL won't actually be accessed anymore, it's fine to use /dev/null. -set +u -substituteInPlace Cargo.lock \ - --replace "registry+file://$rustRegistry" \ - "registry+file:///dev/null" -set -u -mv Cargo.lock $out/ + substituteInPlace Cargo.lock \ + --replace "registry+file://$rustRegistry" \ + "registry+file:///dev/null" + mv Cargo.lock $out/ -# Let's replace $indexHash with something more deterministic -mv $out/registry/cache/* $out/registry/cache/HASH + # Let's replace $indexHash with something more deterministic + mv $out/registry/cache/* $out/registry/cache/HASH -# The registry index changes all the time, so it's not deterministic -# We'll symlink it before running 'cargo build' -rm -rf $out/registry/index/* + # The registry index changes all the time, so it's not deterministic + # We'll symlink it before running 'cargo build' + rm -rf $out/registry/index/* -# Make git DBs deterministic -# TODO: test with git submodules -[[ ! -d $out/git/checkouts ]] || (cd $out/git/checkouts && for name in *; do - revs="" - cd "$out/git/checkouts/$name" - while read dir; do - # extract substring: [dir = "./xxx/yyy/.git"] => [branch = "xxx/yyy"] - branch="${dir:2:$((${#dir}-7))}" + # Make git DBs deterministic + # TODO: test with git submodules + [[ ! -d $out/git/checkouts ]] || (cd $out/git/checkouts && for name in *; do + revs="" + cd "$out/git/checkouts/$name" + while read dir; do + # extract substring: [dir = "./xxx/yyy/.git"] => [branch = "xxx/yyy"] + branch="${dir:2:$((${#dir}-7))}" - cd "$out/git/checkouts/$name/$branch" - rev="$(git rev-parse HEAD)" - revs="$revs $rev" - done < <(find . -type d -name .git -print) + cd "$out/git/checkouts/$name/$branch" + rev="$(git rev-parse HEAD)" + revs="$revs $rev" + done < <(find . -type d -name .git -print) - echo "List of revs to keep for git db $name: $revs" + echo "List of revs to keep for git db $name: $revs" - ( - # The following code was adapted from nix-prefetch-git + ( + # The following code was adapted from nix-prefetch-git - cd "$out/git/db/$name" + cd "$out/git/db/$name" - export GIT_DIR=. + export GIT_DIR=. - # Remove all remote branches - git branch -r | while read branch; do - git branch -rD "$branch" >&2 - done + # Remove all remote branches + git branch -r | while read branch; do + git branch -rD "$branch" >&2 + done - # Remove all tags - git tag | while read tag; do - git tag -d "$tag" >&2 - done + # Remove all tags + git tag | while read tag; do + git tag -d "$tag" >&2 + done - # Remove all local branches - branchrefs=() - eval "$(git for-each-ref --shell --format='branchrefs+=(%(refname))' refs/heads/)" + # Remove all local branches + branchrefs=() + eval "$(git for-each-ref --shell --format='branchrefs+=(%(refname))' refs/heads/)" - for branchref in "${branchrefs[@]}"; do - git update-ref -d "$branchref" >&2 - done + for branchref in "${branchrefs[@]}"; do + git update-ref -d "$branchref" >&2 + done - # Create ad-hoc branches for the revs we need - echo "$revs" | while read rev; do - echo "Creating git branch b_$rev $rev" - git branch b_$rev $rev - done + # Create ad-hoc branches for the revs we need + echo "$revs" | while read rev; do + echo "Creating git branch b_$rev $rev" + git branch b_$rev $rev + done - # Remove files that have timestamps or otherwise have non-deterministic - # properties. - rm -rf logs/ hooks/ index FETCH_HEAD ORIG_HEAD refs/remotes/origin/HEAD config + # Remove files that have timestamps or otherwise have non-deterministic + # properties. + rm -rf logs/ hooks/ index FETCH_HEAD ORIG_HEAD refs/remotes/origin/HEAD config - # Do a full repack. Must run single-threaded, or else we lose determinism. - git config pack.threads 1 - git repack -A -d -f - rm -f config + # Do a full repack. Must run single-threaded, or else we lose determinism. + git config pack.threads 1 + git repack -A -d -f + rm -f config - # Garbage collect unreferenced objects. - git gc --prune=all - ) -done) + # Garbage collect unreferenced objects. + git gc --prune=all + ) + done) -# Remove unneeded outputs -[[ ! -d $out/registry/src ]] || rm -rf $out/registry/src -[[ ! -d $out/git/checkouts ]] || rm -rf $out/git/checkouts + # Remove unneeded outputs + [[ ! -d $out/registry/src ]] || rm -rf $out/registry/src + [[ ! -d $out/git/checkouts ]] || rm -rf $out/git/checkouts -# XXX: provide some debugging output to see find out why we are seeing -# sporadic hash mismatches -find $out ! -type f -find $out -type f -exec sha256sum {} + + # XXX: provide some debugging output to see find out why we are seeing + # sporadic hash mismatches + find $out ! -type f + find $out -type f -exec sha256sum {} + +} diff --git a/pkgs/build-support/rust/fetchcargo.nix b/pkgs/build-support/rust/fetchcargo.nix index a77540c396f..51842000262 100644 --- a/pkgs/build-support/rust/fetchcargo.nix +++ b/pkgs/build-support/rust/fetchcargo.nix @@ -9,8 +9,11 @@ stdenv.mkDerivation { phases = "unpackPhase installPhase"; installPhase = '' + source ${./fetch-cargo-deps} + export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt - bash ${./fetch-cargo-deps} . "$out" + + fetchCargoDeps . "$out" ''; outputHashAlgo = "sha256"; From 770f66b2ce50e3020139d9662acaa4da0411a14a Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 21 Jan 2016 09:51:21 +0100 Subject: [PATCH 207/291] nimble: init at 0.7.2 --- pkgs/development/tools/nimble/default.nix | 43 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/development/tools/nimble/default.nix diff --git a/pkgs/development/tools/nimble/default.nix b/pkgs/development/tools/nimble/default.nix new file mode 100644 index 00000000000..10a19d9e096 --- /dev/null +++ b/pkgs/development/tools/nimble/default.nix @@ -0,0 +1,43 @@ +{ stdenv, fetchFromGitHub, nim }: + +let + srcs = { + nimble = fetchFromGitHub { + owner = "nim-lang"; + repo = "nimble"; + rev = "v0.7.2"; + sha256 = "0j9b519cv91xwn6k0alynakh7grbq4m6yy5bdwdrqmc7lag35r0i"; + }; + nim = fetchFromGitHub { + owner = "nim-lang"; + repo = "nim"; + rev = "v0.13.0"; + sha256 = "14grhkwdva4wmvihm1413ly86sf0qk96bd473pvsbgkp46cg8rii"; + }; + }; +in +stdenv.mkDerivation rec { + name = "nimble-${version}"; + version = "0.7.2"; + + src = srcs.nimble; + + buildInputs = [ nim ]; + + postUnpack = '' + mkdir -p $sourceRoot/vendor + ln -s ${srcs.nim} $sourceRoot/vendor/nim + ''; + buildPhase = '' + nim c src/nimble + ''; + installPhase = "installBin src/nimble"; + + meta = with stdenv.lib; { + description = "Package manager for the Nim programming language"; + homepage = https://github.com/nim-lang/nimble; + license = licenses.bsd2; + maintainers = with maintainers; [ kamilchm ]; + platforms = platforms.linux ++ platforms.darwin; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8390ee8fb5..18cfb42324b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4548,6 +4548,7 @@ let mozart = mozart-binary; nim = callPackage ../development/compilers/nim { }; + nimble = callPackage ../development/tools/nimble { }; neko = callPackage ../development/compilers/neko { }; From a4902ff1fa8ef4218168f8191104b9f5fe49dd00 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Feb 2016 14:21:46 +0300 Subject: [PATCH 208/291] rustUnstable.cargo: 2016-01-10 -> 2016-02-25 --- pkgs/development/tools/build-managers/cargo/head.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/build-managers/cargo/head.nix b/pkgs/development/tools/build-managers/cargo/head.nix index d5a2dce6682..298177296a6 100644 --- a/pkgs/development/tools/build-managers/cargo/head.nix +++ b/pkgs/development/tools/build-managers/cargo/head.nix @@ -5,7 +5,7 @@ with rustPlatform; with ((import ./common.nix) { inherit stdenv rustc; - version = "2016-01-10"; + version = "2016-02-25"; }); buildRustPackage rec { @@ -14,11 +14,11 @@ buildRustPackage rec { # Needs to use fetchgit instead of fetchFromGitHub to fetch submodules src = fetchgit { url = "git://github.com/rust-lang/cargo"; - rev = "ca373452de159491354cf38279dbc19308c91e72"; - sha256 = "0fx88b3ndvzhfwq159xavs0z5c7jww231kd65cbzyih9g0ab9x65"; + rev = "e7212896dc1b182493a0252a2a126db8be067153"; + sha256 = "1qbic7gp7cpihi40kfv3kagja8zsngica8sq9jcm9czb6ba44dsa"; }; - depsSha256 = "0csagk2dnwg5z0vbxilz1kzcygd4llw7s81ka0xn1g05x30jqrnn"; + depsSha256 = "1xfpj1233p4314j6jmip0jjl5m3kj2wbac1ll3yvh7383zb83i1s"; buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; From a68eae786646e3a66b204d6c2f63a3793a2fee49 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 25 Feb 2016 13:05:52 +0300 Subject: [PATCH 209/291] rustfmt: 2015-12-23 -> 2016-02-15 --- pkgs/development/tools/rust/rustfmt/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index f67b1f00a0f..28c88d6c15a 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -3,15 +3,15 @@ with rustPlatform; buildRustPackage rec { - name = "rustfmt-git-2015-12-23"; + name = "rustfmt-git-2016-02-15"; src = fetchFromGitHub { owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "c0b7de7c521dc65b2ad2b5a3c81fb56030f4af22"; - sha256 = "1axnp8w26c3dwlx7bby3qi6385n301rlk1ndh5yaz7vkbpn4w9km"; + rev = "65bc5c242de86f0651b34fd913ca338a880696e8"; + sha256 = "02rdim0y5zg1r2zkfy6kj53idlbdybf3ckardbjsvdna5idc1hpz"; }; - depsSha256 = "1s2as7qc7jbksc16gj5cxxm52zw8h4nfgka66dmwwjlv9679wj9f"; + depsSha256 = "1297vy5sgiq4xqdm27pa8f99qiwrl15hb2r1dydzgk7n4iqyir6c"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; From d09c7986de7d0d4ece340838b9e40eb496486b9f Mon Sep 17 00:00:00 2001 From: Michael Raitza Date: Wed, 24 Feb 2016 21:41:02 +0000 Subject: [PATCH 210/291] config.security.oath: new module Add a module to make options to pam_oath module configurable. These are: - enable - enable the OATH pam module - window - number of OTPs to check - digits - length of the OTP (adds support for two-factor auth) - usersFile - filename to store OATH credentials in --- nixos/modules/module-list.nix | 1 + nixos/modules/security/oath.nix | 50 +++++++++++++++++++++++++++++++++ nixos/modules/security/pam.nix | 17 +++-------- 3 files changed, 55 insertions(+), 13 deletions(-) create mode 100644 nixos/modules/security/oath.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index c2bcc361c44..f41e17189a4 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -93,6 +93,7 @@ ./security/ca.nix ./security/duosec.nix ./security/grsecurity.nix + ./security/oath.nix ./security/pam.nix ./security/pam_usb.nix ./security/pam_mount.nix diff --git a/nixos/modules/security/oath.nix b/nixos/modules/security/oath.nix new file mode 100644 index 00000000000..20f3e2dd9f8 --- /dev/null +++ b/nixos/modules/security/oath.nix @@ -0,0 +1,50 @@ +# This module provides configuration for the OATH PAM modules. + +{ config, lib, pkgs, ... }: + +with lib; + +{ + options = { + + security.pam.oath = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Enable the OATH (one-time password) PAM module. + ''; + }; + + digits = mkOption { + type = types.enum [ 6 7 8 ]; + default = 6; + description = '' + Specify the length of the one-time password in number of + digits. + ''; + }; + + window = mkOption { + type = types.int; + default = 5; + description = '' + Specify the number of one-time passwords to check in order + to accommodate for situations where the system and the + client are slightly out of sync (iteration for HOTP or time + steps for TOTP). + ''; + }; + + usersFile = mkOption { + type = types.path; + default = "/etc/users.oath"; + description = '' + Set the path to file where the user's credentials are + stored. This file must not be world readable! + ''; + }; + }; + + }; +} diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix index 2ee8a803d2f..021c561af75 100644 --- a/nixos/modules/security/pam.nix +++ b/nixos/modules/security/pam.nix @@ -75,7 +75,7 @@ let }; oathAuth = mkOption { - default = config.security.pam.enableOATH; + default = config.security.pam.oath.enable; type = types.bool; description = '' If set, the OATH Toolkit will be used. @@ -259,8 +259,8 @@ let "auth sufficient pam_unix.so ${optionalString cfg.allowNullPassword "nullok"} likeauth try_first_pass"} ${optionalString cfg.otpwAuth "auth sufficient ${pkgs.otpw}/lib/security/pam_otpw.so"} - ${optionalString cfg.oathAuth - "auth sufficient ${pkgs.oathToolkit}/lib/security/pam_oath.so window=5 usersfile=/etc/users.oath"} + ${let oath = config.security.pam.oath; in optionalString cfg.oathAuth + "auth sufficient ${pkgs.oathToolkit}/lib/security/pam_oath.so window=${toString oath.window} usersfile=${toString oath.usersFile} digits=${toString oath.digits}"} ${optionalString config.users.ldap.enable "auth sufficient ${pam_ldap}/lib/security/pam_ldap.so use_first_pass"} ${optionalString config.krb5.enable '' @@ -302,8 +302,6 @@ let "session optional ${pam_krb5}/lib/security/pam_krb5.so"} ${optionalString cfg.otpwAuth "session optional ${pkgs.otpw}/lib/security/pam_otpw.so"} - ${optionalString cfg.oathAuth - "session optional ${pkgs.oathToolkit}/lib/security/pam_oath.so window=5 usersfile=/etc/users.oath"} ${optionalString cfg.startSession "session optional ${pkgs.systemd}/lib/security/pam_systemd.so"} ${optionalString cfg.forwardXAuth @@ -405,13 +403,6 @@ in ''; }; - security.pam.enableOATH = mkOption { - default = false; - description = '' - Enable the OATH (one-time password) PAM module. - ''; - }; - security.pam.enableU2F = mkOption { default = false; description = '' @@ -446,7 +437,7 @@ in ++ optional config.users.ldap.enable pam_ldap ++ optionals config.krb5.enable [pam_krb5 pam_ccreds] ++ optionals config.security.pam.enableOTPW [ pkgs.otpw ] - ++ optionals config.security.pam.enableOATH [ pkgs.oathToolkit ] + ++ optionals config.security.pam.oath.enable [ pkgs.oathToolkit ] ++ optionals config.security.pam.enableU2F [ pkgs.pam_u2f ] ++ optionals config.security.pam.enableEcryptfs [ pkgs.ecryptfs ]; From 159c8f92845bfaf6bbff7071d3fa6980f55b5ea4 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 25 Feb 2016 15:49:37 +0100 Subject: [PATCH 211/291] taskwarrior: 2.5.0 -> 2.5.1 --- pkgs/applications/misc/taskwarrior/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/taskwarrior/default.nix b/pkgs/applications/misc/taskwarrior/default.nix index 97acc18211e..5590e4179db 100644 --- a/pkgs/applications/misc/taskwarrior/default.nix +++ b/pkgs/applications/misc/taskwarrior/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "taskwarrior-${version}"; - version = "2.5.0"; + version = "2.5.1"; enableParallelBuilding = true; src = fetchurl { url = "http://www.taskwarrior.org/download/task-${version}.tar.gz"; - sha256 = "0dj66c4pwdmfnzdlm1r23gqim6banycyzvmq266114v9b90ng3jd"; + sha256 = "059a9yc58wcicc6xxsjh1ph7k2yrag0spsahp1wqmsq6h7jwwyyq"; }; nativeBuildInputs = [ cmake libuuid gnutls ]; From 84a4d9e0e1133d971bd30590770370c666262b6c Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 25 Feb 2016 15:15:00 +0000 Subject: [PATCH 212/291] cide: add missing git runtime dependency `git` is being used during `cide package` --- .../development/tools/continuous-integration/cide/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/cide/default.nix b/pkgs/development/tools/continuous-integration/cide/default.nix index 1dc8f8def33..c8c35330e30 100644 --- a/pkgs/development/tools/continuous-integration/cide/default.nix +++ b/pkgs/development/tools/continuous-integration/cide/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, bundlerEnv, makeWrapper, docker }: +{ stdenv, lib, bundlerEnv, makeWrapper, docker, git }: stdenv.mkDerivation rec { name = "cide-${version}"; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin makeWrapper ${env}/bin/cide $out/bin/cide \ - --set PATH ${docker}/bin + --set PATH ${docker}/bin:${git}/bin ''; meta = with lib; { From d3d193e263d3d42b52986fccc0615849028b1c45 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Feb 2016 17:57:58 +0300 Subject: [PATCH 213/291] octoprint-plugins.m3d-fio: 0.27 -> 0.27.1 --- pkgs/applications/misc/octoprint/plugins.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 9b5a9ef1501..39384e15a36 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -8,13 +8,13 @@ in { m3d-fio = buildPlugin rec { name = "M3D-Fio-${version}"; - version = "0.27"; + version = "0.27.1"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "14zva61dhnsyapapw8q2qadfq5hzv5ykb7qxlz8a3x5j6wfhjn6h"; + sha256 = "0jfb417wgdq6fzpxwq6xrrlpkndjwq69h4cdm0ixbyqkp7a3kcm2"; }; patches = [ From 9b3296017fdc7c1e2347c28b6985bae6d56dc9fd Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 22 Feb 2016 21:28:04 +0100 Subject: [PATCH 214/291] mcelog: 131 -> 132 Add CPU_ATOM to Intel CPU list. --- pkgs/os-specific/linux/mcelog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index c185d69c554..9b347a8da54 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "mcelog-${version}"; - version = "131"; + version = "132"; src = fetchFromGitHub { - sha256 = "1hqb06gdx5bw4jh6xix0z5qhi4956asykf43zk1m1mjsj8lkzaps"; + sha256 = "0qr0rdkva8a8wzsdmk0dm9zhpdnwp1lmla324xnayf0afyym3zj8"; rev = "v${version}"; repo = "mcelog"; owner = "andikleen"; From 759f48ab072426a0145f7a1833285f29882bf80a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 23 Feb 2016 01:22:32 +0100 Subject: [PATCH 215/291] sane-backends-git: 2016-02-19 -> 2016-02-22 --- pkgs/applications/graphics/sane/backends/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index ad1302c9913..12dd739c29b 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-02-19"; + version = "2016-02-22"; src = fetchgit { - sha256 = "d50971c106c8e0071d71daad7235776ac9a07a5ab0adb1e0eae5536b3021dd5f"; - rev = "d74d3bcd887d2a3d59ee96e04eb68f15c0a3b882"; + sha256 = "476abced4a9ccc95eb0796ef1d2e1d9be76c0db14adc248a9feaae3c8a61645e"; + rev = "a74ebe551daf8750821b1ab57324e54141a84461"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) From 818263ce46dad548ab27790db58caeb281065e63 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 23 Feb 2016 01:26:38 +0100 Subject: [PATCH 216/291] miniupnpd: 1.9.20160216 -> 1.9.20160222 - set IPv6 Hop limit to 10 - fix HOST: header of event notifications in IPv6 - be more compliant on 64bit machines : ui4 in [0;2^32-1] --- pkgs/tools/networking/miniupnpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index d93b429ea4f..d2bc7b4e772 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -3,11 +3,11 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - name = "miniupnpd-1.9.20160216"; + name = "miniupnpd-1.9.20160222"; src = fetchurl { url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz"; - sha256 = "001f9qc8zzrqbmjvpgwvpmi85sgb5ncl6gi9djxjr5n95a92r0g3"; + sha256 = "0q694dla4v36qsc0x50xqg2jjhwdi9pl7r2gl10yvhkahxqx1ng7"; name = "${name}.tar.gz"; }; From e82a080303c32ec0ce7a4de0c6ccc6591be8d12e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 23 Feb 2016 01:41:20 +0100 Subject: [PATCH 217/291] pythonPackages.click: 6.2 -> 6.3 Bugfix release; released on February 22 2016: - Fix argument checks for interpreter invoke with `-m` and `-c` on Windows. - Fixed a bug that cased locale detection to error out on Python 3. Re-builds many Python packages, but no new failures on x86-64. --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ffcd6c4229d..25ba60f69bf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2956,11 +2956,11 @@ in modules // { }; click = buildPythonPackage rec { - name = "click-6.2"; + name = "click-6.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz"; - sha256 = "10kavbisnk9m93jl2wi34pw7ryr2qbxshh2cysxwxd7bymqgz87v"; + sha256 = "076cr1xbhfyfrzkvflz1i0950jgjn2161hp3f5xji4z1mgxdj85p"; }; buildInputs = with self; [ pytest ]; From ebc9ba92d26ac1f9c1fa8237ba2ad5f352f9fc3f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 25 Feb 2016 02:22:43 +0100 Subject: [PATCH 218/291] proot: generate and install manual page --- pkgs/tools/system/proot/default.nix | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/proot/default.nix b/pkgs/tools/system/proot/default.nix index be3cffb47eb..a5d90bae932 100644 --- a/pkgs/tools/system/proot/default.nix +++ b/pkgs/tools/system/proot/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchgit, talloc, enableStatic ? false }: +{ stdenv, fetchgit, talloc, docutils +, enableStatic ? false }: stdenv.mkDerivation rec { name = "proot-${version}"; @@ -11,14 +12,25 @@ stdenv.mkDerivation rec { }; buildInputs = [ talloc ]; + nativeBuildInputs = [ docutils ]; + + enableParallelBuilding = true; preBuild = stdenv.lib.optionalString enableStatic '' export LDFLAGS="-static -L${talloc}/lib" - '' + '' - substituteInPlace GNUmakefile --replace "/usr/local" "$out" ''; - sourceRoot = "proot/src"; + makeFlags = [ "-C src" ]; + + postBuild = '' + make -C doc proot/man.1 + ''; + + installFlags = [ "PREFIX=$(out)" ]; + + postInstall = '' + install -Dm644 doc/proot/man.1 $out/share/man/man1/proot.1 + ''; meta = with stdenv.lib; { homepage = http://proot.me; From d9f5e94bae088234791ae28f0d813a9fad5b8163 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 25 Feb 2016 02:28:33 +0100 Subject: [PATCH 219/291] proot: 4.0.3 -> 5.1.0 New features ------------ * Processes under PRoot now appear with their real names, that is, they are not renamed ld-linux.so or prooted-... anymore. * Own ELF loader. Fixes ----- * Most bugs related to shebang support -- ie. #! at the beginning of a program -- were fixed. * It is now possible to use GDB against multi-threaded programs under PRoot x86_64 and x86. * It is possible to execute x86_64 programs from x86 programs again. * It is possible to use x86 ptrace-based programs (strace, gdb, ...) under PRoot x86_64 again. * The loader is now built with the build-id linker option explicitly disabled. This special section might interfere with loaded programs. * The loader can now load relocatable objects that have a predefined base address. --- pkgs/tools/system/proot/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/system/proot/default.nix b/pkgs/tools/system/proot/default.nix index a5d90bae932..aecab9c35d0 100644 --- a/pkgs/tools/system/proot/default.nix +++ b/pkgs/tools/system/proot/default.nix @@ -1,14 +1,15 @@ -{ stdenv, fetchgit, talloc, docutils +{ stdenv, fetchFromGitHub, talloc, docutils , enableStatic ? false }: stdenv.mkDerivation rec { name = "proot-${version}"; - version = "4.0.3"; + version = "5.1.0"; - src = fetchgit { - url = "git://github.com/cedric-vincent/proot.git"; - rev = "refs/tags/v${version}"; - sha256 = "95a52b2fa47b2891eb2c6b6b0e14d42f6d48f6fd5181e359b007831f1a046e84"; + src = fetchFromGitHub { + sha256 = "0azsqis99gxldmbcg43girch85ysg4hwzf0h1b44bmapnsm89fbz"; + rev = "v${version}"; + repo = "proot"; + owner = "cedric-vincent"; }; buildInputs = [ talloc ]; @@ -37,7 +38,7 @@ stdenv.mkDerivation rec { description = "User-space implementation of chroot, mount --bind and binfmt_misc"; platforms = platforms.linux; license = licenses.gpl2; - maintainers = [ maintainers.ianwookim ]; + maintainers = with maintainers; [ ianwookim nckx ]; }; } From 69932f905ac5026edb3dc6dadaa39a2652cbcda1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Feb 2016 17:58:09 +0300 Subject: [PATCH 220/291] blueman: fix networking, settings --- pkgs/tools/bluetooth/blueman/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/bluetooth/blueman/default.nix b/pkgs/tools/bluetooth/blueman/default.nix index 82d9f085f78..428c751571c 100644 --- a/pkgs/tools/bluetooth/blueman/default.nix +++ b/pkgs/tools/bluetooth/blueman/default.nix @@ -1,9 +1,9 @@ { stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3 -, obex_data_server, xdg_utils, libnotify, dconf +, obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp , withPulseAudio ? true, libpulseaudio }: let - binPath = lib.makeBinPath [ xdg_utils ]; + binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ]; in stdenv.mkDerivation rec { name = "blueman-${version}"; @@ -16,7 +16,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ]; - buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf ] + buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf gsettings_desktop_schemas ] ++ pythonPath ++ lib.optional withPulseAudio libpulseaudio; @@ -26,7 +26,7 @@ in stdenv.mkDerivation rec { pythonPath = with pythonPackages; [ dbus pygobject3 ]; - propagatedUserEnvPkgs = [ obex_data_server ]; + propagatedUserEnvPkgs = [ obex_data_server dconf ]; configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d18c582ead4..a2ad53c5a33 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1031,7 +1031,7 @@ let bittornado = callPackage ../tools/networking/p2p/bit-tornado { }; blueman = callPackage ../tools/bluetooth/blueman { - inherit (gnome3) dconf; + inherit (gnome3) dconf gsettings_desktop_schemas; withPulseAudio = config.pulseaudio or true; }; From a2c8bee109084a6a7c6e479f28d453d8d82808a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 25 Feb 2016 15:54:31 +0000 Subject: [PATCH 221/291] linuxPackages: set to 4.4 (latests LTS) fixes #13394 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a2ad53c5a33..702d4c2ab17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10538,7 +10538,7 @@ let }; # The current default kernel / kernel modules. - linuxPackages = linuxPackages_4_1; + linuxPackages = linuxPackages_4_4; linux = linuxPackages.kernel; # Update this when adding the newest kernel major version! From 6a27fc57b73bf569d2caec6364d75bc55e409910 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 25 Feb 2016 16:50:37 +0100 Subject: [PATCH 222/291] radvd: 2.11 -> 2.12 --- pkgs/tools/networking/radvd/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/radvd/default.nix b/pkgs/tools/networking/radvd/default.nix index 63f82f12787..84db01dc4ba 100644 --- a/pkgs/tools/networking/radvd/default.nix +++ b/pkgs/tools/networking/radvd/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }: stdenv.mkDerivation rec { - name = "radvd-2.11"; - + name = "radvd-2.12"; + src = fetchurl { url = "http://www.litech.org/radvd/dist/${name}.tar.xz"; - sha256 = "1k2sbfs4w2lkgz2mh4zh66fgahjrn2hvxcpfc091bykrzj464qq4"; + sha256 = "0yvlzzdxz2h5fm7grbf1xfs8008bzcdjpficm2cf52g771rffw5h"; }; buildInputs = [ pkgconfig libdaemon bison flex check ]; @@ -15,6 +15,6 @@ stdenv.mkDerivation rec { description = "IPv6 Router Advertisement Daemon"; platforms = platforms.linux; license = licenses.bsdOriginal; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington fpletz ]; }; } From c459ba8f858fbe229139579d1a8c024353ddf52f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 25 Feb 2016 16:48:55 +0100 Subject: [PATCH 223/291] ratools: init at 0.6.2 --- pkgs/tools/networking/ratools/default.nix | 32 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/tools/networking/ratools/default.nix diff --git a/pkgs/tools/networking/ratools/default.nix b/pkgs/tools/networking/ratools/default.nix new file mode 100644 index 00000000000..423c58450c5 --- /dev/null +++ b/pkgs/tools/networking/ratools/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "ratools-${version}"; + version = "0.6.2"; + + src = fetchFromGitHub { + owner = "danrl"; + repo = "ratools"; + rev = "v${version}"; + sha256 = "07m45bn9lzgbfihmxic23wqp73nxg5ihrvkigr450jq6gzvgwawq"; + }; + + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; + + makeFlags = "-C src"; + + installPhase = '' + mkdir -p $out/{bin,sbin,share/man/man8} + cp bin/ractl $out/bin + cp bin/rad $out/sbin + cp man/* $out/share/man/man8 + ''; + + meta = with stdenv.lib; { + description = "a fast, dynamic, multi-threading framework for IPv6 Router Advertisements"; + homepage = https://github.com/danrl/ratools; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = [ maintainers.fpletz ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 702d4c2ab17..0f756a175ac 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3018,6 +3018,8 @@ let rarcrack = callPackage ../tools/security/rarcrack { }; + ratools = callPackage ../tools/networking/ratools { }; + rawdog = callPackage ../applications/networking/feedreaders/rawdog { }; read-edid = callPackage ../os-specific/linux/read-edid { }; From 05730a9bf83ad32f6c3b6edfc8e28066c02d2ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 25 Feb 2016 15:59:35 +0000 Subject: [PATCH 224/291] travis-ci: enable tarball job again (now we have more memory) --- maintainers/scripts/travis-nox-review-pr.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 54549955747..e0d1952d543 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -27,6 +27,9 @@ elif [[ $1 == nox ]]; then elif [[ $1 == build ]]; then source $HOME/.nix-profile/etc/profile.d/nix.sh + echo "=== Checking tarball creation" + nix-build pkgs/top-level/release.nix -A tarball + if [[ $TRAVIS_PULL_REQUEST == false ]]; then echo "=== Not a pull request" else @@ -41,8 +44,6 @@ elif [[ $1 == build ]]; then exit 1 fi fi - # echo "=== Checking tarball creation" - # nix-build pkgs/top-level/release.nix -A tarball else echo "$0: Unknown option $1" >&2 false From 77d11ec577810c827f4ee9053d01320c031abe66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Thu, 25 Feb 2016 17:48:07 +0100 Subject: [PATCH 225/291] idea.idea-{community,ultimate}: 15.0.3 -> 15.0.4 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 751e66cca07..e9d25720f34 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -185,25 +185,25 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "15.0.3"; - build = "IC-143.1821"; + version = "15.0.4"; + build = "IC-143.2287"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "15hj4kqlpg3b4xp2v4f4iidascrc8s97mq8022nvbcs879gpajqa"; + sha256 = "05kah5cx7x3rlaaxkvbbm7g8jvy9hc38q4jv7j5r9rkxd38fslvn"; }; }; idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "15.0.3"; - build = "IU-143.1821"; + version = "15.0.4"; + build = "IU-143.2287"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "02v8v2a7p620l4mlk7jqw9sl2455a1nya1dy84y23h9vq20aihlh"; + sha256 = "0416y7krrak1q5pb8axskdamy06nfxmn4hj7421j8jaz0nc50dn4"; }; }; From 5e1da18b6dc3305912ccd1a54c7b0337d1cafc17 Mon Sep 17 00:00:00 2001 From: Josef Knedl Date: Wed, 24 Feb 2016 01:01:46 +0100 Subject: [PATCH 226/291] tk: Fixes NixOS/nixpkgs#13377 (bad install_name) Patch is based on: https://trac.macports.org/changeset/100816 of bug report: https://trac.macports.org/ticket/37395 --- pkgs/development/libraries/tk/8.6.nix | 4 +-- ...-bad-install_name-for-libtk8.6.dylib.patch | 29 +++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/libraries/tk/Fix-bad-install_name-for-libtk8.6.dylib.patch diff --git a/pkgs/development/libraries/tk/8.6.nix b/pkgs/development/libraries/tk/8.6.nix index 110151227bd..c10771c9109 100644 --- a/pkgs/development/libraries/tk/8.6.nix +++ b/pkgs/development/libraries/tk/8.6.nix @@ -1,4 +1,4 @@ -{ callPackage, fetchurl, tcl, ... } @ args: +{ callPackage, fetchurl, tcl, stdenv, ... } @ args: callPackage ./generic.nix (args // rec { @@ -7,7 +7,7 @@ callPackage ./generic.nix (args // rec { sha256 = "1h96vp15zl5xz0d4qp6wjyrchqmrmdm3q5k22wkw9jaxbvw9vy88"; }; - patches = [ ./different-prefix-with-tcl.patch ]; + patches = [ ./different-prefix-with-tcl.patch ] ++ stdenv.lib.optionals stdenv.isDarwin [ ./Fix-bad-install_name-for-libtk8.6.dylib.patch ]; }) diff --git a/pkgs/development/libraries/tk/Fix-bad-install_name-for-libtk8.6.dylib.patch b/pkgs/development/libraries/tk/Fix-bad-install_name-for-libtk8.6.dylib.patch new file mode 100644 index 00000000000..528a75e1c91 --- /dev/null +++ b/pkgs/development/libraries/tk/Fix-bad-install_name-for-libtk8.6.dylib.patch @@ -0,0 +1,29 @@ +From f90278dac42135acd55200b7d2153f44d72fec53 Mon Sep 17 00:00:00 2001 +From: Josef Knedl +Date: Wed, 24 Feb 2016 00:37:40 +0100 +Subject: [PATCH] Fix bad install_name for libtk8.6.dylib + +This follows: https://trac.macports.org/ticket/37395 +and https://trac.macports.org/changeset/100816 +Alternative would be to use Quartz build instead: +https://sourceforge.net/p/tktoolkit/bugs/3048/ +--- + unix/Makefile.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/unix/Makefile.in b/unix/Makefile.in +index f21fdbb..1b89256 100644 +--- a/unix/Makefile.in ++++ b/unix/Makefile.in +@@ -283,7 +283,7 @@ CC_SEARCH_FLAGS = @CC_SEARCH_FLAGS@ + LD_SEARCH_FLAGS = @LD_SEARCH_FLAGS@ + + # support for embedded libraries on Darwin / Mac OS X +-DYLIB_INSTALL_DIR = ${LIB_RUNTIME_DIR} ++DYLIB_INSTALL_DIR = $(libdir) + + # support for building the Aqua resource file + TK_RSRC_FILE = @TK_RSRC_FILE@ +-- +2.7.1 + From f91c979f8aaa329de089d3d4e0dd56a6bb9d922a Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 25 Feb 2016 11:25:00 -0600 Subject: [PATCH 227/291] xerces-c: 3.1.1 -> 3.1.3 --- pkgs/development/libraries/xercesc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/xercesc/default.nix b/pkgs/development/libraries/xercesc/default.nix index 1c1426d969e..5020ab3f2df 100644 --- a/pkgs/development/libraries/xercesc/default.nix +++ b/pkgs/development/libraries/xercesc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "xerces-c-${version}"; - version = "3.1.1"; + version = "3.1.3"; src = fetchurl { url = "mirror://apache/xerces/c/3/sources/${name}.tar.gz"; - sha256 = "0dl7jr26vlh5p3hps86xrwyafq6f21schc9q4zyxb48b3vvqa9x4"; + sha256 = "0jav1cbwcyq4miy790dd62yrypf7n0j98vdin9ny30f9nwyzgm7k"; }; meta = { From 3234ca49d1441305777f1b4c77e3e741ef9f59d0 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 25 Feb 2016 17:32:08 +0100 Subject: [PATCH 228/291] gti: init at 2015-05-21 (edaac79) --- pkgs/tools/misc/gti/default.nix | 27 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/tools/misc/gti/default.nix diff --git a/pkgs/tools/misc/gti/default.nix b/pkgs/tools/misc/gti/default.nix new file mode 100644 index 00000000000..39e28073abc --- /dev/null +++ b/pkgs/tools/misc/gti/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "gti-${version}"; + version = "2015-05-21"; + + src = fetchFromGitHub { + owner = "rwos"; + repo = "gti"; + rev = "edaac795b0b0ff01f2347789f96c740c764bf376"; + sha256 = "1wki7d61kcmv9s3xayky9cz84qa773x3y1z88y768hq8ifwadcbn"; + }; + + installPhase = '' + mkdir -p $out/bin $out/share/man/man6 + cp gti $out/bin + cp gti.6 $out/share/man/man6 + ''; + + meta = with stdenv.lib; { + homepage = http://r-wos.org/hacks/gti; + license = licenses.mit; + description = "Humorous typo-based git runner; drives a car over the terminal"; + maintainers = with maintainers; [ fadenb ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0f756a175ac..7d9fe308afa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -904,6 +904,8 @@ let gmic = callPackage ../tools/graphics/gmic { }; + gti = callPackage ../tools/misc/gti { }; + heatseeker = callPackage ../tools/misc/heatseeker { }; interlock = goPackages.interlock.bin // { outputs = [ "bin" ]; }; From 712d59225e52c7636e315cb2cce35e357114b183 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 25 Feb 2016 12:00:12 -0600 Subject: [PATCH 229/291] chromium{,Beta,Dev}: 48.0.2564.97 -> 48.0.2564.116 From the debian security mailing list: Several vulnerabilities have been discovered in the chromium web browser. CVE-2016-1622 It was discovered that a maliciously crafted extension could bypass the Same Origin Policy. CVE-2016-1623 Mariusz Mlynski discovered a way to bypass the Same Origin Policy. CVE-2016-1624 lukezli discovered a buffer overflow issue in the Brotli library. CVE-2016-1625 Jann Horn discovered a way to cause the Chrome Instant feature to navigate to unintended destinations. CVE-2016-1626 An out-of-bounds read issue was discovered in the openjpeg library. CVE-2016-1627 It was discovered that the Developer Tools did not validate URLs. CVE-2016-1628 An out-of-bounds read issue was discovered in the pdfium library. CVE-2016-1629 A way to bypass the Same Origin Policy was discovered in Blink/WebKit, along with a way to escape the chromium sandbox. --- .../browsers/chromium/source/sources.nix | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 1a19210fd3d..14d55572254 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -1,21 +1,17 @@ # This file is autogenerated from update.sh in the parent directory. { dev = { - version = "49.0.2593.0"; - sha256 = "1krkf8dg10xnvxs4zfvy2rkp0v3gxg55418b11kmfywsxjfi09hv"; - sha256bin32 = "0sarfj8r6x28pbmcpd5facm6liifazj744c9qn6ci6xg7f8jlnxi"; - sha256bin64 = "1l5s504mmr4v5y67fsla9hyrk7dm155yc790ld87s1ya03h455gr"; + version = "50.0.2657.0"; + sha256 = "1xc66zsjd5snydf60di2k2vzwwcqs1p16yn4jbpj2khm9cmxmkmf"; }; beta = { - version = "49.0.2623.28"; - sha256 = "1cpgfcw6kgw70k14wa1m5qzj4rnvkzrw1am30d34516mbwlmmqc8"; - sha256bin32 = "0nwhjav1x325h1drqknrjl5glivn4fdpahs1nlaqfk8kbjh1q113"; - sha256bin64 = "0wj6j0v3rngsclzbb8rc8l90wdi98j2sb60r2ypfihaxq2gd138y"; + version = "49.0.2623.63"; + sha256 = "07i4vqswkijnl7wi6r1a0n1jq54ackm01yf8h3hwcik8q10i1aq5"; }; stable = { - version = "48.0.2564.97"; - sha256 = "1nsjn8zlqljizy5dmg2rxwkw4k5j4yi15ywxi9ca3acv68dbhd3p"; - sha256bin32 = "0gdd9krsfsixw5b03msm7nf7zl7xh4chzkh9srb19c1kzygl2j2l"; - sha256bin64 = "1wmw17gdq1j6vxfdc8s94jc8z30pza8nipk4dh590xnb7faihr52"; + version = "48.0.2564.116"; + sha256 = "03sdm09cnwq8a056rfljql7mz0s17fngfnm5q3p5xwakr2sbj7ka"; + sha256bin32 = "157m88nafb8svpkv11rzpcfvak6486wx43rmbssg52x2k0vas0bl"; + sha256bin64 = "036pcma8qczja803h9r1nlm0ypm4zblmy6q7pkwlgmn3r4r3n7i0"; }; } From 8106d61c120355a93f3d7cd20263d7372ddec12d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 25 Feb 2016 19:56:32 +0100 Subject: [PATCH 230/291] libfilezilla: 0.3.1 -> 0.4.0 --- pkgs/development/libraries/libfilezilla/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix index 74ca0a30892..120b707af1e 100644 --- a/pkgs/development/libraries/libfilezilla/default.nix +++ b/pkgs/development/libraries/libfilezilla/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libfilezilla-${version}"; - version = "0.3.1"; + version = "0.4.0"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2"; - sha256 = "1vshy00bz9l5nzphkxpd35plcfcrz2wha5qiic7mx5yywafdxbd4"; + sha256 = "1l7rih17nzy75zf5h8mx5x38jbl9kxyxpr0ib6nn2615fw92xxgj"; }; meta = with stdenv.lib; { From 93a0306e7955bc8086b6fb8a95fa2227e760c8a7 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 21 Feb 2016 19:55:39 +0000 Subject: [PATCH 231/291] sane module: add more documentation Imported from https://nixos.org/wiki/Scanners --- nixos/modules/services/hardware/sane.nix | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/hardware/sane.nix b/nixos/modules/services/hardware/sane.nix index 56504cd2361..a3403740312 100644 --- a/nixos/modules/services/hardware/sane.nix +++ b/nixos/modules/services/hardware/sane.nix @@ -21,7 +21,13 @@ in hardware.sane.enable = mkOption { type = types.bool; default = false; - description = "Enable support for SANE scanners."; + description = '' + Enable support for SANE scanners. + + + Users in the "scanner" group will gain access to the scanner. + + ''; }; hardware.sane.snapshot = mkOption { @@ -33,7 +39,14 @@ in hardware.sane.extraBackends = mkOption { type = types.listOf types.path; default = []; - description = "Packages providing extra SANE backends to enable."; + description = '' + Packages providing extra SANE backends to enable. + + + The example contains the package for HP scanners. + + ''; + example = literalExample "[ pkgs.hplipWithPlugin ]"; }; hardware.sane.configDir = mkOption { From dc314aad12ea639f2d1f36ee1ac826d9411133c5 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 21 Feb 2016 19:37:05 +0000 Subject: [PATCH 232/291] samba module: add more description Fixes #13281 --- .../services/network-filesystems/samba.nix | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/network-filesystems/samba.nix b/nixos/modules/services/network-filesystems/samba.nix index 576e5c9e87a..a186982ec9c 100644 --- a/nixos/modules/services/network-filesystems/samba.nix +++ b/nixos/modules/services/network-filesystems/samba.nix @@ -79,6 +79,14 @@ in description = '' Whether to enable Samba, which provides file and print services to Windows clients through the SMB/CIFS protocol. + + + If you use the firewall consider adding the following: + + networking.firewall.allowedTCPPorts = [ 139 445 ]; + networking.firewall.allowedUDPPorts = [ 137 138 ]; + + ''; }; @@ -86,7 +94,7 @@ in type = types.package; default = pkgs.samba; defaultText = "pkgs.samba"; - example = literalExample "pkgs.samba4"; + example = literalExample "pkgs.samba3"; description = '' Defines which package should be used for the samba server. ''; @@ -118,6 +126,10 @@ in description = '' Additional global section and extra section lines go in here. ''; + example = '' + guest account = nobody + map to guest = bad user + ''; }; configText = mkOption { @@ -154,9 +166,11 @@ in ''; type = types.attrsOf (types.attrsOf types.unspecified); example = - { srv = - { path = "/srv"; + { public = + { path = "/srv/public"; "read only" = true; + browseable = "yes"; + "guest ok" = "yes"; comment = "Public samba share."; }; }; From 1eb8139100da1f6d8876d1f21b9923eaf27b3091 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 25 Feb 2016 16:29:58 +0100 Subject: [PATCH 233/291] libpsl: 2016-02-16 -> 2016-02-25 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index c53c4792a6f..d1da2bbf3aa 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-02-16"; + listVersion = "2016-02-25"; listSources = fetchFromGitHub { - sha256 = "0f27nynm4skn1mnv7kgyyl7cy599n6al7x3alvqn0nw9s25cfmkc"; - rev = "5bece2d9de4bb67274fd8e5928d6b449e7ff7674"; + sha256 = "0i9aa0bl3x50z0ba4n06pajpfncw8n780hhql13b1vppgfc6s4i7"; + rev = "84fd7e2a090f53ba4378f2a0e08cdaaa882ce3e5"; repo = "list"; owner = "publicsuffix"; }; From 500132ab5c4f914c7c40a49de9733806126cf6f3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 25 Feb 2016 19:52:39 +0100 Subject: [PATCH 234/291] sane-backends-git -> 2016-02-25 --- pkgs/applications/graphics/sane/backends/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index 12dd739c29b..0e4d7ae1b83 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-02-22"; + version = "2016-02-25"; src = fetchgit { - sha256 = "476abced4a9ccc95eb0796ef1d2e1d9be76c0db14adc248a9feaae3c8a61645e"; - rev = "a74ebe551daf8750821b1ab57324e54141a84461"; + sha256 = "842b1186d38de14221be514a58f77c23d9f83979ea45f846440cf9cbb1f26c1f"; + rev = "c5117ed0f1b522eab10fd2248f140b2acad2a708"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) From 2179b1d4918476a629a60d398b3e41228ae5c94e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 25 Feb 2016 20:54:39 +0100 Subject: [PATCH 235/291] geolite-legacy 2016-02-08 -> 2016-02-25 --- pkgs/data/misc/geolite-legacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 2be23b0f35c..59ae72d863c 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-02-08"; + version = "2016-02-25"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { "0fnlznn04lpkkd7sy9r9kdl3fcp8ix7msdrncwgz26dh537ml32z"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "0ib93p2fwayqsxwph98rkgln7xpjrwhzzc06sc74876jpaq3g8g5"; + "0gli3glr2w58qw2b4lwlp8cqbpfy27c3ryih3qi2bbilqy0r3ibl"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "1izlxqcvdag66sny5zjjwkmjhai0c9m77b96j117n0x0awrrk4h9"; + "1k7a9b8hsman64jjk6y3nkhms89gkq1vk26n2xklw710f15jzcsf"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; From 359ff7d230aee86fc4a38796f9c84457d626e92c Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Thu, 25 Feb 2016 20:05:34 +0100 Subject: [PATCH 236/291] ledger-autosync: fix ofxclient propagation Closes #13411 --- pkgs/top-level/python-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ffcd6c4229d..f1bc4dc87e3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6118,8 +6118,9 @@ in modules // { sha256 = "f19fa66e656309825887171d84a462e64676b1cc36b62e4dd8679ff63926a469"; }; + propagatedBuildInputs = with self; [ ofxclient ]; + buildInputs = with self; [ - ofxclient mock nose # Used at runtime to translate ofx entries to the ledger From b2298b02cfefb5642364af7ab8b4d047b7a5fc86 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 25 Feb 2016 17:09:54 +0100 Subject: [PATCH 237/291] kde5.filelight: init at 15.12 (close #13456) vcunat also added himself to maintainers, as filelight has been extremely helpful on closure-size branch. --- pkgs/applications/kde-apps-15.12/default.nix | 1 + .../applications/kde-apps-15.12/filelight.nix | 35 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/applications/kde-apps-15.12/filelight.nix diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index 15982cb5d64..e9894eaad72 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -35,6 +35,7 @@ let dolphin = callPackage ./dolphin.nix {}; dolphin-plugins = callPackage ./dolphin-plugins.nix {}; ffmpegthumbs = callPackage ./ffmpegthumbs.nix {}; + filelight = callPackage ./filelight.nix {}; gpgmepp = callPackage ./gpgmepp.nix {}; gwenview = callPackage ./gwenview.nix {}; kate = callPackage ./kate.nix {}; diff --git a/pkgs/applications/kde-apps-15.12/filelight.nix b/pkgs/applications/kde-apps-15.12/filelight.nix new file mode 100644 index 00000000000..df5e097a540 --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/filelight.nix @@ -0,0 +1,35 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, qtscript +, kio +, solid +, kxmlgui +, kparts +}: + +kdeApp { + name = "filelight"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kio + kparts + qtscript + solid + kxmlgui + ]; + + postInstall = '' + wrapQtProgram "$out/bin/filelight" + ''; + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ fridh vcunat ]; + }; +} From 05608d50f44773bf001c0e193be3f939d0126a50 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 25 Feb 2016 20:12:53 +0100 Subject: [PATCH 238/291] kde5.kcalc: init at 15.12 --- pkgs/applications/kde-apps-15.12/default.nix | 1 + pkgs/applications/kde-apps-15.12/kcalc.nix | 38 ++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 pkgs/applications/kde-apps-15.12/kcalc.nix diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index 15982cb5d64..71527ba855e 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -38,6 +38,7 @@ let gpgmepp = callPackage ./gpgmepp.nix {}; gwenview = callPackage ./gwenview.nix {}; kate = callPackage ./kate.nix {}; + kcalc = callPackage ./kcalc.nix {}; kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {}; kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; diff --git a/pkgs/applications/kde-apps-15.12/kcalc.nix b/pkgs/applications/kde-apps-15.12/kcalc.nix new file mode 100644 index 00000000000..a1f0316825d --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/kcalc.nix @@ -0,0 +1,38 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kconfig +, kconfigwidgets +, kguiaddons +, kinit +, knotifications + +}: + +kdeApp { + name = "kcalc"; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + + buildInputs = [ + kconfig + kconfigwidgets + kguiaddons + kinit + knotifications + ]; + + postInstall = '' + wrapQtProgram "$out/bin/kcalc" + ''; + + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = [ lib.maintainers.fridh ]; + }; +} From 4a4c432f06c872dc618ab655b9968a062430db01 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 25 Feb 2016 22:32:40 +0100 Subject: [PATCH 239/291] pythonPackages.ipykernel: 4.2.2 -> 4.3.0 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bd1c18fede9..8604c2d852f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10254,12 +10254,12 @@ in modules // { }; ipykernel = buildPythonPackage rec { - version = "4.2.2"; + version = "4.3.0"; name = "ipykernel-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipykernel/${name}.tar.gz"; - sha256 = "a876da43e01acec2c305abdd8e6aa55f052bab1196171ccf1cb9a6aa230298b0"; + sha256 = "1av769gbzfm1zy9p94wicwwwxmyc7s7zk1ginq16x0wc69hwc57j"; }; buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; @@ -10268,6 +10268,7 @@ in modules // { jupyter_client pexpect traitlets + tornado ]; # Tests require backends. From fdd11c2c2b95e721c134c7cd5f6d2e92da62aff5 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Thu, 25 Feb 2016 23:22:12 +0200 Subject: [PATCH 240/291] gimp: Use http link as gimp-gap sources --- pkgs/applications/graphics/gimp/plugins/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix index 702911fee74..739614653a1 100644 --- a/pkgs/applications/graphics/gimp/plugins/default.nix +++ b/pkgs/applications/graphics/gimp/plugins/default.nix @@ -52,7 +52,7 @@ rec { name = "gap-2.6.0"; buildInputs = [ gimp pkgconfig glib pkgs.intltool gimp.gtk ] ++ gimp.nativeBuildInputs; src = fetchurl { - url = ftp://ftp.gimp.org/pub/gimp/plug-ins/v2.6/gap/gimp-gap-2.6.0.tar.bz2; + url = http://ftp.gimp.org/pub/gimp/plug-ins/v2.6/gap/gimp-gap-2.6.0.tar.bz2; sha256 = "1jic7ixcmsn4kx2cn32nc5087rk6g8xsrz022xy11yfmgvhzb0ql"; }; patchPhase = '' From 0649c8bde74d5e0e2036a66f0cab72b9de777617 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Thu, 25 Feb 2016 23:24:45 +0200 Subject: [PATCH 241/291] gimp: add gimp-with-plugin derivation By default all plugins from pkgs.gimpPlugins set are enabled. Default location of plugins changed from $out/${gimp.name} to $out/lib/gimp/${majorVersion}. Resulting derivation for gimp+plugins is set as search path for plugins by default (additional tweaking in gimprc done for old plugin scheme should be removed) --- pkgs/applications/graphics/gimp/2.8.nix | 6 ++++ .../graphics/gimp/plugins/default.nix | 4 +-- pkgs/applications/graphics/gimp/wrapper.nix | 33 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 +++ 4 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 pkgs/applications/graphics/gimp/wrapper.nix diff --git a/pkgs/applications/graphics/gimp/2.8.nix b/pkgs/applications/graphics/gimp/2.8.nix index 96d6dbd5285..55e85fc5ec6 100644 --- a/pkgs/applications/graphics/gimp/2.8.nix +++ b/pkgs/applications/graphics/gimp/2.8.nix @@ -6,6 +6,12 @@ stdenv.mkDerivation rec { name = "gimp-2.8.16"; + # This declarations for `gimp-with-plugins` wrapper, + # (used for determining $out/lib/gimp/${majorVersion}/ paths) + majorVersion = "2.0"; + targetPluginDir = "$out/lib/gimp/${majorVersion}/plug-ins"; + targetScriptDir = "$out/lib/gimp/${majorVersion}/scripts"; + src = fetchurl { url = "http://download.gimp.org/pub/gimp/v2.8/${name}.tar.bz2"; sha256 = "1dsgazia9hmab8cw3iis7s69dvqyfj5wga7ds7w2q5mms1xqbqwm"; diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix index 739614653a1..4084018d1d5 100644 --- a/pkgs/applications/graphics/gimp/plugins/default.nix +++ b/pkgs/applications/graphics/gimp/plugins/default.nix @@ -6,9 +6,7 @@ { pkgs, gimp }: let inherit (pkgs) stdenv fetchurl pkgconfig glib; - targetPluginDir = "$out/${gimp.name}-plugins"; - targetScriptDir = "$out/${gimp.name}-scripts"; - prefix = "plugin-gimp-"; + inherit (gimp) targetPluginDir targetScriptDir; pluginDerivation = a: stdenv.mkDerivation ({ prePhases = "extraLib"; diff --git a/pkgs/applications/graphics/gimp/wrapper.nix b/pkgs/applications/graphics/gimp/wrapper.nix new file mode 100644 index 00000000000..53067dc39c9 --- /dev/null +++ b/pkgs/applications/graphics/gimp/wrapper.nix @@ -0,0 +1,33 @@ +{ stdenv, lib, buildEnv, gimp, makeWrapper, gimpPlugins, plugins ? null}: + +let +allPlugins = lib.filter (pkg: builtins.isAttrs pkg && pkg.type == "derivation") (lib.attrValues gimpPlugins); +selectedPlugins = if plugins == null then allPlugins else plugins; +extraArgs = map (x: x.wrapArgs or "") selectedPlugins; + +drv = buildEnv { + name = "gimp-with-plugins-" + (builtins.parseDrvName gimp.name).version; + + paths = [ gimp ] ++ selectedPlugins; + + postBuild = '' + # TODO: This could be avoided if buildEnv could be forced to create all directories + if [ -L $out/bin ]; then + rm $out/bin + mkdir $out/bin + for i in ${gimp}/bin/*; do + ln -s $i $out/bin + done + fi + for each in gimp-2.8 gimp-console-2.8; do + wrapProgram $out/bin/$each \ + --set GIMP2_PLUGINDIR "$out/lib/gimp/2.0" \ + ${toString extraArgs} + done + set +x + for each in gimp gimp-console; do + ln -sf "$each-2.8" $out/bin/$each + done + ''; + }; +in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 37f1098a823..1bce67dbec5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12225,6 +12225,11 @@ let gimp = gimp_2_8; + gimp-with-plugins = callPackage ../applications/graphics/gimp/wrapper.nix { + gimp = gimp_2_8; + plugins = null; # All packaged plugins enabled, if not explicit plugin list supplied + }; + gimpPlugins = recurseIntoAttrs (callPackage ../applications/graphics/gimp/plugins {}); gitAndTools = recurseIntoAttrs (callPackage ../applications/version-management/git-and-tools {}); From 0e1319f03ffe5b9b365d056c1bc5d18e1a5b75ea Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 25 Feb 2016 23:07:47 +0100 Subject: [PATCH 242/291] linux-3.10: fixup config by a slightly hacky way For explanation see: https://github.com/NixOS/nixpkgs/pull/13405#issuecomment-188357637 --- pkgs/os-specific/linux/kernel/common-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index fc54715ea7b..4de27fd3000 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -362,7 +362,7 @@ with stdenv.lib; X86_MCE y # PCI-Expresscard hotplug support - HOTPLUG_PCI_PCIE y + ${optionalString (versionAtLeast version "3.12") "HOTPLUG_PCI_PCIE y"} # Linux containers. NAMESPACES? y # Required by 'unshare' used by 'nixos-install' From 7506c58d74553d7801c3f09be34f05015d70e53b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 24 Feb 2016 00:23:44 +0000 Subject: [PATCH 243/291] linux_3_10: 3.10.96 -> 3.10.97 (close #13405) --- pkgs/os-specific/linux/kernel/linux-3.10.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.10.nix b/pkgs/os-specific/linux/kernel/linux-3.10.nix index afca9b9c35e..cd7e6f1af74 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.10.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.10.96"; + version = "3.10.97"; extraMeta.branch = "3.10"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0wnlvbyg92q48kz5cn3bznjkkzpsik8z51dqhcxdpddy1k6iqb3k"; + sha256 = "0z66nbnbhmzjjbvrd7sbg4351x92grk8xja58rxxbb28cj3sy9r9"; }; kernelPatches = args.kernelPatches; From f1df89f902c60017d284c7e83c597246f5a6aff0 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 25 Feb 2016 21:53:40 +0000 Subject: [PATCH 244/291] termite: 10 -> 11 --- pkgs/applications/misc/termite/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/termite/default.nix b/pkgs/applications/misc/termite/default.nix index d37f2c947c9..fe22e1c6664 100644 --- a/pkgs/applications/misc/termite/default.nix +++ b/pkgs/applications/misc/termite/default.nix @@ -2,15 +2,15 @@ stdenv.mkDerivation rec { name = "termite-${version}"; - version = "10"; + version = "11"; src = fetchgit { url = "https://github.com/thestinger/termite"; rev = "refs/tags/v${version}"; - sha256 = "107v59x8q2m1cx1x3i5ciibw4nl1qbq7p58bfw0irkhp7sl7kjk2"; + sha256 = "1k91nw19c0p5ghqhs00mn9npa91idfkyiwik3ng6hb4jbnblp5ph"; }; - makeFlags = [ "VERSION=v${version}" "PREFIX=$(out)" ]; + makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ]; buildInputs = [ pkgconfig vte gtk3 ncurses ]; From 3f3599f6be768d31e7718eb58d57822f7cc1875e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 25 Feb 2016 21:52:13 +0000 Subject: [PATCH 245/291] termite: split terminfo into it's own output Fixes #6141 --- pkgs/applications/misc/termite/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/applications/misc/termite/default.nix b/pkgs/applications/misc/termite/default.nix index fe22e1c6664..683e5db2d13 100644 --- a/pkgs/applications/misc/termite/default.nix +++ b/pkgs/applications/misc/termite/default.nix @@ -14,6 +14,16 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig vte gtk3 ncurses ]; + outputs = [ "out" "terminfo" ]; + + postInstall = '' + mkdir -p $terminfo/share + mv $out/share/terminfo $terminfo/share/terminfo + + mkdir -p $out/nix-support + echo "$terminfo" >> $out/nix-support/propagated-user-env-packages + ''; + meta = with stdenv.lib; { description = "A simple VTE-based terminal"; license = licenses.lgpl2Plus; From ca5f24369724acfc4324dd09e5866d8da3e5fe5c Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Thu, 25 Feb 2016 14:23:34 -0800 Subject: [PATCH 246/291] git-and-tools: alphabetize attributes before it gets too huge --- .../git-and-tools/default.nix | 97 ++++++++++--------- 1 file changed, 49 insertions(+), 48 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 0aea48cb056..c38e34bf450 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -10,9 +10,9 @@ let asciidoc xmlto docbook2x docbook_xsl docbook_xml_dtd_45 libxslt cpio tcl tk makeWrapper subversionClient gzip libiconv; texinfo = texinfo5; - svnSupport = false; # for git-svn support - guiSupport = false; # requires tcl/tk - sendEmailSupport = false; # requires plenty of perl libraries + svnSupport = false; # for git-svn support + guiSupport = false; # requires tcl/tk + sendEmailSupport = false; # requires plenty of perl libraries perlLibs = [perlPackages.LWP perlPackages.URI perlPackages.TermReadKey]; smtpPerlLibs = [ perlPackages.NetSMTP perlPackages.NetSMTPSSL @@ -24,17 +24,12 @@ let in rec { + # Try to keep this generally alphabetized - # support for bugzilla - git-bz = callPackage ./git-bz { }; + darcsToGit = callPackage ./darcs-to-git { }; git = appendToName "minimal" gitBase; - # Git with SVN support, but without GUI. - gitSVN = lowPrio (appendToName "with-svn" (gitBase.override { - svnSupport = true; - })); - # The full-featured Git. gitFull = gitBase.override { svnSupport = true; @@ -42,11 +37,49 @@ rec { sendEmailSupport = !stdenv.isDarwin; }; + # Git with SVN support, but without GUI. + gitSVN = lowPrio (appendToName "with-svn" (gitBase.override { + svnSupport = true; + })); + git-annex = pkgs.haskellPackages.git-annex-with-assistant; gitAnnex = git-annex; git-annex-remote-b2 = pkgs.goPackages.git-annex-remote-b2; + # support for bugzilla + git-bz = callPackage ./git-bz { }; + + git-cola = callPackage ./git-cola { }; + + git-crypt = callPackage ./git-crypt { }; + + git-extras = callPackage ./git-extras { }; + + git-imerge = callPackage ./git-imerge { }; + + git-radar = callPackage ./git-radar { }; + + git-remote-hg = callPackage ./git-remote-hg { }; + + git2cl = import ./git2cl { + inherit fetchgit stdenv perl; + }; + + gitFastExport = import ./fast-export { + inherit fetchgit stdenv mercurial coreutils git makeWrapper subversion; + }; + + gitRemoteGcrypt = callPackage ./git-remote-gcrypt { }; + + gitflow = callPackage ./gitflow { }; + + hub = import ./hub { + inherit go; + inherit stdenv fetchgit; + inherit (darwin) Security; + }; + qgit = import ./qgit { inherit fetchurl stdenv; inherit (xorg) libXext libX11; @@ -63,27 +96,7 @@ rec { inherit fetchurl stdenv python git; }; - topGit = lib.makeOverridable (import ./topgit) { - inherit stdenv fetchurl; - }; - - tig = callPackage ./tig { }; - - transcrypt = callPackage ./transcrypt { }; - - hub = import ./hub { - inherit go; - inherit stdenv fetchgit; - inherit (darwin) Security; - }; - - gitFastExport = import ./fast-export { - inherit fetchgit stdenv mercurial coreutils git makeWrapper subversion; - }; - - git2cl = import ./git2cl { - inherit fetchgit stdenv perl; - }; + subgit = callPackage ./subgit { }; svn2git = import ./svn2git { inherit stdenv fetchurl ruby makeWrapper; @@ -92,23 +105,11 @@ rec { svn2git_kde = callPackage ./svn2git-kde { }; - subgit = callPackage ./subgit { }; + tig = callPackage ./tig { }; - darcsToGit = callPackage ./darcs-to-git { }; + topGit = lib.makeOverridable (import ./topgit) { + inherit stdenv fetchurl; + }; - gitflow = callPackage ./gitflow { }; - - git-radar = callPackage ./git-radar { }; - - git-remote-hg = callPackage ./git-remote-hg { }; - - gitRemoteGcrypt = callPackage ./git-remote-gcrypt { }; - - git-extras = callPackage ./git-extras { }; - - git-cola = callPackage ./git-cola { }; - - git-imerge = callPackage ./git-imerge { }; - - git-crypt = callPackage ./git-crypt { }; + transcrypt = callPackage ./transcrypt { }; } From fe6ad9e91268dba10f04f0dc983dfc8361475303 Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Thu, 25 Feb 2016 14:45:05 -0800 Subject: [PATCH 247/291] git-stree: init at 0.4.5 --- .../git-and-tools/default.nix | 2 ++ .../git-and-tools/git-stree/default.nix | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/version-management/git-and-tools/git-stree/default.nix diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index c38e34bf450..584c880566a 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -62,6 +62,8 @@ rec { git-remote-hg = callPackage ./git-remote-hg { }; + git-stree = callPackage ./git-stree { }; + git2cl = import ./git2cl { inherit fetchgit stdenv perl; }; diff --git a/pkgs/applications/version-management/git-and-tools/git-stree/default.nix b/pkgs/applications/version-management/git-and-tools/git-stree/default.nix new file mode 100644 index 00000000000..ef33b82e5c6 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/git-stree/default.nix @@ -0,0 +1,26 @@ +{ stdenv, lib, fetchFromGitHub, ... }: + +stdenv.mkDerivation rec { + name = "git-stree-${version}"; + version = "0.4.5"; + + src = fetchFromGitHub { + owner = "tdd"; + repo = "git-stree"; + rev = "0.4.5"; + sha256 = "0y5h44n38w6rhy9m591dvibxpfggj3q950ll7y4h49bhpks4m0l9"; + }; + + installPhase = '' + mkdir -p $out/bin $out/etc/bash_completion.d + install -m 0755 git-stree $out/bin/ + install -m 0644 git-stree-completion.bash $out/etc/bash_completion.d/ + ''; + + meta = with lib; { + description = "A better Git subtree helper command"; + homepage = http://deliciousinsights.github.io/git-stree; + license = licenses.mit; + maintainers = [ maintainers.benley ]; + }; +} From 629a89343eb52469d3edb1ef7f586e4cad0275c3 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Fri, 26 Feb 2016 01:31:58 +0100 Subject: [PATCH 248/291] simp_le: external_pem.sh plugin is now called external.sh --- nixos/modules/security/acme.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 3d25e811e67..c5cd0fb60ee 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -56,7 +56,7 @@ let plugins = mkOption { type = types.listOf (types.enum [ - "cert.der" "cert.pem" "chain.pem" "external_pem.sh" + "cert.der" "cert.pem" "chain.pem" "external.sh" "fullchain.pem" "full.pem" "key.der" "key.pem" "account_key.json" ]); default = [ "fullchain.pem" "key.pem" "account_key.json" ]; From 4e5ef470a7131cd825850b67bea6b148c08359c2 Mon Sep 17 00:00:00 2001 From: Tanner Doshier Date: Fri, 19 Feb 2016 11:49:31 -0600 Subject: [PATCH 249/291] ec2-data: ensure providing a SSH host key is actually optional 27016659046a8f8e7b4fd61ecbceaf9f5e306258 broke this. --- nixos/modules/virtualisation/ec2-data.nix | 24 ++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/nixos/modules/virtualisation/ec2-data.nix b/nixos/modules/virtualisation/ec2-data.nix index bee26261268..db3dd9949c1 100644 --- a/nixos/modules/virtualisation/ec2-data.nix +++ b/nixos/modules/virtualisation/ec2-data.nix @@ -43,18 +43,20 @@ with lib; mkdir -m 0755 -p /etc/ssh - key="$(sed 's/|/\n/g; s/SSH_HOST_DSA_KEY://; t; d' $userData)" - key_pub="$(sed 's/SSH_HOST_DSA_KEY_PUB://; t; d' $userData)" - if [ -n "$key" -a -n "$key_pub" -a ! -e /etc/ssh/ssh_host_dsa_key ]; then - (umask 077; echo "$key" > /etc/ssh/ssh_host_dsa_key) - echo "$key_pub" > /etc/ssh/ssh_host_dsa_key.pub - fi + if [ -s "$userData" ]; then + key="$(sed 's/|/\n/g; s/SSH_HOST_DSA_KEY://; t; d' $userData)" + key_pub="$(sed 's/SSH_HOST_DSA_KEY_PUB://; t; d' $userData)" + if [ -n "$key" -a -n "$key_pub" -a ! -e /etc/ssh/ssh_host_dsa_key ]; then + (umask 077; echo "$key" > /etc/ssh/ssh_host_dsa_key) + echo "$key_pub" > /etc/ssh/ssh_host_dsa_key.pub + fi - key="$(sed 's/|/\n/g; s/SSH_HOST_ED25519_KEY://; t; d' $userData)" - key_pub="$(sed 's/SSH_HOST_ED25519_KEY_PUB://; t; d' $userData)" - if [ -n "$key" -a -n "$key_pub" -a ! -e /etc/ssh/ssh_host_ed25519_key ]; then - (umask 077; echo "$key" > /etc/ssh/ssh_host_ed25519_key) - echo "$key_pub" > /etc/ssh/ssh_host_ed25519_key.pub + key="$(sed 's/|/\n/g; s/SSH_HOST_ED25519_KEY://; t; d' $userData)" + key_pub="$(sed 's/SSH_HOST_ED25519_KEY_PUB://; t; d' $userData)" + if [ -n "$key" -a -n "$key_pub" -a ! -e /etc/ssh/ssh_host_ed25519_key ]; then + (umask 077; echo "$key" > /etc/ssh/ssh_host_ed25519_key) + echo "$key_pub" > /etc/ssh/ssh_host_ed25519_key.pub + fi fi ''; From 70c02402c8cefa163db39adb2e676196e0aa5dcf Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 26 Feb 2016 03:28:56 +0100 Subject: [PATCH 250/291] networkmanager: fix link-local ip addresses NetworkManager needs an additional avahi-user to use link-local IPv4 (and probably IPv6) addresses. avahi-autoipd also needs to be patched to the right path. --- nixos/modules/misc/ids.nix | 1 + nixos/modules/services/networking/networkmanager.nix | 5 +++++ pkgs/tools/networking/network-manager/default.nix | 2 ++ 3 files changed, 8 insertions(+) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index f3883ff56d3..6ae37f273df 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -252,6 +252,7 @@ gammu-smsd = 228; pdnsd = 229; octoprint = 230; + avahi-autoipd = 231; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index 01c05fb4a24..eb2b9d692f8 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -228,6 +228,11 @@ in { users.extraUsers = [{ name = "nm-openvpn"; uid = config.ids.uids.nm-openvpn; + } + { + # to enable link-local connections + name = "avahi-autoipd"; + uid = config.ids.uids.avahi-autoipd; }]; systemd.packages = cfg.packages; diff --git a/pkgs/tools/networking/network-manager/default.nix b/pkgs/tools/networking/network-manager/default.nix index c86b59d4835..c23b818e048 100644 --- a/pkgs/tools/networking/network-manager/default.nix +++ b/pkgs/tools/networking/network-manager/default.nix @@ -20,6 +20,8 @@ stdenv.mkDerivation rec { --replace /bin/sh ${stdenv.shell} \ --replace /usr/sbin/ethtool ${ethtool}/sbin/ethtool \ --replace /bin/sed ${gnused}/bin/sed + # to enable link-local connections + substituteInPlace src/devices/nm-device.c --replace '("avahi-autoipd", NULL, NULL)' '("avahi-autoipd", &"${avahi}/sbin/avahi-autoipd", NULL)' configureFlags="$configureFlags --with-udev-dir=$out/lib/udev" ''; From 737e808913be98d674c280711cdd2304e0c79a50 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 25 Feb 2016 22:06:19 -0600 Subject: [PATCH 251/291] libssh2: 1.6.0 -> 1.7.0 This release includes the following changes: o libssh2_session_set_last_error: Add function o mac: Add support for HMAC-SHA-256 and HMAC-SHA-512 o WinCNG: support for SHA256/512 HMAC o kex: Added diffie-hellman-group-exchange-sha256 support o OS/400 crypto library QC3 support This release includes the following security advisory: o diffie_hellman_sha256: convert bytes to bits CVE-2016-0787: http://www.libssh2.org/adv_20160223.html This release includes the following bugfixes: o SFTP: Increase speed and datasize in SFTP read o openssl: make libssh2_sha1 return error code o openssl: fix memleak in _libssh2_dsa_sha1_verify() o cmake: include CMake files in the release tarballs o Fix builds with Visual Studio 2015 o hostkey.c: Fix compiling error when OPENSSL_NO_MD5 is defined o GNUmakefile: add support for LIBSSH2_LDFLAG_EXTRAS o GNUmakefile: add -m64 CFLAGS when targeting mingw64 o kex: free server host key before allocating it (again) o SCP: add libssh2_scp_recv2 to support large (> 2GB) files on windows o channel: Detect bad usage of libssh2_channel_process_startup o userauth: Fix off by one error when reading public key file o kex: removed dupe entry from libssh2_kex_methods o _libssh2_error: Support allocating the error message o hostkey: fix invalid memory access if libssh2_dsa_new fails o hostkey: align code path of ssh_rsa_init to ssh_dss_init o libssh2.pc.in: fix the output of pkg-config --libs o wincng: fixed possible memory leak in _libssh2_wincng_hash o wincng: fixed _libssh2_wincng_hash_final return value o add OpenSSL 1.1.0-pre2 compatibility o agent_disconnect_unix: unset the agent fd after closing it o sftp: stop reading when buffer is full o sftp: Send at least one read request before reading o sftp: Don't return EAGAIN if data was written to buffer o sftp: Check read packet file offset o configure: build "silent" if possible o openssl: add OpenSSL 1.1.0-pre3-dev compatibility o GNUmakefile: list system libs after user libs --- pkgs/development/libraries/libssh2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libssh2/default.nix b/pkgs/development/libraries/libssh2/default.nix index 5e12ea734c1..32681784335 100644 --- a/pkgs/development/libraries/libssh2/default.nix +++ b/pkgs/development/libraries/libssh2/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurlBoot, openssl, zlib, windows}: stdenv.mkDerivation rec { - name = "libssh2-1.6.0"; + name = "libssh2-1.7.0"; src = fetchurlBoot { url = "${meta.homepage}/download/${name}.tar.gz"; - sha256 = "05c2is69c50lyikkh29nk6zhghjk4i7hjx0zqfhq47aald1jj82s"; + sha256 = "116mh112w48vv9k3f15ggp5kxw5sj4b88dzb5j69llsh7ba1ymp4"; }; buildInputs = [ openssl zlib ]; From e08dd09c254cb31216c4e3bc946a8c5b73ab5645 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Fri, 26 Feb 2016 00:29:07 -0500 Subject: [PATCH 252/291] emacs: add optional support for 24-bit color ttys --- .../applications/editors/emacs-24/default.nix | 11 +- .../editors/emacs-24/tty-true-color.patch | 428 ++++++++++++++++++ 2 files changed, 437 insertions(+), 2 deletions(-) create mode 100644 pkgs/applications/editors/emacs-24/tty-true-color.patch diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix index 1db56577278..35fcaecb112 100644 --- a/pkgs/applications/editors/emacs-24/default.nix +++ b/pkgs/applications/editors/emacs-24/default.nix @@ -1,10 +1,11 @@ -{ stdenv, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d +{ stdenv, lib, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d , pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif , libtiff, librsvg, texinfo, gconf, libxml2, imagemagick, gnutls , alsaLib, cairo, acl, gpm, AppKit, CoreWLAN, Kerberos, GSS, ImageIO , withX ? !stdenv.isDarwin , withGTK3 ? false, gtk3 ? null , withGTK2 ? true, gtk2 +, enableTTYTrueColor ? false }: assert (libXft != null) -> libpng != null; # probably a bug @@ -31,8 +32,14 @@ stdenv.mkDerivation rec { sha256 = "0kn3rzm91qiswi0cql89kbv6mqn27rwsyjfb8xmwy9m5s8fxfiyx"; }; - patches = stdenv.lib.optionals stdenv.isDarwin [ + patches = lib.optionals stdenv.isDarwin [ ./at-fdcwd.patch + ] ++ lib.optionals enableTTYTrueColor [ + # Modified TTY True Color patch from: https://gist.github.com/choppsv1/36aacdd696d505566088 + # To use, pass --color=true-color, which will default to using ';' + # as the separator. + # Alternatively, set $EMACS_TRUE_COLOR_SEPARATOR to ';' or ':'. + ./tty-true-color.patch ]; postPatch = '' diff --git a/pkgs/applications/editors/emacs-24/tty-true-color.patch b/pkgs/applications/editors/emacs-24/tty-true-color.patch new file mode 100644 index 00000000000..09ceeb658ab --- /dev/null +++ b/pkgs/applications/editors/emacs-24/tty-true-color.patch @@ -0,0 +1,428 @@ +diff --git a/lisp/term/tty-colors.el b/lisp/term/tty-colors.el +index 98108ce..21814a9 100644 +--- a/lisp/term/tty-colors.el ++++ b/lisp/term/tty-colors.el +@@ -764,7 +764,8 @@ + (auto . 0) + (ansi8 . 8) + (always . 8) +- (yes . 8)) ++ (yes . 8) ++ (true-color . 16777216)) + "An alist of supported standard tty color modes and their aliases.") + + (defun tty-color-alist (&optional _frame) +diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el +index c673749..244cf7f 100644 +--- a/lisp/term/xterm.el ++++ b/lisp/term/xterm.el +@@ -674,6 +674,15 @@ versions of xterm." + ;; are more colors to support, compute them now. + (when (> ncolors 0) + (cond ++ ((= (display-color-cells (selected-frame)) 16777216) ; 24-bit xterm ++ (let ((idx (length xterm-standard-colors))) ++ ;; Insert standard X colors after the standard xterm ones ++ (mapc (lambda (color) ++ (if (not (assoc (car color) xterm-standard-colors)) ++ (progn ++ (tty-color-define (car color) idx (cdr color)) ++ (setq idx (1+ idx))))) ++ color-name-rgb-alist))) + ((= ncolors 240) ; 256-color xterm + ;; 216 non-gray colors first + (let ((r 0) (g 0) (b 0)) +diff --git a/src/dispextern.h b/src/dispextern.h +index 239c442..5760b84 100644 +--- a/src/dispextern.h ++++ b/src/dispextern.h +@@ -1739,9 +1739,15 @@ struct face + INLINE bool + face_tty_specified_color (unsigned long color) + { +- return color < FACE_TTY_DEFAULT_BG_COLOR; ++ return (color < FACE_TTY_DEFAULT_BG_COLOR); + } + ++INLINE bool ++face_tty_specified_24_bit_color (unsigned long color) ++{ ++ /* 24 bit colors have 24th but not 25th bit set */ ++ return ((color & (0x03 << 24)) == (0x01 << 24)); ++} + /* Non-zero if FACE was realized for unibyte use. */ + + #define FACE_UNIBYTE_P(FACE) ((FACE)->charset < 0) +diff --git a/src/term.c b/src/term.c +index 8312491..b14aded 100644 +--- a/src/term.c ++++ b/src/term.c +@@ -1915,18 +1915,40 @@ turn_on_face (struct frame *f, int face_id) + const char *ts; + char *p; + +- ts = tty->standout_mode ? tty->TS_set_background : tty->TS_set_foreground; ++ if (face_tty_specified_24_bit_color(fg)) ++ ts = tty->standout_mode ? tty->TS_set_rgb_background : tty->TS_set_rgb_foreground; ++ else ++ ts = tty->standout_mode ? tty->TS_set_background : tty->TS_set_foreground; + if (face_tty_specified_color (fg) && ts) + { +- p = tparam (ts, NULL, 0, fg, 0, 0, 0); ++ if (!face_tty_specified_24_bit_color(fg)) ++ p = tparam (ts, NULL, 0, fg, 0, 0, 0); ++ else ++ { ++ const unsigned char r = (fg >> 16) & 0xFF, ++ g = (fg >> 8) & 0xFF, ++ b = fg & 0xFF; ++ p = tparam (ts, NULL, 0, (int)r, (int)g, (int)b, 0); ++ } + OUTPUT (tty, p); + xfree (p); + } + +- ts = tty->standout_mode ? tty->TS_set_foreground : tty->TS_set_background; ++ if (face_tty_specified_24_bit_color(bg)) ++ ts = tty->standout_mode ? tty->TS_set_rgb_foreground : tty->TS_set_rgb_background; ++ else ++ ts = tty->standout_mode ? tty->TS_set_foreground : tty->TS_set_background; + if (face_tty_specified_color (bg) && ts) + { +- p = tparam (ts, NULL, 0, bg, 0, 0, 0); ++ if (!face_tty_specified_24_bit_color(bg)) ++ p = tparam (ts, NULL, 0, bg, 0, 0, 0); ++ else ++ { ++ const unsigned char r = (bg >> 16) & 0xFF, ++ g = (bg >> 8) & 0xFF, ++ b = bg & 0xFF; ++ p = tparam (ts, NULL, 0, (int)r, (int)g, (int)b, 0); ++ } + OUTPUT (tty, p); + xfree (p); + } +@@ -2028,6 +2050,8 @@ TERMINAL does not refer to a text terminal. */) + struct terminal *t = get_tty_terminal (terminal, 0); + if (!t) + return make_number (0); ++ else if (t->display_info.tty->TS_set_rgb_foreground) ++ return make_number (16777216); /* 24 bit True Color */ + else + return make_number (t->display_info.tty->TN_max_colors); + } +@@ -2043,6 +2067,8 @@ static int default_no_color_video; + static char *default_orig_pair; + static char *default_set_foreground; + static char *default_set_background; ++static char *default_set_rgb_foreground; ++static char *default_set_rgb_background; + + /* Save or restore the default color-related capabilities of this + terminal. */ +@@ -2055,6 +2081,8 @@ tty_default_color_capabilities (struct tty_display_info *tty, bool save) + dupstring (&default_orig_pair, tty->TS_orig_pair); + dupstring (&default_set_foreground, tty->TS_set_foreground); + dupstring (&default_set_background, tty->TS_set_background); ++ dupstring (&default_set_rgb_foreground, tty->TS_set_rgb_foreground); ++ dupstring (&default_set_rgb_background, tty->TS_set_rgb_background); + default_max_colors = tty->TN_max_colors; + default_max_pairs = tty->TN_max_pairs; + default_no_color_video = tty->TN_no_color_video; +@@ -2064,6 +2092,8 @@ tty_default_color_capabilities (struct tty_display_info *tty, bool save) + tty->TS_orig_pair = default_orig_pair; + tty->TS_set_foreground = default_set_foreground; + tty->TS_set_background = default_set_background; ++ tty->TS_set_rgb_foreground = default_set_rgb_foreground; ++ tty->TS_set_rgb_background = default_set_rgb_background; + tty->TN_max_colors = default_max_colors; + tty->TN_max_pairs = default_max_pairs; + tty->TN_no_color_video = default_no_color_video; +@@ -2088,6 +2118,7 @@ tty_setup_colors (struct tty_display_info *tty, int mode) + tty->TN_max_pairs = 0; + tty->TN_no_color_video = 0; + tty->TS_set_foreground = tty->TS_set_background = tty->TS_orig_pair = NULL; ++ tty->TS_set_rgb_foreground = tty->TS_set_rgb_background = NULL; + break; + case 0: /* default colors, if any */ + default: +@@ -2102,10 +2133,45 @@ tty_setup_colors (struct tty_display_info *tty, int mode) + tty->TS_set_foreground = "\033[3%dm"; + tty->TS_set_background = "\033[4%dm"; + #endif ++ tty->TS_set_rgb_foreground = NULL; ++ tty->TS_set_rgb_background = NULL; + tty->TN_max_colors = 8; + tty->TN_max_pairs = 64; + tty->TN_no_color_video = 0; + break; ++ case 16777216: /* RGB colors */ ++ tty->TS_orig_pair = "\033[0m"; ++ ++ /* if the user hasn't explicitly chosen the ":" separator, use ";". */ ++ char * true_color_separator = getenv ("EMACS_TRUE_COLOR_SEPARATOR"); ++ if (true_color_separator && strcmp (true_color_separator, ":") == 0) ++ { ++ /* XXX chopps use ITU T.421 ':' separator */ ++ /* TODO This should be extracted from terminfo/termcap. */ ++#ifdef TERMINFO ++ tty->TS_set_rgb_foreground = "\033[38:2:%p1%d:%p2%d:%p3%dm"; ++ tty->TS_set_rgb_background = "\033[48:2:%p1%d:%p2%d:%p3%dm"; ++#else ++ tty->TS_set_rgb_foreground = "\033[38:2:%d:%d:%dm"; ++ tty->TS_set_rgb_background = "\033[48:2:%d:%d:%dm"; ++#endif ++ } ++ else ++ { ++ /* TODO This should be extracted from terminfo/termcap. */ ++#ifdef TERMINFO ++ tty->TS_set_rgb_foreground = "\033[38;2;%p1%d;%p2%d;%p3%dm"; ++ tty->TS_set_rgb_background = "\033[48;2;%p1%d;%p2%d;%p3%dm"; ++#else ++ tty->TS_set_rgb_foreground = "\033[38;2;%d;%d;%dm"; ++ tty->TS_set_rgb_background = "\033[48;2;%d;%d;%dm"; ++#endif ++ } ++ ++ tty->TN_max_colors = 16777216; ++ /*tty->TN_max_pairs = 64; TODO */ ++ tty->TN_no_color_video = 0; ++ break; + } + } + +@@ -4201,6 +4267,38 @@ use the Bourne shell command `TERM=... export TERM' (C-shell:\n\ + tty->TN_no_color_video = tgetnum ("NC"); + if (tty->TN_no_color_video == -1) + tty->TN_no_color_video = 0; ++ ++ ++ /* Allow the user to opt-in to True Color support. */ ++ char * true_color_separator = getenv ("EMACS_TRUE_COLOR_SEPARATOR"); ++ if (true_color_separator && strcmp (true_color_separator, ";") == 0) ++ { ++ /* TODO This should be extracted from terminfo/termcap. */ ++#ifdef TERMINFO ++ tty->TS_set_rgb_foreground = "\033[38;2;%p1%d;%p2%d;%p3%dm"; ++ tty->TS_set_rgb_background = "\033[48;2;%p1%d;%p2%d;%p3%dm"; ++#else ++ tty->TS_set_rgb_foreground = "\033[38;2;%d;%d;%dm"; ++ tty->TS_set_rgb_background = "\033[48;2;%d;%d;%dm"; ++#endif ++ } ++ else if (true_color_separator && strcmp (true_color_separator, ":") == 0) ++ { ++ /* XXX chopps use ITU T.421 ':' separator */ ++ /* TODO This should be extracted from terminfo/termcap. */ ++#ifdef TERMINFO ++ tty->TS_set_rgb_foreground = "\033[38:2:%p1%d:%p2%d:%p3%dm"; ++ tty->TS_set_rgb_background = "\033[48:2:%p1%d:%p2%d:%p3%dm"; ++#else ++ tty->TS_set_rgb_foreground = "\033[38:2:%d:%d:%dm"; ++ tty->TS_set_rgb_background = "\033[48:2:%d:%d:%dm"; ++#endif ++ } ++ else ++ { ++ tty->TS_set_rgb_foreground = NULL; ++ tty->TS_set_rgb_background = NULL; ++ } + } + + tty_default_color_capabilities (tty, 1); +diff --git a/src/termchar.h b/src/termchar.h +index d8066d7..e48d583 100644 +--- a/src/termchar.h ++++ b/src/termchar.h +@@ -157,6 +157,10 @@ struct tty_display_info + const char *TS_set_foreground; + const char *TS_set_background; + ++ /* Support for 24bit RGB color terminals. */ ++ const char *TS_set_rgb_foreground; ++ const char *TS_set_rgb_background; ++ + int TF_hazeltine; /* termcap hz flag. */ + int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */ + int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */ +diff --git a/src/xfaces.c b/src/xfaces.c +index 29c91f7..347ebf8 100644 +--- a/src/xfaces.c ++++ b/src/xfaces.c +@@ -382,7 +382,7 @@ static ptrdiff_t lface_id_to_name_size; + + /* TTY color-related functions (defined in tty-colors.el). */ + +-static Lisp_Object Qtty_color_desc, Qtty_color_by_index, Qtty_color_standard_values; ++static Lisp_Object Qtty_color_desc, Qtty_color_by_index, Qtty_color_standard_values, Qtty_color_canonicalize; + + /* The name of the function used to compute colors on TTYs. */ + +@@ -943,54 +943,80 @@ tty_lookup_color (struct frame *f, Lisp_Object color, XColor *tty_color, + if (!STRINGP (color) || NILP (Ffboundp (Qtty_color_desc))) + return 0; + +- XSETFRAME (frame, f); +- +- color_desc = call2 (Qtty_color_desc, color, frame); +- if (CONSP (color_desc) && CONSP (XCDR (color_desc))) ++ if (f->output_method == output_termcap ++ && f->output_data.tty->display_info->TS_set_rgb_foreground ++ && !NILP (Ffboundp (Qtty_color_standard_values))) + { +- Lisp_Object rgb; +- +- if (! INTEGERP (XCAR (XCDR (color_desc)))) +- return 0; ++ /* Terminal supports 3 byte RGB colors. */ ++ if (!NILP (Ffboundp (Qtty_color_canonicalize))) ++ color = call1(Qtty_color_canonicalize, color); + +- tty_color->pixel = XINT (XCAR (XCDR (color_desc))); ++ color_desc = call1 (Qtty_color_standard_values, color); ++ if (! parse_rgb_list (color_desc, tty_color)) ++ return 0; + +- rgb = XCDR (XCDR (color_desc)); +- if (! parse_rgb_list (rgb, tty_color)) +- return 0; ++ /* Map XColor to 3 byte values. */ ++ tty_color->pixel = 1 << 24 /* Set bit 24 to mark RGB values. */ ++ | (tty_color->red / 256) << 16 ++ | (tty_color->green / 256) << 8 ++ | (tty_color->blue / 256); + +- /* Should we fill in STD_COLOR too? */ + if (std_color) +- { +- /* Default STD_COLOR to the same as TTY_COLOR. */ +- *std_color = *tty_color; +- +- /* Do a quick check to see if the returned descriptor is +- actually _exactly_ equal to COLOR, otherwise we have to +- lookup STD_COLOR separately. If it's impossible to lookup +- a standard color, we just give up and use TTY_COLOR. */ +- if ((!STRINGP (XCAR (color_desc)) +- || NILP (Fstring_equal (color, XCAR (color_desc)))) +- && !NILP (Ffboundp (Qtty_color_standard_values))) +- { +- /* Look up STD_COLOR separately. */ +- rgb = call1 (Qtty_color_standard_values, color); +- if (! parse_rgb_list (rgb, std_color)) +- return 0; +- } +- } ++ *std_color = *tty_color; + + return 1; + } +- else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist")))) +- /* We were called early during startup, and the colors are not +- yet set up in tty-defined-color-alist. Don't return a failure +- indication, since this produces the annoying "Unable to +- load color" messages in the *Messages* buffer. */ +- return 1; + else +- /* tty-color-desc seems to have returned a bad value. */ +- return 0; ++ { ++ XSETFRAME (frame, f); ++ ++ color_desc = call2 (Qtty_color_desc, color, frame); ++ if (CONSP (color_desc) && CONSP (XCDR (color_desc))) ++ { ++ Lisp_Object rgb; ++ ++ if (! INTEGERP (XCAR (XCDR (color_desc)))) ++ return 0; ++ ++ tty_color->pixel = XINT (XCAR (XCDR (color_desc))); ++ ++ rgb = XCDR (XCDR (color_desc)); ++ if (! parse_rgb_list (rgb, tty_color)) ++ return 0; ++ ++ /* Should we fill in STD_COLOR too? */ ++ if (std_color) ++ { ++ /* Default STD_COLOR to the same as TTY_COLOR. */ ++ *std_color = *tty_color; ++ ++ /* Do a quick check to see if the returned descriptor is ++ actually _exactly_ equal to COLOR, otherwise we have to ++ lookup STD_COLOR separately. If it's impossible to lookup ++ a standard color, we just give up and use TTY_COLOR. */ ++ if ((!STRINGP (XCAR (color_desc)) ++ || NILP (Fstring_equal (color, XCAR (color_desc)))) ++ && !NILP (Ffboundp (Qtty_color_standard_values))) ++ { ++ /* Look up STD_COLOR separately. */ ++ rgb = call1 (Qtty_color_standard_values, color); ++ if (! parse_rgb_list (rgb, std_color)) ++ return 0; ++ } ++ } ++ ++ return 1; ++ } ++ else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist")))) ++ /* We were called early during startup, and the colors are not ++ yet set up in tty-defined-color-alist. Don't return a failure ++ indication, since this produces the annoying "Unable to ++ load color" messages in the *Messages* buffer. */ ++ return 1; ++ else ++ /* tty-color-desc seems to have returned a bad value. */ ++ return 0; ++ } + } + + /* A version of defined_color for non-X frames. */ +@@ -1008,7 +1034,9 @@ tty_defined_color (struct frame *f, const char *color_name, + color_def->green = 0; + + if (*color_name) +- status = tty_lookup_color (f, build_string (color_name), color_def, NULL); ++ { ++ status = tty_lookup_color (f, build_string (color_name), color_def, NULL); ++ } + + if (color_def->pixel == FACE_TTY_DEFAULT_COLOR && *color_name) + { +@@ -5780,6 +5808,7 @@ map_tty_color (struct frame *f, struct face *face, + unsigned long default_pixel = + foreground_p ? FACE_TTY_DEFAULT_FG_COLOR : FACE_TTY_DEFAULT_BG_COLOR; + unsigned long pixel = default_pixel; ++ XColor true_color; + #ifdef MSDOS + unsigned long default_other_pixel = + foreground_p ? FACE_TTY_DEFAULT_BG_COLOR : FACE_TTY_DEFAULT_FG_COLOR; +@@ -5798,7 +5827,18 @@ map_tty_color (struct frame *f, struct face *face, + { + /* Associations in tty-defined-color-alist are of the form + (NAME INDEX R G B). We need the INDEX part. */ +- pixel = XINT (XCAR (XCDR (def))); ++ if (f->output_method == output_termcap ++ && f->output_data.tty->display_info->TS_set_rgb_foreground ++ && parse_rgb_list (XCDR (XCDR(def)), &true_color)) ++ { ++ /* Map XColor to 3 byte values. */ ++ pixel = 1 << 24 /* Set bit 24 to mark RGB values. */ ++ | (true_color.red / 256) << 16 ++ | (true_color.green / 256) << 8 ++ | (true_color.blue / 256); ++ } ++ else ++ pixel = XINT (XCAR (XCDR (def))); + } + + if (pixel == default_pixel && STRINGP (color)) +@@ -6460,6 +6500,7 @@ syms_of_xfaces (void) + DEFSYM (Qwindow_divider, "window-divider"); + DEFSYM (Qwindow_divider_first_pixel, "window-divider-first-pixel"); + DEFSYM (Qwindow_divider_last_pixel, "window-divider-last-pixel"); ++ DEFSYM (Qtty_color_canonicalize, "tty-color-canonicalize"); + DEFSYM (Qtty_color_desc, "tty-color-desc"); + DEFSYM (Qtty_color_standard_values, "tty-color-standard-values"); + DEFSYM (Qtty_color_by_index, "tty-color-by-index"); From ce7aa7188045e2e646d199b7ea6e3dd64d056865 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Thu, 25 Feb 2016 19:07:46 -0500 Subject: [PATCH 253/291] vte-ng: 0.42.1.a -> 0.42.4.a --- pkgs/desktops/gnome-3/3.18/core/vte/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/vte/default.nix b/pkgs/desktops/gnome-3/3.18/core/vte/default.nix index 86dfd953b48..334718403a0 100644 --- a/pkgs/desktops/gnome-3/3.18/core/vte/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/vte/default.nix @@ -43,12 +43,12 @@ let baseAttrs = rec { in stdenv.mkDerivation ( baseAttrs // stdenv.lib.optionalAttrs selectTextPatch rec { name = "vte-ng-${version}"; - version = "0.42.1.a"; + version = "0.42.4.a"; src = fetchFromGitHub { owner = "thestinger"; repo = "vte-ng"; rev = version; - sha256 = "1296rvngixi6l31mhhaks6vr1xyqw8h6n5hwknadrlk95nknrpxm"; + sha256 = "1w91lz30j5lrskp9ds5j3nn27m5mpdpn7nlcvf5y1w63mpmjg8k1"; }; # slightly hacky; I couldn't make it work with autoreconfHook configureScript = "./autogen.sh"; From bcfa59bf822dc696e963d7abccfdff2e58e70525 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 30 Jan 2016 14:47:04 +0100 Subject: [PATCH 254/291] gitlab: 8.0.5 -> 8.5.0, service improvements Updates gitlab to the current stable version and fixes a lot of features that were broken, at least with the current version and our configuration. Quite a lot of sweat and tears has gone into testing nearly all features and reading/patching the Gitlab source as we're about to deploy gitlab for our whole company. Things to note: * The gitlab config is now written as a nix attribute set and will be converted to JSON. Gitlab uses YAML but JSON is a subset of YAML. The `extraConfig` opition is also an attribute set that will be merged with the default config. This way *all* Gitlab options are supported. * Some paths like uploads and configs are hardcoded in rails (at least after my study of the Gitlab source). This is why they are linked from the Gitlab root to /run/gitlab and then linked to the configurable `statePath`. * Backup & restore should work out of the box from another Gitlab instance. * gitlab-git-http-server has been replaced by gitlab-workhorse upstream. Push & pull over HTTPS works perfectly. Communication to gitlab is done over unix sockets. An HTTP server is required to proxy requests to gitlab-workhorse over another unix socket at `/run/gitlab/gitlab-workhorse.socket`. * The user & group running gitlab are now configurable. These can even be changed for live instances. * The initial email address & password of the root user can be configured. Fixes #8598. --- nixos/modules/rename.nix | 3 + nixos/modules/services/misc/gitlab.nix | 359 +- .../gitlab-git-http-server/default.nix | 23 - .../gitlab-shell/default.nix | 15 +- .../remove-hardcoded-locations.patch | 13 + .../gitlab-workhorse/default.nix | 26 + .../remove-hardcoded-paths.patch | 12 + .../version-management/gitlab/Gemfile | 187 +- .../version-management/gitlab/Gemfile.lock | 746 ++- .../version-management/gitlab/default.nix | 34 +- .../version-management/gitlab/gemset.nix | 5697 ++++++++--------- .../gitlab/nulladapter.patch | 29 + .../gitlab/remove-hardcoded-locations.patch | 169 +- pkgs/top-level/all-packages.nix | 6 +- 14 files changed, 3741 insertions(+), 3578 deletions(-) delete mode 100644 pkgs/applications/version-management/gitlab-git-http-server/default.nix create mode 100644 pkgs/applications/version-management/gitlab-shell/remove-hardcoded-locations.patch create mode 100644 pkgs/applications/version-management/gitlab-workhorse/default.nix create mode 100644 pkgs/applications/version-management/gitlab-workhorse/remove-hardcoded-paths.patch create mode 100644 pkgs/applications/version-management/gitlab/nulladapter.patch diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 6d5ee6fc84e..85435884b19 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -28,6 +28,9 @@ with lib; (mkRenamedOptionModule [ "services" "subsonic" "host" ] [ "services" "subsonic" "listenAddress" ]) (mkRenamedOptionModule [ "jobs" ] [ "systemd" "services" ]) + (mkRenamedOptionModule [ "services" "gitlab" "stateDir" ] [ "services" "gitlab" "statePath" ]) + (mkRemovedOptionModule [ "services" "gitlab" "satelliteDir" ]) + # Old Grub-related options. (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]) (mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 949357ab20f..074f1a040b8 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -21,14 +21,15 @@ let username: ${cfg.databaseUsername} encoding: utf8 ''; + gitlabShellYml = '' - user: gitlab - gitlab_url: "http://${cfg.host}:${toString cfg.port}/" + user: ${cfg.user} + gitlab_url: "http://localhost:8080/" http_settings: self_signed_cert: false - repos_path: "${cfg.stateDir}/repositories" - secret_file: "${cfg.stateDir}/config/gitlab_shell_secret" - log_file: "${cfg.stateDir}/log/gitlab-shell.log" + repos_path: "${cfg.statePath}/repositories" + secret_file: "${cfg.statePath}/config/gitlab_shell_secret" + log_file: "${cfg.statePath}/log/gitlab-shell.log" redis: bin: ${pkgs.redis}/bin/redis-cli host: 127.0.0.1 @@ -37,33 +38,101 @@ let namespace: resque:gitlab ''; + gitlabConfig = { + production = flip recursiveUpdate cfg.extraConfig { + gitlab = { + host = cfg.host; + port = cfg.port; + https = cfg.https; + user = cfg.user; + email_enabled = true; + email_display_name = "GitLab"; + email_reply_to = "noreply@localhost"; + default_theme = 2; + default_projects_features = { + issues = true; + merge_requests = true; + wiki = false; + snippets = false; + builds = true; + }; + }; + artifacts = { + enabled = true; + }; + lfs = { + enabled = true; + }; + gravatar = { + enabled = true; + }; + cron_jobs = { + stuck_ci_builds_worker = { + cron = "0 0 * * *"; + }; + }; + gitlab_ci = { + builds_path = "${cfg.statePath}/builds"; + }; + ldap = { + enabled = false; + }; + omniauth = { + enabled = false; + }; + shared = { + path = "${cfg.statePath}/shared"; + }; + backup = { + path = "${cfg.backupPath}"; + }; + gitlab_shell = { + path = "${pkgs.gitlab-shell}"; + repos_path = "${cfg.statePath}/repositories"; + hooks_path = "${cfg.statePath}/shell/hooks"; + secret_file = "${cfg.statePath}/config/gitlab_shell_secret"; + upload_pack = true; + receive_pack = true; + }; + git = { + bin_path = "git"; + max_size = 20971520; # 20MB + timeout = 10; + }; + extra = {}; + }; + }; + + gitlabEnv = { + HOME = "${cfg.statePath}/home"; + GEM_HOME = gemHome; + BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; + UNICORN_PATH = "${cfg.statePath}/"; + GITLAB_PATH = "${pkgs.gitlab}/share/gitlab/"; + GITLAB_STATE_PATH = "${cfg.statePath}"; + GITLAB_UPLOADS_PATH = "${cfg.statePath}/uploads"; + GITLAB_LOG_PATH = "${cfg.statePath}/log"; + GITLAB_SHELL_PATH = "${pkgs.gitlab-shell}"; + GITLAB_SHELL_CONFIG_PATH = "${cfg.statePath}/shell/config.yml"; + GITLAB_SHELL_SECRET_PATH = "${cfg.statePath}/config/gitlab_shell_secret"; + GITLAB_SHELL_HOOKS_PATH = "${cfg.statePath}/shell/hooks"; + RAILS_ENV = "production"; + }; + unicornConfig = builtins.readFile ./defaultUnicornConfig.rb; gitlab-runner = pkgs.stdenv.mkDerivation rec { name = "gitlab-runner"; - buildInputs = [ pkgs.gitlab pkgs.bundler pkgs.makeWrapper ]; + buildInputs = with pkgs; [ gitlab bundler makeWrapper ]; phases = "installPhase fixupPhase"; buildPhase = ""; installPhase = '' mkdir -p $out/bin - makeWrapper ${bundler}/bin/bundle $out/bin/gitlab-runner\ - --set RAKEOPT '"-f ${pkgs.gitlab}/share/gitlab/Rakefile"'\ - --set GEM_HOME '${gemHome}'\ - --set UNICORN_PATH "${cfg.stateDir}/"\ - --set GITLAB_PATH "${pkgs.gitlab}/share/gitlab/"\ - --set GITLAB_APPLICATION_LOG_PATH "${cfg.stateDir}/log/application.log"\ - --set GITLAB_SATELLITES_PATH "${cfg.stateDir}/satellites"\ - --set GITLAB_SHELL_PATH "${pkgs.gitlab-shell}"\ - --set GITLAB_REPOSITORIES_PATH "${cfg.stateDir}/repositories"\ - --set GITLAB_SHELL_HOOKS_PATH "${cfg.stateDir}/shell/hooks"\ - --set BUNDLE_GEMFILE "${pkgs.gitlab}/share/gitlab/Gemfile"\ - --set GITLAB_EMAIL_FROM "${cfg.emailFrom}"\ - --set GITLAB_SHELL_CONFIG_PATH "${cfg.stateDir}/shell/config.yml"\ - --set GITLAB_SHELL_SECRET_PATH "${cfg.stateDir}/config/gitlab_shell_secret"\ - --set GITLAB_HOST "${cfg.host}"\ - --set GITLAB_PORT "${toString cfg.port}"\ - --set GITLAB_BACKUP_PATH "${cfg.backupPath}"\ - --set RAILS_ENV "production" + makeWrapper ${bundler}/bin/bundle $out/bin/gitlab-runner \ + ${concatStrings (mapAttrsToList (name: value: "--set ${name} '\"${value}\"' ") gitlabEnv)} \ + --set GITLAB_CONFIG_PATH '"${cfg.statePath}/config"' \ + --set PATH '"${pkgs.nodejs}/bin:${pkgs.gzip}/bin:${config.services.postgresql.package}/bin:$PATH"' \ + --set RAKEOPT '"-f ${pkgs.gitlab}/share/gitlab/Rakefile"' ''; }; @@ -79,13 +148,7 @@ in { ''; }; - satelliteDir = mkOption { - type = types.str; - default = "/var/gitlab/git-satellites"; - description = "Gitlab directory to store checked out git trees requires for operation."; - }; - - stateDir = mkOption { + statePath = mkOption { type = types.str; default = "/var/gitlab/state"; description = "Gitlab state directory, logs are stored here."; @@ -93,7 +156,7 @@ in { backupPath = mkOption { type = types.str; - default = cfg.stateDir + "/backup"; + default = cfg.statePath + "/backup"; description = "Gitlab path for backups."; }; @@ -136,7 +199,60 @@ in { port = mkOption { type = types.int; default = 8080; - description = "Gitlab server listening port."; + description = '' + Gitlab server port for copy-paste URLs, e.g. 80 or 443 if you're + service over https. + ''; + }; + + https = mkOption { + type = types.bool; + default = false; + description = "Whether gitlab prints URLs with https as scheme."; + }; + + user = mkOption { + type = types.str; + default = "gitlab"; + description = "User to run gitlab and all related services."; + }; + + group = mkOption { + type = types.str; + default = "gitlab"; + description = "Group to run gitlab and all related services."; + }; + + initialRootEmail = mkOption { + type = types.str; + default = "admin@local.host"; + description = '' + Initial email address of the root account if this is a new install. + ''; + }; + + initialRootPassword = mkOption { + type = types.str; + default = "UseNixOS!"; + description = '' + Initial password of the root account if this is a new install. + ''; + }; + + extraConfig = mkOption { + type = types.attrs; + default = ""; + example = { + gitlab = { + default_projects_features = { + builds = false; + }; + }; + }; + description = '' + Extra options to be merged into config/gitlab.yml as nix + attribute set. + ''; }; }; }; @@ -159,39 +275,24 @@ in { services.postfix.enable = mkDefault true; users.extraUsers = [ - { name = "gitlab"; - group = "gitlab"; - home = "${cfg.stateDir}/home"; + { name = cfg.user; + group = cfg.group; + home = "${cfg.statePath}/home"; shell = "${pkgs.bash}/bin/bash"; uid = config.ids.uids.gitlab; - } ]; + } + ]; users.extraGroups = [ - { name = "gitlab"; + { name = cfg.group; gid = config.ids.gids.gitlab; - } ]; + } + ]; systemd.services.gitlab-sidekiq = { after = [ "network.target" "redis.service" ]; wantedBy = [ "multi-user.target" ]; - environment.HOME = "${cfg.stateDir}/home"; - environment.GEM_HOME = gemHome; - environment.UNICORN_PATH = "${cfg.stateDir}/"; - environment.GITLAB_PATH = "${pkgs.gitlab}/share/gitlab/"; - environment.GITLAB_APPLICATION_LOG_PATH = "${cfg.stateDir}/log/application.log"; - environment.GITLAB_SATELLITES_PATH = "${cfg.stateDir}/satellites"; - environment.GITLAB_SHELL_PATH = "${pkgs.gitlab-shell}"; - environment.GITLAB_REPOSITORIES_PATH = "${cfg.stateDir}/repositories"; - environment.GITLAB_SHELL_HOOKS_PATH = "${cfg.stateDir}/shell/hooks"; - environment.BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; - environment.GITLAB_EMAIL_FROM = "${cfg.emailFrom}"; - environment.GITLAB_SHELL_CONFIG_PATH = "${cfg.stateDir}/shell/config.yml"; - environment.GITLAB_SHELL_SECRET_PATH = "${cfg.stateDir}/config/gitlab_shell_secret"; - environment.GITLAB_HOST = "${cfg.host}"; - environment.GITLAB_PORT = "${toString cfg.port}"; - environment.GITLAB_DATABASE_HOST = "${cfg.databaseHost}"; - environment.GITLAB_DATABASE_PASSWORD = "${cfg.databasePassword}"; - environment.RAILS_ENV = "production"; + environment = gitlabEnv; path = with pkgs; [ config.services.postgresql.package gitAndTools.git @@ -201,116 +302,132 @@ in { ]; serviceConfig = { Type = "simple"; - User = "gitlab"; - Group = "gitlab"; + User = cfg.user; + Group = cfg.group; TimeoutSec = "300"; WorkingDirectory = "${pkgs.gitlab}/share/gitlab"; - ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.stateDir}/tmp/sidekiq.pid\""; + ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\""; }; }; - systemd.services.gitlab-git-http-server = { + systemd.services.gitlab-workhorse = { after = [ "network.target" "gitlab.service" ]; wantedBy = [ "multi-user.target" ]; - environment.HOME = "${cfg.stateDir}/home"; + environment.HOME = gitlabEnv.HOME; + environment.GITLAB_SHELL_CONFIG_PATH = gitlabEnv.GITLAB_SHELL_CONFIG_PATH; path = with pkgs; [ gitAndTools.git openssh ]; + preStart = '' + mkdir -p /run/gitlab + chown ${cfg.user}:${cfg.group} /run/gitlab + ''; serviceConfig = { + PermissionsStartOnly = true; # preStart must be run as root Type = "simple"; - User = "gitlab"; - Group = "gitlab"; + User = cfg.user; + Group = cfg.group; TimeoutSec = "300"; - ExecStart = "${pkgs.gitlab-git-http-server}/bin/gitlab-git-http-server -listenUmask 0 -listenNetwork unix -listenAddr ${cfg.stateDir}/tmp/sockets/gitlab-git-http-server.socket -authBackend http://localhost:8080 ${cfg.stateDir}/repositories"; + ExecStart = + "${pkgs.gitlab-workhorse}/bin/gitlab-workhorse " + + "-listenUmask 0 " + + "-listenNetwork unix " + + "-listenAddr /run/gitlab/gitlab-workhorse.socket " + + "-authSocket ${cfg.statePath}/tmp/sockets/gitlab.socket " + + "-documentRoot ${pkgs.gitlab}/share/gitlab/public"; }; }; systemd.services.gitlab = { after = [ "network.target" "postgresql.service" "redis.service" ]; wantedBy = [ "multi-user.target" ]; - environment.HOME = "${cfg.stateDir}/home"; - environment.GEM_HOME = gemHome; - environment.UNICORN_PATH = "${cfg.stateDir}/"; - environment.GITLAB_PATH = "${pkgs.gitlab}/share/gitlab/"; - environment.GITLAB_APPLICATION_LOG_PATH = "${cfg.stateDir}/log/application.log"; - environment.GITLAB_SATELLITES_PATH = "${cfg.stateDir}/satellites"; - environment.GITLAB_SHELL_PATH = "${pkgs.gitlab-shell}"; - environment.GITLAB_SHELL_CONFIG_PATH = "${cfg.stateDir}/shell/config.yml"; - environment.GITLAB_SHELL_SECRET_PATH = "${cfg.stateDir}/config/gitlab_shell_secret"; - environment.GITLAB_REPOSITORIES_PATH = "${cfg.stateDir}/repositories"; - environment.GITLAB_SHELL_HOOKS_PATH = "${cfg.stateDir}/shell/hooks"; - environment.BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; - environment.GITLAB_EMAIL_FROM = "${cfg.emailFrom}"; - environment.GITLAB_HOST = "${cfg.host}"; - environment.GITLAB_PORT = "${toString cfg.port}"; - environment.GITLAB_DATABASE_HOST = "${cfg.databaseHost}"; - environment.GITLAB_DATABASE_PASSWORD = "${cfg.databasePassword}"; - environment.RAILS_ENV = "production"; + environment = gitlabEnv; path = with pkgs; [ config.services.postgresql.package gitAndTools.git - ruby openssh nodejs + sudo ]; preStart = '' - # TODO: use env vars - mkdir -p ${cfg.stateDir} - mkdir -p ${cfg.stateDir}/log - mkdir -p ${cfg.stateDir}/satellites - mkdir -p ${cfg.stateDir}/repositories - mkdir -p ${cfg.stateDir}/shell/hooks - mkdir -p ${cfg.stateDir}/tmp/pids - mkdir -p ${cfg.stateDir}/tmp/sockets - rm -rf ${cfg.stateDir}/config - mkdir -p ${cfg.stateDir}/config + mkdir -p ${cfg.backupPath} + mkdir -p ${cfg.statePath}/builds + mkdir -p ${cfg.statePath}/repositories + mkdir -p ${gitlabConfig.production.shared.path}/artifacts + mkdir -p ${gitlabConfig.production.shared.path}/lfs-objects + mkdir -p ${cfg.statePath}/log + mkdir -p ${cfg.statePath}/shell + mkdir -p ${cfg.statePath}/tmp/pids + mkdir -p ${cfg.statePath}/tmp/sockets + + rm -rf ${cfg.statePath}/config ${cfg.statePath}/shell/hooks + mkdir -p ${cfg.statePath}/config ${cfg.statePath}/shell + # TODO: What exactly is gitlab-shell doing with the secret? - tr -dc _A-Z-a-z-0-9 < /dev/urandom | head -c 20 > ${cfg.stateDir}/config/gitlab_shell_secret - mkdir -p ${cfg.stateDir}/home/.ssh - touch ${cfg.stateDir}/home/.ssh/authorized_keys + tr -dc _A-Z-a-z-0-9 < /dev/urandom | head -c 20 > ${cfg.statePath}/config/gitlab_shell_secret - cp -rf ${pkgs.gitlab}/share/gitlab/config ${cfg.stateDir}/ - cp ${pkgs.gitlab}/share/gitlab/VERSION ${cfg.stateDir}/VERSION + # The uploads directory is hardcoded somewhere deep in rails. It is + # symlinked in the gitlab package to /run/gitlab/uploads to make it + # configurable + mkdir -p /run/gitlab + mkdir -p ${cfg.statePath}/uploads + ln -sf ${cfg.statePath}/uploads /run/gitlab/uploads + chown -R ${cfg.user}:${cfg.group} /run/gitlab - ln -fs ${pkgs.writeText "database.yml" databaseYml} ${cfg.stateDir}/config/database.yml - ln -fs ${pkgs.writeText "unicorn.rb" unicornConfig} ${cfg.stateDir}/config/unicorn.rb + # Prepare home directory + mkdir -p ${gitlabEnv.HOME}/.ssh + touch ${gitlabEnv.HOME}/.ssh/authorized_keys + chown -R ${cfg.user}:${cfg.group} ${gitlabEnv.HOME}/ + chmod -R u+rwX,go-rwx+X ${gitlabEnv.HOME}/ - chown -R gitlab:gitlab ${cfg.stateDir}/ - chmod -R 755 ${cfg.stateDir}/ + cp -rf ${pkgs.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config + ln -sf ${cfg.statePath}/config /run/gitlab/config + cp ${pkgs.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION + + # JSON is a subset of YAML + ln -fs ${pkgs.writeText "gitlab.yml" (builtins.toJSON gitlabConfig)} ${cfg.statePath}/config/gitlab.yml + ln -fs ${pkgs.writeText "database.yml" databaseYml} ${cfg.statePath}/config/database.yml + ln -fs ${pkgs.writeText "unicorn.rb" unicornConfig} ${cfg.statePath}/config/unicorn.rb + + chown -R ${cfg.user}:${cfg.group} ${cfg.statePath}/ + chmod -R ug+rwX,o-rwx+X ${cfg.statePath}/ + + # Install the shell required to push repositories + ln -fs ${pkgs.writeText "config.yml" gitlabShellYml} "$GITLAB_SHELL_CONFIG_PATH" + ln -fs ${pkgs.gitlab-shell}/hooks "$GITLAB_SHELL_HOOKS_PATH" + ${pkgs.gitlab-shell}/bin/install if [ "${cfg.databaseHost}" = "127.0.0.1" ]; then - if ! test -e "${cfg.stateDir}/db-created"; then - psql postgres -c "CREATE ROLE gitlab WITH LOGIN NOCREATEDB NOCREATEROLE NOCREATEUSER ENCRYPTED PASSWORD '${cfg.databasePassword}'" + if ! test -e "${cfg.statePath}/db-created"; then + psql postgres -c "CREATE ROLE gitlab WITH LOGIN CREATEDB NOCREATEROLE NOCREATEUSER ENCRYPTED PASSWORD '${cfg.databasePassword}'" ${config.services.postgresql.package}/bin/createdb --owner gitlab gitlab || true - touch "${cfg.stateDir}/db-created" + touch "${cfg.statePath}/db-created" - # force=yes disables the manual-interaction yes/no prompt - # which breaks without an stdin. - force=yes ${bundler}/bin/bundle exec rake -f ${pkgs.gitlab}/share/gitlab/Rakefile gitlab:setup RAILS_ENV=production + # The gitlab:setup task is horribly broken somehow, these two tasks will do the same for setting up the initial database + ${gitlab-runner}/bin/gitlab-runner exec rake db:migrate RAILS_ENV=production + ${gitlab-runner}/bin/gitlab-runner exec rake db:seed_fu RAILS_ENV=production \ + GITLAB_ROOT_PASSWORD="${cfg.initialRootPassword}" GITLAB_ROOT_EMAIL="${cfg.initialRootEmail}"; fi fi - ${bundler}/bin/bundle exec rake -f ${pkgs.gitlab}/share/gitlab/Rakefile db:migrate RAILS_ENV=production - # Install the shell required to push repositories - ln -fs ${pkgs.writeText "config.yml" gitlabShellYml} ${cfg.stateDir}/shell/config.yml - export GITLAB_SHELL_CONFIG_PATH=""${cfg.stateDir}/shell/config.yml - ${pkgs.gitlab-shell}/bin/install + # Always do the db migrations just to be sure the database is up-to-date + ${gitlab-runner}/bin/gitlab-runner exec rake db:migrate RAILS_ENV=production - # Change permissions in the last step because some of the - # intermediary scripts like to create directories as root. - chown -R gitlab:gitlab ${cfg.stateDir}/ - chmod -R 755 ${cfg.stateDir}/ + # Change permissions in the last step because some of the + # intermediary scripts like to create directories as root. + chown -R ${cfg.user}:${cfg.group} ${cfg.statePath} + chmod -R u+rwX,go-rwx+X ${cfg.statePath} ''; serviceConfig = { PermissionsStartOnly = true; # preStart must be run as root Type = "simple"; - User = "gitlab"; - Group = "gitlab"; + User = cfg.user; + Group = cfg.group; TimeoutSec = "300"; WorkingDirectory = "${pkgs.gitlab}/share/gitlab"; - ExecStart="${bundler}/bin/bundle exec \"unicorn -c ${cfg.stateDir}/config/unicorn.rb -E production\""; + ExecStart="${bundler}/bin/bundle exec \"unicorn -c ${cfg.statePath}/config/unicorn.rb -E production\""; }; }; diff --git a/pkgs/applications/version-management/gitlab-git-http-server/default.nix b/pkgs/applications/version-management/gitlab-git-http-server/default.nix deleted file mode 100644 index 98b14d2ce86..00000000000 --- a/pkgs/applications/version-management/gitlab-git-http-server/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ stdenv, fetchgit, git, go }: - -stdenv.mkDerivation rec { - version = "0.2.14"; - name = "gitlab-git-http-server-${version}"; - - srcs = fetchgit { - url = "https://gitlab.com/gitlab-org/gitlab-git-http-server.git"; - rev = "7c63f08f7051348e56b903fc0bbefcfed398fc1c"; - sha256 = "557d63a90c61371598b971a06bc056993610b58c2ef5762d9ef145ec2fdada78"; - }; - - buildInputs = [ git go ]; - - buildPhase = '' - make PREFIX=$out - ''; - - installPhase = '' - mkdir -p $out/bin - make install PREFIX=$out - ''; -} diff --git a/pkgs/applications/version-management/gitlab-shell/default.nix b/pkgs/applications/version-management/gitlab-shell/default.nix index 5ee59c1e255..c2e746630da 100644 --- a/pkgs/applications/version-management/gitlab-shell/default.nix +++ b/pkgs/applications/version-management/gitlab-shell/default.nix @@ -1,19 +1,22 @@ -{ stdenv, ruby, bundler, fetchgit }: +{ stdenv, ruby, bundler, fetchFromGitLab }: stdenv.mkDerivation rec { - version = "2.1.0"; + version = "2.6.10"; name = "gitlab-shell-${version}"; - srcs = fetchgit { - url = "https://gitlab.com/gitlab-org/gitlab-shell.git"; - rev = "ebbb9d80811c23d49a7d1b75d7a7d2b8ffe7437b"; - sha256 = "fe69ab85d75a3871b4afa11ebc17f43008d135bbdbd6c581f6bebee2a4a3c75d"; + srcs = fetchFromGitLab { + owner = "gitlab-org"; + repo = "gitlab-shell"; + rev = "v${version}"; + sha256 = "1f1ma49xpkan2iksnw9amzjdw6i0bxnzdbsk0329m7if4987vcqd"; }; buildInputs = [ ruby bundler ]; + patches = [ ./remove-hardcoded-locations.patch ]; + installPhase = '' mkdir -p $out/ cp -R . $out/ diff --git a/pkgs/applications/version-management/gitlab-shell/remove-hardcoded-locations.patch b/pkgs/applications/version-management/gitlab-shell/remove-hardcoded-locations.patch new file mode 100644 index 00000000000..e1c924cdeef --- /dev/null +++ b/pkgs/applications/version-management/gitlab-shell/remove-hardcoded-locations.patch @@ -0,0 +1,13 @@ +diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb +index c1d175a..7f7fd2f 100644 +--- a/lib/gitlab_projects.rb ++++ b/lib/gitlab_projects.rb +@@ -5,7 +5,7 @@ require_relative 'gitlab_config' + require_relative 'gitlab_logger' + + class GitlabProjects +- GLOBAL_HOOKS_DIRECTORY = File.join(ROOT_PATH, 'hooks') ++ GLOBAL_HOOKS_DIRECTORY = ENV['GITLAB_SHELL_HOOKS_PATH'] || File.join(ROOT_PATH, 'hooks') + + # Project name is a directory name for repository with .git at the end + # It may be namespaced or not. Like repo.git or gitlab/repo.git diff --git a/pkgs/applications/version-management/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab-workhorse/default.nix new file mode 100644 index 00000000000..06c05d9f3b3 --- /dev/null +++ b/pkgs/applications/version-management/gitlab-workhorse/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchFromGitLab, git, go }: + +stdenv.mkDerivation rec { + version = "0.6.4"; + name = "gitlab-workhorse-${version}"; + + srcs = fetchFromGitLab { + owner = "gitlab-org"; + repo = "gitlab-workhorse"; + rev = version; + sha256 = "09bs3kdmqi6avdak2nqma141y4fhfv050zwqqx7qh9a9hgkgwjxw"; + }; + + buildInputs = [ git go ]; + + patches = [ ./remove-hardcoded-paths.patch ]; + + buildPhase = '' + make PREFIX=$out + ''; + + installPhase = '' + mkdir -p $out/bin + make install PREFIX=$out + ''; +} diff --git a/pkgs/applications/version-management/gitlab-workhorse/remove-hardcoded-paths.patch b/pkgs/applications/version-management/gitlab-workhorse/remove-hardcoded-paths.patch new file mode 100644 index 00000000000..37f3d2deef5 --- /dev/null +++ b/pkgs/applications/version-management/gitlab-workhorse/remove-hardcoded-paths.patch @@ -0,0 +1,12 @@ +diff --git a/internal/git/command.go b/internal/git/command.go +index 0e5496c..5778294 100644 +--- a/internal/git/command.go ++++ b/internal/git/command.go +@@ -16,6 +16,7 @@ func gitCommand(gl_id string, name string, args ...string) *exec.Cmd { + cmd.Env = []string{ + fmt.Sprintf("HOME=%s", os.Getenv("HOME")), + fmt.Sprintf("PATH=%s", os.Getenv("PATH")), ++ fmt.Sprintf("GITLAB_SHELL_CONFIG_PATH=%s", os.Getenv("GITLAB_SHELL_CONFIG_PATH")), + fmt.Sprintf("LD_LIBRARY_PATH=%s", os.Getenv("LD_LIBRARY_PATH")), + fmt.Sprintf("GL_ID=%s", gl_id), + } diff --git a/pkgs/applications/version-management/gitlab/Gemfile b/pkgs/applications/version-management/gitlab/Gemfile index 66261426c01..ec40f246394 100644 --- a/pkgs/applications/version-management/gitlab/Gemfile +++ b/pkgs/applications/version-management/gitlab/Gemfile @@ -1,14 +1,10 @@ source "https://rubygems.org" -def darwin_only(require_as) - RUBY_PLATFORM.include?('darwin') && require_as -end +gem 'rails', '4.2.5.1' +gem 'rails-deprecated_sanitizer', '~> 1.0.3' -def linux_only(require_as) - RUBY_PLATFORM.include?('linux') && require_as -end - -gem 'rails', '4.1.12' +# Responders respond_to and respond_with +gem 'responders', '~> 2.0' # Specify a sprockets version due to security issue # See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY @@ -22,20 +18,27 @@ gem "mysql2", '~> 0.3.16', group: :mysql gem "pg", '~> 0.18.2', group: :postgres # Authentication libraries -gem "devise", '~> 3.5.2' -gem "devise-async", '~> 0.9.0' -gem 'omniauth', "~> 1.2.2" -gem 'omniauth-google-oauth2', '~> 0.2.5' -gem 'omniauth-twitter', '~> 1.0.1' -gem 'omniauth-github', '~> 1.1.1' -gem 'omniauth-shibboleth', '~> 1.1.1' -gem 'omniauth-kerberos', '~> 0.2.0', group: :kerberos -gem 'omniauth-gitlab', '~> 1.0.0' -gem 'omniauth-bitbucket', '~> 0.0.2' -gem 'omniauth-saml', '~> 1.4.0' -gem 'doorkeeper', '~> 2.1.3' -gem 'omniauth_crowd' -gem "rack-oauth2", "~> 1.0.5" +gem 'devise', '~> 3.5.4' +gem 'devise-async', '~> 0.9.0' +gem 'doorkeeper', '~> 2.2.0' +gem 'omniauth', '~> 1.3.1' +gem 'omniauth-azure-oauth2', '~> 0.0.6' +gem 'omniauth-bitbucket', '~> 0.0.2' +gem 'omniauth-cas3', '~> 1.1.2' +gem 'omniauth-facebook', '~> 3.0.0' +gem 'omniauth-github', '~> 1.1.1' +gem 'omniauth-gitlab', '~> 1.0.0' +gem 'omniauth-google-oauth2', '~> 0.2.0' +gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos +gem 'omniauth-saml', '~> 1.4.2' +gem 'omniauth-shibboleth', '~> 1.2.0' +gem 'omniauth-twitter', '~> 1.2.0' +gem 'omniauth_crowd', '~> 2.2.0' +gem 'rack-oauth2', '~> 1.2.1' + +# Spam and anti-bot protection +gem 'recaptcha', require: 'recaptcha/rails' +gem 'akismet', '~> 2.0' # Two-factor authentication gem 'devise-two-factor', '~> 2.0.0' @@ -47,7 +50,7 @@ gem "browser", '~> 1.0.0' # Extracting information from a git repository # Provide access to Gitlab::Git library -gem "gitlab_git", '~> 7.2.15' +gem "gitlab_git", '~> 8.2' # LDAP Auth # GitLab fork with several improvements to original library. For full list of changes @@ -55,32 +58,21 @@ gem "gitlab_git", '~> 7.2.15' gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: "omniauth-ldap" # Git Wiki -gem 'gollum-lib', '~> 4.0.2' +gem 'gollum-lib', '~> 4.1.0' # Language detection -# GitLab fork of linguist does not require pygments/python dependency. -# New version of original gem also dropped pygments support but it has strict -# dependency to unstable rugged version. We have internal issue for replacing -# fork with original gem when we meet on same rugged version - https://dev.gitlab.org/gitlab/gitlabhq/issues/2052. -gem "gitlab-linguist", "~> 3.0.1", require: "linguist" +gem "github-linguist", "~> 4.7.0", require: "linguist" # API -gem "grape", "~> 0.6.1" -gem "grape-entity", "~> 0.4.2" -gem 'rack-cors', '~> 0.2.9', require: 'rack/cors' - -# Format dates and times -# based on human-friendly examples -gem "stamp", '~> 0.5.0' - -# Enumeration fields -gem 'enumerize', '~> 0.7.0' +gem 'grape', '~> 0.13.0' +gem 'grape-entity', '~> 0.4.2' +gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' # Pagination -gem "kaminari", "~> 0.15.1" +gem "kaminari", "~> 0.16.3" # HAML -gem "haml-rails", '~> 0.5.3' +gem "haml-rails", '~> 0.9.0' # Files attachments gem "carrierwave", '~> 0.9.0' @@ -89,7 +81,7 @@ gem "carrierwave", '~> 0.9.0' gem 'dropzonejs-rails', '~> 0.7.1' # for aws storage -gem "fog", "~> 1.25.0" +gem "fog", "~> 1.36.0" gem "unf", '~> 0.1.4' # Authorization @@ -102,13 +94,18 @@ gem "seed-fu", '~> 2.3.5' gem 'html-pipeline', '~> 1.11.0' gem 'task_list', '~> 1.0.2', require: 'task_list/railtie' gem 'github-markup', '~> 1.3.1' -gem 'redcarpet', '~> 3.3.2' +gem 'redcarpet', '~> 3.3.3' gem 'RedCloth', '~> 4.2.9' gem 'rdoc', '~>3.6' gem 'org-ruby', '~> 0.9.12' -gem 'creole', '~>0.3.6' +gem 'creole', '~> 0.5.0' gem 'wikicloth', '0.8.1' gem 'asciidoctor', '~> 1.5.2' +gem 'rouge', '~> 1.10.1' + +# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s +# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM +gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2' # Diffs gem 'diffy', '~> 3.0.3' @@ -120,7 +117,7 @@ group :unicorn do end # State machine -gem "state_machine", '~> 1.2.0' +gem "state_machines-activerecord", '~> 0.3.0' # Run events after state machine commits gem 'after_commit_queue' @@ -128,17 +125,16 @@ gem 'after_commit_queue' gem 'acts-as-taggable-on', '~> 3.4' # Background jobs -gem 'slim', '~> 2.0.2' gem 'sinatra', '~> 1.4.4', require: nil -gem 'sidekiq', '3.3.0' -gem 'sidetiq', '~> 0.6.3' +gem 'sidekiq', '~> 4.0' +gem 'sidekiq-cron', '~> 0.4.0' +gem 'redis-namespace' # HTTP requests gem "httparty", '~> 0.13.3' # Colored output to console -gem "colored", '~> 1.2' -gem "colorize", '~> 0.5.8' +gem "colorize", '~> 0.7.0' # GitLab settings gem 'settingslogic', '~> 2.0.9' @@ -151,7 +147,7 @@ gem 'version_sorter', '~> 2.0.0' gem "redis-rails", '~> 4.0.0' # Campfire integration -gem 'tinder', '~> 1.9.2' +gem 'tinder', '~> 1.10.0' # HipChat integration gem 'hipchat', '~> 1.5.0' @@ -163,28 +159,32 @@ gem "gitlab-flowdock-git-hook", "~> 1.0.1" gem "gemnasium-gitlab-service", "~> 0.2" # Slack integration -gem "slack-notifier", "~> 1.0.0" +gem "slack-notifier", "~> 1.2.0" # Asana integration -gem 'asana', '~> 0.0.6' +gem 'asana', '~> 0.4.0' # FogBugz integration gem 'ruby-fogbugz', '~> 0.2.1' # d3 -gem 'd3_rails', '~> 3.5.5' +gem 'd3_rails', '~> 3.5.0' #cal-heatmap -gem "cal-heatmap-rails", "~> 0.0.1" +gem 'cal-heatmap-rails', '~> 3.5.0' # underscore-rails -gem "underscore-rails", "~> 1.4.4" +gem "underscore-rails", "~> 1.8.0" # Sanitize user input gem "sanitize", '~> 2.0' +gem 'babosa', '~> 1.0.2' + +# Sanitizes SVG input +gem "loofah", "~> 2.0.3" # Protect against bruteforcing -gem "rack-attack", '~> 4.3.0' +gem "rack-attack", '~> 4.3.1' # Ace editor gem 'ace-rails-ap', '~> 2.0.1' @@ -193,38 +193,52 @@ gem 'ace-rails-ap', '~> 2.0.1' gem 'mousetrap-rails', '~> 1.4.6' # Detect and convert string character encoding -gem 'charlock_holmes', '~> 0.6.9.4' +gem 'charlock_holmes', '~> 0.7.3' -gem "sass-rails", '~> 4.0.5' +gem "sass-rails", '~> 5.0.0' gem "coffee-rails", '~> 4.1.0' -gem "uglifier", '~> 2.3.2' +gem "uglifier", '~> 2.7.2' gem 'turbolinks', '~> 2.5.0' -gem 'jquery-turbolinks', '~> 2.0.1' +gem 'jquery-turbolinks', '~> 2.1.0' gem 'addressable', '~> 2.3.8' -gem 'bootstrap-sass', '~> 3.0' +gem 'bootstrap-sass', '~> 3.3.0' gem 'font-awesome-rails', '~> 4.2' -gem 'gitlab_emoji', '~> 0.1' -gem 'gon', '~> 5.0.0' -gem 'jquery-atwho-rails', '~> 1.0.0' -gem 'jquery-rails', '~> 3.1.3' +gem 'gitlab_emoji', '~> 0.3.0' +gem 'gon', '~> 6.0.1' +gem 'jquery-atwho-rails', '~> 1.3.2' +gem 'jquery-rails', '~> 4.0.0' gem 'jquery-scrollto-rails', '~> 1.4.3' -gem 'jquery-ui-rails', '~> 4.2.1' -gem 'nprogress-rails', '~> 0.1.2.3' +gem 'jquery-ui-rails', '~> 5.0.0' +gem 'nprogress-rails', '~> 0.1.6.7' gem 'raphael-rails', '~> 2.1.2' gem 'request_store', '~> 1.2.0' gem 'select2-rails', '~> 3.5.9' gem 'virtus', '~> 1.0.1' +gem 'net-ssh', '~> 3.0.1' + +# Sentry integration +gem 'sentry-raven' + +# Metrics +group :metrics do + gem 'allocations', '~> 1.0', require: false, platform: :mri + gem 'method_source', '~> 0.8', require: false + gem 'influxdb', '~> 0.2', require: false + gem 'connection_pool', '~> 2.0', require: false +end group :development do gem "foreman" - gem 'brakeman', '3.0.1', require: false + gem 'brakeman', '~> 3.1.0', require: false gem "annotate", "~> 2.6.0" gem "letter_opener", '~> 1.1.2' gem 'quiet_assets', '~> 1.0.2' - gem 'rack-mini-profiler', '~> 0.9.0', require: false - gem 'rerun', '~> 0.10.0' + gem 'rerun', '~> 0.11.0' + gem 'bullet', require: false + gem 'rblineprof', platform: :mri, require: false + gem 'web-console', '~> 2.0' # Better errors handler gem 'better_errors', '~> 1.0.1' @@ -241,7 +255,7 @@ group :development, :test do gem 'byebug', platform: :mri gem 'pry-rails' - gem 'awesome_print', '~> 1.2.0' + gem 'awesome_print', '~> 1.2.0', require: false gem 'fuubar', '~> 2.0.0' gem 'database_cleaner', '~> 1.4.0' @@ -257,7 +271,7 @@ group :development, :test do gem 'capybara', '~> 2.4.0' gem 'capybara-screenshot', '~> 1.0.0' - gem 'poltergeist', '~> 1.6.0' + gem 'poltergeist', '~> 1.8.1' gem 'teaspoon', '~> 1.0.0' gem 'teaspoon-jasmine', '~> 2.2.0' @@ -267,16 +281,21 @@ group :development, :test do gem 'spring-commands-spinach', '~> 1.0.0' gem 'spring-commands-teaspoon', '~> 0.0.2' - gem 'rubocop', '~> 0.28.0', require: false + gem 'rubocop', '~> 0.35.0', require: false gem 'coveralls', '~> 0.8.2', require: false gem 'simplecov', '~> 0.10.0', require: false + gem 'flog', require: false + gem 'flay', require: false + gem 'bundler-audit', require: false + + gem 'benchmark-ips', require: false end group :test do gem 'shoulda-matchers', '~> 2.8.0', require: false gem 'email_spec', '~> 1.6.0' gem 'webmock', '~> 1.21.0' - gem 'test_after_commit', '~> 0.2.2' + gem 'test_after_commit', '~> 0.4.2' gem 'sham_rack' end @@ -284,12 +303,9 @@ group :production do gem "gitlab_meta", '7.0' end -gem "newrelic_rpm", '~> 3.9.4.245' -gem 'newrelic-grape' +gem 'octokit', '~> 3.8.0' -gem 'octokit', '~> 3.7.0' - -gem "mail_room", "~> 0.5.2" +gem "mail_room", "~> 0.6.1" gem 'email_reply_parser', '~> 0.5.8' @@ -298,19 +314,10 @@ gem 'activerecord-deprecated_finders', '~> 1.0.3' gem 'activerecord-session_store', '~> 0.1.0' gem "nested_form", '~> 0.3.2' -# Scheduled -gem 'whenever', '~> 0.8.4', require: false - # OAuth gem 'oauth2', '~> 1.0.0' # Soft deletion gem "paranoia", "~> 2.0" -group :development, :test do - gem 'guard-rspec', '~> 4.2.0' - - gem 'rb-fsevent', require: darwin_only('rb-fsevent') - gem 'growl', require: darwin_only('growl') - gem 'rb-inotify', require: linux_only('rb-inotify') -end +gem "activerecord-nulldb-adapter" diff --git a/pkgs/applications/version-management/gitlab/Gemfile.lock b/pkgs/applications/version-management/gitlab/Gemfile.lock index 56db3f61985..ff16e6284fa 100644 --- a/pkgs/applications/version-management/gitlab/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/Gemfile.lock @@ -1,63 +1,75 @@ GEM remote: https://rubygems.org/ specs: - CFPropertyList (2.3.1) + CFPropertyList (2.3.2) RedCloth (4.2.9) ace-rails-ap (2.0.1) - actionmailer (4.1.12) - actionpack (= 4.1.12) - actionview (= 4.1.12) + actionmailer (4.2.5.1) + actionpack (= 4.2.5.1) + actionview (= 4.2.5.1) + activejob (= 4.2.5.1) mail (~> 2.5, >= 2.5.4) - actionpack (4.1.12) - actionview (= 4.1.12) - activesupport (= 4.1.12) - rack (~> 1.5.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + actionpack (4.2.5.1) + actionview (= 4.2.5.1) + activesupport (= 4.2.5.1) + rack (~> 1.6) rack-test (~> 0.6.2) - actionview (4.1.12) - activesupport (= 4.1.12) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.5.1) + activesupport (= 4.2.5.1) builder (~> 3.1) erubis (~> 2.7.0) - activemodel (4.1.12) - activesupport (= 4.1.12) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + activejob (4.2.5.1) + activesupport (= 4.2.5.1) + globalid (>= 0.3.0) + activemodel (4.2.5.1) + activesupport (= 4.2.5.1) builder (~> 3.1) - activerecord (4.1.12) - activemodel (= 4.1.12) - activesupport (= 4.1.12) - arel (~> 5.0.0) + activerecord (4.2.5.1) + activemodel (= 4.2.5.1) + activesupport (= 4.2.5.1) + arel (~> 6.0) activerecord-deprecated_finders (1.0.4) - activerecord-session_store (0.1.1) + activerecord-nulldb-adapter (0.3.2) + activerecord (>= 2.0.0) + activerecord-session_store (0.1.2) actionpack (>= 4.0.0, < 5) activerecord (>= 4.0.0, < 5) railties (>= 4.0.0, < 5) - activeresource (4.0.0) - activemodel (~> 4.0) - activesupport (~> 4.0) - rails-observers (~> 0.1.1) - activesupport (4.1.12) - i18n (~> 0.6, >= 0.6.9) + activesupport (4.2.5.1) + i18n (~> 0.7) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) - thread_safe (~> 0.1) + thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) acts-as-taggable-on (3.5.0) activerecord (>= 3.2, < 5) addressable (2.3.8) - after_commit_queue (1.1.0) - rails (>= 3.0) + after_commit_queue (1.3.0) + activerecord (>= 3.0) + akismet (2.0.0) + allocations (1.0.4) annotate (2.6.10) activerecord (>= 3.2, <= 4.3) rake (~> 10.4) - arel (5.0.1.20140414130214) - asana (0.0.6) - activeresource (>= 3.2.3) - asciidoctor (1.5.2) + arel (6.0.3) + asana (0.4.0) + faraday (~> 0.9) + faraday_middleware (~> 0.9) + faraday_middleware-multi_json (~> 0.0) + oauth2 (~> 1.0) + asciidoctor (1.5.3) ast (2.1.0) astrolabe (1.3.1) parser (~> 2.2) attr_encrypted (1.3.4) encryptor (>= 1.3.0) attr_required (1.0.0) - autoprefixer-rails (5.2.1.2) + autoprefixer-rails (6.2.3) execjs json awesome_print (1.2.0) @@ -65,29 +77,39 @@ GEM descendants_tracker (~> 0.0.4) ice_nine (~> 0.11.0) thread_safe (~> 0.3, >= 0.3.1) + babosa (1.0.2) bcrypt (3.1.10) + benchmark-ips (2.3.0) better_errors (1.0.1) coderay (>= 1.0.0) erubis (>= 2.6.6) binding_of_caller (0.7.2) debug_inspector (>= 0.0.1) - bootstrap-sass (3.3.5) - autoprefixer-rails (>= 5.0.0.1) - sass (>= 3.2.19) - brakeman (3.0.1) + bootstrap-sass (3.3.6) + autoprefixer-rails (>= 5.2.1) + sass (>= 3.3.4) + brakeman (3.1.4) erubis (~> 2.6) fastercsv (~> 1.5) haml (>= 3.0, < 5.0) - highline (~> 1.6.20) + highline (>= 1.6.20, < 2.0) multi_json (~> 1.2) - ruby2ruby (~> 2.1.1) - ruby_parser (~> 3.5.0) + ruby2ruby (>= 2.1.1, < 2.3.0) + ruby_parser (~> 3.7.0) + safe_yaml (>= 1.0) sass (~> 3.0) + slim (>= 1.3.6, < 4.0) terminal-table (~> 1.4) - browser (1.0.0) + browser (1.0.1) builder (3.2.2) - byebug (6.0.2) - cal-heatmap-rails (0.0.1) + bullet (4.14.10) + activesupport (>= 3.0.0) + uniform_notifier (~> 1.9.0) + bundler-audit (0.4.0) + bundler (~> 1.2) + thor (~> 0.18) + byebug (8.2.1) + cal-heatmap-rails (3.5.1) capybara (2.4.4) mime-types (>= 1.16) nokogiri (>= 1.3.3) @@ -101,11 +123,9 @@ GEM activemodel (>= 3.2.0) activesupport (>= 3.2.0) json (>= 1.7) - celluloid (0.16.0) - timers (~> 4.0.0) - charlock_holmes (0.6.9.4) - chronic (0.10.2) - chunky_png (1.3.4) + cause (0.1) + charlock_holmes (0.7.3) + chunky_png (1.3.5) cliver (0.3.2) coderay (1.1.0) coercible (1.0.0) @@ -116,29 +136,31 @@ GEM coffee-script (2.4.1) coffee-script-source execjs - coffee-script-source (1.9.1.1) - colored (1.2) - colorize (0.5.8) + coffee-script-source (1.10.0) + colorize (0.7.7) + concurrent-ruby (1.0.0) connection_pool (2.2.0) - coveralls (0.8.2) + coveralls (0.8.9) json (~> 1.8) rest-client (>= 1.6.8, < 2) simplecov (~> 0.10.0) term-ansicolor (~> 1.3) thor (~> 0.19.1) - crack (0.4.2) + tins (~> 1.6.0) + crack (0.4.3) safe_yaml (~> 1.0.0) - creole (0.3.8) - d3_rails (3.5.6) + creole (0.5.0) + d3_rails (3.5.11) railties (>= 3.1.0) daemons (1.2.3) database_cleaner (1.4.1) debug_inspector (0.0.2) + debugger-ruby_core_source (1.3.8) default_value_for (3.0.1) activerecord (>= 3.2.0, < 5.0) descendants_tracker (0.0.4) thread_safe (~> 0.3, >= 0.3.1) - devise (3.5.2) + devise (3.5.4) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 3.2.6, < 5) @@ -147,7 +169,7 @@ GEM warden (~> 1.2.3) devise-async (0.9.0) devise (~> 3.2) - devise-two-factor (2.0.0) + devise-two-factor (2.0.1) activesupport attr_encrypted (~> 1.3.2) devise (~> 3.5.0) @@ -156,22 +178,20 @@ GEM diff-lcs (1.2.5) diffy (3.0.7) docile (1.1.5) - domain_name (0.5.24) + domain_name (0.5.25) unf (>= 0.0.5, < 1.0.0) - doorkeeper (2.1.4) + doorkeeper (2.2.2) railties (>= 3.2) - dropzonejs-rails (0.7.1) + dropzonejs-rails (0.7.2) rails (> 3.1) email_reply_parser (0.5.8) email_spec (1.6.0) launchy (~> 2.1) mail (~> 2.2) encryptor (1.3.0) - enumerize (0.7.0) - activesupport (>= 3.2) equalizer (0.0.11) erubis (2.7.0) - escape_utils (0.2.4) + escape_utils (1.1.0) eventmachine (1.0.8) excon (0.45.4) execjs (2.6.0) @@ -181,59 +201,116 @@ GEM factory_girl_rails (4.3.0) factory_girl (~> 4.3.0) railties (>= 3.0.0) - faraday (0.8.10) - multipart-post (~> 1.2.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) faraday_middleware (0.10.0) faraday (>= 0.7.4, < 0.10) + faraday_middleware-multi_json (0.0.6) + faraday_middleware + multi_json fastercsv (1.5.5) ffaker (2.0.0) ffi (1.9.10) fission (0.5.0) CFPropertyList (~> 2.2) - flowdock (0.7.0) + flay (2.6.1) + ruby_parser (~> 3.0) + sexp_processor (~> 4.0) + flog (4.3.2) + ruby_parser (~> 3.1, > 3.1.0) + sexp_processor (~> 4.4) + flowdock (0.7.1) httparty (~> 0.7) multi_json - fog (1.25.0) + fog (1.36.0) + fog-aliyun (>= 0.1.0) + fog-atmos + fog-aws (>= 0.6.0) fog-brightbox (~> 0.4) - fog-core (~> 1.25) + fog-core (~> 1.32) + fog-dynect (~> 0.0.2) + fog-ecloud (~> 0.1) + fog-google (<= 0.1.0) fog-json + fog-local + fog-powerdns (>= 0.1.1) fog-profitbricks fog-radosgw (>= 0.0.2) + fog-riakcs fog-sakuracloud (>= 0.0.4) + fog-serverlove fog-softlayer + fog-storm_on_demand fog-terremark fog-vmfusion fog-voxel + fog-xenserver fog-xml (~> 0.1.1) ipaddress (~> 0.5) nokogiri (~> 1.5, >= 1.5.11) - opennebula - fog-brightbox (0.9.0) + fog-aliyun (0.1.0) + fog-core (~> 1.27) + fog-json (~> 1.0) + ipaddress (~> 0.8) + xml-simple (~> 1.1) + fog-atmos (0.1.0) + fog-core + fog-xml + fog-aws (0.8.1) + fog-core (~> 1.27) + fog-json (~> 1.0) + fog-xml (~> 0.1) + ipaddress (~> 0.8) + fog-brightbox (0.10.1) fog-core (~> 1.22) fog-json inflecto (~> 0.0.2) - fog-core (1.32.1) + fog-core (1.35.0) builder excon (~> 0.45) formatador (~> 0.2) - mime-types - net-scp (~> 1.1) - net-ssh (>= 2.1.3) + fog-dynect (0.0.2) + fog-core + fog-json + fog-xml + fog-ecloud (0.3.0) + fog-core + fog-xml + fog-google (0.1.0) + fog-core + fog-json + fog-xml fog-json (1.0.2) fog-core (~> 1.0) multi_json (~> 1.10) + fog-local (0.2.1) + fog-core (~> 1.27) + fog-powerdns (0.1.1) + fog-core (~> 1.27) + fog-json (~> 1.0) + fog-xml (~> 0.1) fog-profitbricks (0.0.5) fog-core fog-xml nokogiri - fog-radosgw (0.0.4) + fog-radosgw (0.0.5) fog-core (>= 1.21.0) fog-json fog-xml (>= 0.0.1) - fog-sakuracloud (1.0.1) + fog-riakcs (0.1.0) fog-core fog-json - fog-softlayer (0.4.7) + fog-xml + fog-sakuracloud (1.7.5) + fog-core + fog-json + fog-serverlove (0.1.2) + fog-core + fog-json + fog-softlayer (1.0.3) + fog-core + fog-json + fog-storm_on_demand (0.1.1) fog-core fog-json fog-terremark (0.1.0) @@ -245,10 +322,13 @@ GEM fog-voxel (0.1.0) fog-core fog-xml + fog-xenserver (0.2.2) + fog-core + fog-xml fog-xml (0.1.2) fog-core nokogiri (~> 1.5, >= 1.5.11) - font-awesome-rails (4.4.0.0) + font-awesome-rails (4.5.0.0) railties (>= 3.2, < 5.0) foreman (0.78.0) thor (~> 0.19.1) @@ -258,10 +338,15 @@ GEM ruby-progressbar (~> 1.4) gemnasium-gitlab-service (0.2.6) rugged (~> 0.21) - gemojione (2.0.1) + gemojione (2.2.1) json get_process_mem (0.2.0) gherkin-ruby (0.3.2) + github-linguist (4.7.5) + charlock_holmes (~> 0.7.3) + escape_utils (~> 1.1.0) + mime-types (>= 1.19) + rugged (>= 0.23.0b) github-markup (1.3.3) gitlab-flowdock-git-hook (1.0.1) flowdock (~> 0.7) @@ -272,39 +357,39 @@ GEM diff-lcs (~> 1.1) mime-types (~> 1.15) posix-spawn (~> 0.3) - gitlab-linguist (3.0.1) - charlock_holmes (~> 0.6.6) - escape_utils (~> 0.2.4) - mime-types (~> 1.19) - gitlab_emoji (0.1.1) - gemojione (~> 2.0) - gitlab_git (7.2.15) + gitlab_emoji (0.3.1) + gemojione (~> 2.2, >= 2.2.1) + gitlab_git (8.2.0) activesupport (~> 4.0) - charlock_holmes (~> 0.6) - gitlab-linguist (~> 3.0) - rugged (~> 0.22.2) + charlock_holmes (~> 0.7.3) + github-linguist (~> 4.7.0) + rugged (~> 0.24.0b13) gitlab_meta (7.0) gitlab_omniauth-ldap (1.2.1) net-ldap (~> 0.9) omniauth (~> 1.0) pyu-ruby-sasl (~> 0.0.3.1) rubyntlm (~> 0.3) + globalid (0.3.6) + activesupport (>= 4.1.0) gollum-grit_adapter (1.0.0) gitlab-grit (~> 2.7, >= 2.7.1) - gollum-lib (4.0.3) + gollum-lib (4.1.0) github-markup (~> 1.3.3) gollum-grit_adapter (~> 1.0) nokogiri (~> 1.6.4) - rouge (~> 1.10.1) + rouge (~> 1.9) sanitize (~> 2.1.0) stringex (~> 2.5.1) - gon (5.0.4) - actionpack (>= 2.3.0) + gon (6.0.1) + actionpack (>= 3.0) json - grape (0.6.1) + multi_json + request_store (>= 1.0) + grape (0.13.0) activesupport builder - hashie (>= 1.2.0) + hashie (>= 2.1.0) multi_json (>= 1.3.2) multi_xml (>= 0.5.2) rack (>= 1.3.0) @@ -314,106 +399,91 @@ GEM grape-entity (0.4.8) activesupport multi_json (>= 1.3.2) - growl (1.0.3) - guard (2.13.0) - formatador (>= 0.2.4) - listen (>= 2.7, <= 4.0) - lumberjack (~> 1.0) - nenv (~> 0.1) - notiffany (~> 0.0) - pry (>= 0.9.12) - shellany (~> 0.0) - thor (>= 0.18.1) - guard-rspec (4.2.10) - guard (~> 2.1) - rspec (>= 2.14, < 4.0) haml (4.0.7) tilt - haml-rails (0.5.3) + haml-rails (0.9.0) actionpack (>= 4.0.1) activesupport (>= 4.0.1) - haml (>= 3.1, < 5.0) + haml (>= 4.0.6, < 5.0) + html2haml (>= 1.0.1) railties (>= 4.0.1) - hashie (2.1.2) - highline (1.6.21) + hashie (3.4.3) + highline (1.7.8) hike (1.2.3) hipchat (1.5.2) httparty mimemagic - hitimes (1.2.3) html-pipeline (1.11.0) activesupport (>= 2) nokogiri (~> 1.4) + html2haml (2.0.0) + erubis (~> 2.7.0) + haml (~> 4.0.0) + nokogiri (~> 1.6.0) + ruby_parser (~> 3.5) http-cookie (1.0.2) domain_name (~> 0.5) http_parser.rb (0.5.3) - httparty (0.13.5) + httparty (0.13.7) json (~> 1.8) multi_xml (>= 0.5.2) - httpclient (2.6.0.1) + httpclient (2.7.0.1) i18n (0.7.0) - ice_cube (0.11.1) ice_nine (0.11.1) inflecto (0.0.2) - ipaddress (0.8.0) - jquery-atwho-rails (1.0.1) - jquery-rails (3.1.3) - railties (>= 3.0, < 5.0) + influxdb (0.2.3) + cause + json + ipaddress (0.8.2) + jquery-atwho-rails (1.3.2) + jquery-rails (4.0.5) + rails-dom-testing (~> 1.0) + railties (>= 4.2.0) thor (>= 0.14, < 2.0) jquery-scrollto-rails (1.4.3) railties (> 3.1, < 5.0) - jquery-turbolinks (2.0.2) + jquery-turbolinks (2.1.0) railties (>= 3.1.0) turbolinks - jquery-ui-rails (4.2.1) + jquery-ui-rails (5.0.5) railties (>= 3.2.16) json (1.8.3) - jwt (1.5.1) - kaminari (0.15.1) + jwt (1.5.2) + kaminari (0.16.3) actionpack (>= 3.0.0) activesupport (>= 3.0.0) - kgio (2.9.3) + kgio (2.10.0) launchy (2.4.3) addressable (~> 2.3) letter_opener (1.1.2) launchy (~> 2.2) - listen (2.10.1) - celluloid (~> 0.16.0) + listen (3.0.5) rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9) - lumberjack (1.0.9) + loofah (2.0.3) + nokogiri (>= 1.5.9) macaddr (1.7.1) systemu (~> 2.6.2) mail (2.6.3) mime-types (>= 1.16, < 3) - mail_room (0.5.2) + mail_room (0.6.1) method_source (0.8.2) mime-types (1.25.1) mimemagic (0.3.0) - mini_portile (0.6.2) + mini_portile2 (2.0.0) minitest (5.7.0) mousetrap-rails (1.4.6) multi_json (1.11.2) multi_xml (0.5.5) - multipart-post (1.2.0) + multipart-post (2.0.0) mysql2 (0.3.20) - nenv (0.2.0) nested_form (0.3.2) - net-ldap (0.11) - net-scp (1.2.1) - net-ssh (>= 2.6.5) - net-ssh (2.9.2) - netrc (0.10.3) - newrelic-grape (2.0.0) - grape - newrelic_rpm - newrelic_rpm (3.9.4.245) - nokogiri (1.6.6.2) - mini_portile (~> 0.6.0) - notiffany (0.0.7) - nenv (~> 0.1) - shellany (~> 0.0) - nprogress-rails (0.1.2.3) + net-ldap (0.12.1) + net-ssh (3.0.1) + netrc (0.11.0) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + nprogress-rails (0.1.6.7) oauth (0.4.7) oauth2 (1.0.0) faraday (>= 0.8, < 0.10) @@ -421,25 +491,38 @@ GEM multi_json (~> 1.3) multi_xml (~> 0.5) rack (~> 1.2) - octokit (3.7.1) + octokit (3.8.0) sawyer (~> 0.6.0, >= 0.5.3) - omniauth (1.2.2) + omniauth (1.3.1) hashie (>= 1.2, < 4) - rack (~> 1.0) + rack (>= 1.0, < 3) + omniauth-azure-oauth2 (0.0.6) + jwt (~> 1.0) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.1) omniauth-bitbucket (0.0.2) multi_json (~> 1.7) omniauth (~> 1.1) omniauth-oauth (~> 1.0) + omniauth-cas3 (1.1.3) + addressable (~> 2.3) + nokogiri (~> 1.6.6) + omniauth (~> 1.2) + omniauth-facebook (3.0.0) + omniauth-oauth2 (~> 1.2) omniauth-github (1.1.2) omniauth (~> 1.0) omniauth-oauth2 (~> 1.1) - omniauth-gitlab (1.0.0) + omniauth-gitlab (1.0.1) omniauth (~> 1.0) omniauth-oauth2 (~> 1.0) - omniauth-google-oauth2 (0.2.6) - omniauth (> 1.0) - omniauth-oauth2 (~> 1.1) - omniauth-kerberos (0.2.0) + omniauth-google-oauth2 (0.2.10) + addressable (~> 2.3) + jwt (~> 1.0) + multi_json (~> 1.3) + omniauth (>= 1.1.1) + omniauth-oauth2 (~> 1.3.1) + omniauth-kerberos (0.3.0) omniauth-multipassword timfel-krb5-auth (~> 0.8) omniauth-multipassword (0.4.2) @@ -450,38 +533,34 @@ GEM omniauth-oauth2 (1.3.1) oauth2 (~> 1.0) omniauth (~> 1.2) - omniauth-saml (1.4.1) + omniauth-saml (1.4.2) omniauth (~> 1.1) - ruby-saml (~> 1.0.0) - omniauth-shibboleth (1.1.2) + ruby-saml (~> 1.1, >= 1.1.1) + omniauth-shibboleth (1.2.1) omniauth (>= 1.0.0) - omniauth-twitter (1.0.1) - multi_json (~> 1.3) - omniauth-oauth (~> 1.0) + omniauth-twitter (1.2.1) + json (~> 1.3) + omniauth-oauth (~> 1.1) omniauth_crowd (2.2.3) activesupport nokogiri (>= 1.4.4) omniauth (~> 1.0) - opennebula (4.12.1) - json - nokogiri - rbvmomi org-ruby (0.9.12) rubypants (~> 0.2) orm_adapter (0.5.0) - paranoia (2.1.3) + paranoia (2.1.4) activerecord (~> 4.0) - parser (2.2.2.6) + parser (2.2.3.0) ast (>= 1.1, < 3.0) - pg (0.18.2) - poltergeist (1.6.0) + pg (0.18.4) + poltergeist (1.8.1) capybara (~> 2.1) cliver (~> 0.3.1) multi_json (~> 1.0) websocket-driver (>= 0.2.0) posix-spawn (0.3.11) - powerpack (0.0.9) - pry (0.10.1) + powerpack (0.1.1) + pry (0.10.3) coderay (~> 1.1.0) method_source (~> 0.8.1) slop (~> 3.4) @@ -490,17 +569,15 @@ GEM pyu-ruby-sasl (0.0.3.3) quiet_assets (1.0.3) railties (>= 3.1, < 5.0) - rack (1.5.5) + rack (1.6.4) rack-accept (0.4.5) rack (>= 0.4) - rack-attack (4.3.0) + rack-attack (4.3.1) rack - rack-cors (0.2.9) - rack-mini-profiler (0.9.7) - rack (>= 1.1.3) + rack-cors (0.4.0) rack-mount (0.8.3) rack (>= 1.0.0) - rack-oauth2 (1.0.10) + rack-oauth2 (1.2.1) activesupport (>= 2.3) attr_required (>= 0.0.5) httpclient (>= 2.4) @@ -510,44 +587,51 @@ GEM rack rack-test (0.6.3) rack (>= 1.0) - rails (4.1.12) - actionmailer (= 4.1.12) - actionpack (= 4.1.12) - actionview (= 4.1.12) - activemodel (= 4.1.12) - activerecord (= 4.1.12) - activesupport (= 4.1.12) + rails (4.2.5.1) + actionmailer (= 4.2.5.1) + actionpack (= 4.2.5.1) + actionview (= 4.2.5.1) + activejob (= 4.2.5.1) + activemodel (= 4.2.5.1) + activerecord (= 4.2.5.1) + activesupport (= 4.2.5.1) bundler (>= 1.3.0, < 2.0) - railties (= 4.1.12) - sprockets-rails (~> 2.0) - rails-observers (0.1.2) - activemodel (~> 4.0) - railties (4.1.12) - actionpack (= 4.1.12) - activesupport (= 4.1.12) + railties (= 4.2.5.1) + sprockets-rails + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.7) + activesupport (>= 4.2.0.beta, < 5.0) + nokogiri (~> 1.6.0) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (4.2.5.1) + actionpack (= 4.2.5.1) + activesupport (= 4.2.5.1) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) rainbow (2.0.0) raindrops (0.15.0) - rake (10.4.2) + rake (10.5.0) raphael-rails (2.1.2) - rb-fsevent (0.9.5) + rb-fsevent (0.9.6) rb-inotify (0.9.5) ffi (>= 0.5.0) - rbvmomi (1.8.2) - builder - nokogiri (>= 1.4.1) - trollop + rblineprof (0.3.6) + debugger-ruby_core_source (~> 1.3) rdoc (3.12.2) json (~> 1.4) - redcarpet (3.3.2) - redis (3.2.1) - redis-actionpack (4.0.0) + recaptcha (1.0.2) + json + redcarpet (3.3.3) + redis (3.2.2) + redis-actionpack (4.0.1) actionpack (~> 4) redis-rack (~> 1.5.0) redis-store (~> 1.1.0) - redis-activesupport (4.1.1) - activesupport (~> 4) + redis-activesupport (4.1.5) + activesupport (>= 3, < 5) redis-store (~> 1.1.0) redis-namespace (1.5.2) redis (~> 3.0, >= 3.0.4) @@ -558,13 +642,13 @@ GEM redis-actionpack (~> 4) redis-activesupport (~> 4) redis-store (~> 1.1.0) - redis-store (1.1.6) + redis-store (1.1.7) redis (>= 2.2) - request_store (1.2.0) - rerun (0.10.0) - listen (~> 2.7, >= 2.7.3) - responders (1.1.2) - railties (>= 3.2, < 4.2) + request_store (1.2.1) + rerun (0.11.0) + listen (~> 3.0) + responders (2.1.1) + railties (>= 4.2.0, < 5.1) rest-client (1.8.0) http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 3.0) @@ -597,35 +681,38 @@ GEM rspec-mocks (~> 3.3.0) rspec-support (~> 3.3.0) rspec-support (3.3.0) - rubocop (0.28.0) + rubocop (0.35.1) astrolabe (~> 1.3) - parser (>= 2.2.0.pre.7, < 3.0) - powerpack (~> 0.0.6) + parser (>= 2.2.3.0, < 3.0) + powerpack (~> 0.1) rainbow (>= 1.99.1, < 3.0) - ruby-progressbar (~> 1.4) + ruby-progressbar (~> 1.7) + tins (<= 1.6.0) ruby-fogbugz (0.2.1) crack (~> 0.4) ruby-progressbar (1.7.5) - ruby-saml (1.0.0) + ruby-saml (1.1.1) nokogiri (>= 1.5.10) uuid (~> 2.3) - ruby2ruby (2.1.4) + ruby2ruby (2.2.0) ruby_parser (~> 3.1) sexp_processor (~> 4.0) - ruby_parser (3.5.0) + ruby_parser (3.7.2) sexp_processor (~> 4.1) rubyntlm (0.5.2) rubypants (0.2.0) - rugged (0.22.2) + rufus-scheduler (3.1.10) + rugged (0.24.0b13) safe_yaml (1.0.4) sanitize (2.1.0) nokogiri (>= 1.4.4) - sass (3.2.19) - sass-rails (4.0.5) + sass (3.4.20) + sass-rails (5.0.4) railties (>= 4.0.0, < 5.0) - sass (~> 3.2.2) - sprockets (~> 2.8, < 3.0) - sprockets-rails (~> 2.0) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) sawyer (0.6.0) addressable (~> 2.3.5) faraday (~> 0.8, < 0.10) @@ -637,23 +724,23 @@ GEM activesupport (>= 3.1, < 4.3) select2-rails (3.5.9.3) thor (~> 0.14) + sentry-raven (0.15.4) + faraday (>= 0.7.6) settingslogic (2.0.9) sexp_processor (4.6.0) sham_rack (1.3.6) rack - shellany (0.0.1) shoulda-matchers (2.8.0) activesupport (>= 3.0.0) - sidekiq (3.3.0) - celluloid (>= 0.16.0) - connection_pool (>= 2.0.0) - json - redis (>= 3.0.6) - redis-namespace (>= 1.3.1) - sidetiq (0.6.3) - celluloid (>= 0.14.1) - ice_cube (= 0.11.1) - sidekiq (>= 3.0.0) + sidekiq (4.0.1) + concurrent-ruby (~> 1.0) + connection_pool (~> 2.2, >= 2.2.0) + json (~> 1.0) + redis (~> 3.2, >= 3.2.1) + sidekiq-cron (0.4.0) + redis-namespace (>= 1.5.2) + rufus-scheduler (>= 2.0.24) + sidekiq (>= 4.0.0) simple_oauth (0.1.9) simplecov (0.10.0) docile (~> 1.1.0) @@ -665,9 +752,9 @@ GEM rack-protection (~> 1.4) tilt (>= 1.3, < 3) six (0.2.0) - slack-notifier (1.0.0) - slim (2.0.3) - temple (~> 0.6.6) + slack-notifier (1.2.1) + slim (3.0.6) + temple (~> 0.7.3) tilt (>= 1.3.3, < 2.1) slop (3.6.0) spinach (0.8.10) @@ -690,12 +777,17 @@ GEM multi_json (~> 1.0) rack (~> 1.0) tilt (~> 1.1, != 1.3.0) - sprockets-rails (2.3.2) + sprockets-rails (2.3.3) actionpack (>= 3.0) activesupport (>= 3.0) sprockets (>= 2.8, < 4.0) - stamp (0.5.0) - state_machine (1.2.0) + state_machines (0.4.0) + state_machines-activemodel (0.3.0) + activemodel (~> 4.1) + state_machines (>= 0.4.0) + state_machines-activerecord (0.3.0) + activerecord (~> 4.1) + state_machines-activemodel (>= 0.3.0) stringex (2.5.2) systemu (2.6.5) task_list (1.0.2) @@ -704,33 +796,30 @@ GEM railties (>= 3.2.5, < 5) teaspoon-jasmine (2.2.0) teaspoon (>= 1.0.0) - temple (0.6.10) + temple (0.7.6) term-ansicolor (1.3.2) tins (~> 1.0) terminal-table (1.5.2) - test_after_commit (0.2.7) + test_after_commit (0.4.2) activerecord (>= 3.2) - thin (1.6.3) + thin (1.6.4) daemons (~> 1.0, >= 1.0.9) - eventmachine (~> 1.0) + eventmachine (~> 1.0, >= 1.0.4) rack (~> 1.0) thor (0.19.1) thread_safe (0.3.5) tilt (1.4.1) - timers (4.0.4) - hitimes timfel-krb5-auth (0.8.3) - tinder (1.9.4) + tinder (1.10.1) eventmachine (~> 1.0) - faraday (~> 0.8.9) + faraday (~> 0.9.0) faraday_middleware (~> 0.9) - hashie (>= 1.0, < 3) + hashie (>= 1.0) json (~> 1.8.0) - mime-types (~> 1.19) + mime-types multi_json (~> 1.7) twitter-stream (~> 0.1) tins (1.6.0) - trollop (2.1.2) turbolinks (2.5.3) coffee-rails twitter-stream (0.1.16) @@ -739,10 +828,10 @@ GEM simple_oauth (~> 0.1.4) tzinfo (1.2.2) thread_safe (~> 0.1) - uglifier (2.3.3) + uglifier (2.7.2) execjs (>= 0.3.0) json (>= 1.8.0) - underscore-rails (1.4.4) + underscore-rails (1.8.3) unf (0.1.4) unf_ext unf_ext (0.0.7.1) @@ -750,9 +839,10 @@ GEM kgio (~> 2.6) rack raindrops (~> 0.7) - unicorn-worker-killer (0.4.3) + unicorn-worker-killer (0.4.4) get_process_mem (~> 0) - unicorn (~> 4) + unicorn (>= 4, < 6) + uniform_notifier (1.9.0) uuid (2.3.8) macaddr (~> 1.0) version_sorter (2.0.0) @@ -761,21 +851,24 @@ GEM coercible (~> 1.0) descendants_tracker (~> 0.0, >= 0.0.3) equalizer (~> 0.0, >= 0.0.9) - warden (1.2.3) + warden (1.2.4) rack (>= 1.0) + web-console (2.2.1) + activemodel (>= 4.0) + binding_of_caller (>= 0.7.2) + railties (>= 4.0) + sprockets-rails (>= 2.0, < 4.0) webmock (1.21.0) addressable (>= 2.3.6) crack (>= 0.3.2) - websocket-driver (0.6.2) + websocket-driver (0.6.3) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.2) - whenever (0.8.4) - activesupport (>= 2.3.4) - chronic (>= 0.6.3) wikicloth (0.8.1) builder expression_parser rinku + xml-simple (1.1.5) xpath (2.0.0) nokogiri (~> 1.3) @@ -786,154 +879,171 @@ DEPENDENCIES RedCloth (~> 4.2.9) ace-rails-ap (~> 2.0.1) activerecord-deprecated_finders (~> 1.0.3) + activerecord-nulldb-adapter activerecord-session_store (~> 0.1.0) acts-as-taggable-on (~> 3.4) addressable (~> 2.3.8) after_commit_queue + akismet (~> 2.0) + allocations (~> 1.0) annotate (~> 2.6.0) - asana (~> 0.0.6) + asana (~> 0.4.0) asciidoctor (~> 1.5.2) attr_encrypted (~> 1.3.4) awesome_print (~> 1.2.0) + babosa (~> 1.0.2) + benchmark-ips better_errors (~> 1.0.1) binding_of_caller (~> 0.7.2) - bootstrap-sass (~> 3.0) - brakeman (= 3.0.1) + bootstrap-sass (~> 3.3.0) + brakeman (~> 3.1.0) browser (~> 1.0.0) + bullet + bundler-audit byebug - cal-heatmap-rails (~> 0.0.1) + cal-heatmap-rails (~> 3.5.0) capybara (~> 2.4.0) capybara-screenshot (~> 1.0.0) carrierwave (~> 0.9.0) - charlock_holmes (~> 0.6.9.4) + charlock_holmes (~> 0.7.3) coffee-rails (~> 4.1.0) - colored (~> 1.2) - colorize (~> 0.5.8) + colorize (~> 0.7.0) + connection_pool (~> 2.0) coveralls (~> 0.8.2) - creole (~> 0.3.6) - d3_rails (~> 3.5.5) + creole (~> 0.5.0) + d3_rails (~> 3.5.0) database_cleaner (~> 1.4.0) default_value_for (~> 3.0.0) - devise (~> 3.5.2) + devise (~> 3.5.4) devise-async (~> 0.9.0) devise-two-factor (~> 2.0.0) diffy (~> 3.0.3) - doorkeeper (~> 2.1.3) + doorkeeper (~> 2.2.0) dropzonejs-rails (~> 0.7.1) email_reply_parser (~> 0.5.8) email_spec (~> 1.6.0) - enumerize (~> 0.7.0) factory_girl_rails (~> 4.3.0) ffaker (~> 2.0.0) - fog (~> 1.25.0) + flay + flog + fog (~> 1.36.0) font-awesome-rails (~> 4.2) foreman fuubar (~> 2.0.0) gemnasium-gitlab-service (~> 0.2) + github-linguist (~> 4.7.0) github-markup (~> 1.3.1) gitlab-flowdock-git-hook (~> 1.0.1) - gitlab-linguist (~> 3.0.1) - gitlab_emoji (~> 0.1) - gitlab_git (~> 7.2.15) + gitlab_emoji (~> 0.3.0) + gitlab_git (~> 8.2) gitlab_meta (= 7.0) gitlab_omniauth-ldap (~> 1.2.1) - gollum-lib (~> 4.0.2) - gon (~> 5.0.0) - grape (~> 0.6.1) + gollum-lib (~> 4.1.0) + gon (~> 6.0.1) + grape (~> 0.13.0) grape-entity (~> 0.4.2) - growl - guard-rspec (~> 4.2.0) - haml-rails (~> 0.5.3) + haml-rails (~> 0.9.0) hipchat (~> 1.5.0) html-pipeline (~> 1.11.0) httparty (~> 0.13.3) - jquery-atwho-rails (~> 1.0.0) - jquery-rails (~> 3.1.3) + influxdb (~> 0.2) + jquery-atwho-rails (~> 1.3.2) + jquery-rails (~> 4.0.0) jquery-scrollto-rails (~> 1.4.3) - jquery-turbolinks (~> 2.0.1) - jquery-ui-rails (~> 4.2.1) - kaminari (~> 0.15.1) + jquery-turbolinks (~> 2.1.0) + jquery-ui-rails (~> 5.0.0) + kaminari (~> 0.16.3) letter_opener (~> 1.1.2) - mail_room (~> 0.5.2) + loofah (~> 2.0.3) + mail_room (~> 0.6.1) + method_source (~> 0.8) minitest (~> 5.7.0) mousetrap-rails (~> 1.4.6) mysql2 (~> 0.3.16) nested_form (~> 0.3.2) - newrelic-grape - newrelic_rpm (~> 3.9.4.245) - nprogress-rails (~> 0.1.2.3) + net-ssh (~> 3.0.1) + nokogiri (~> 1.6.7, >= 1.6.7.2) + nprogress-rails (~> 0.1.6.7) oauth2 (~> 1.0.0) - octokit (~> 3.7.0) - omniauth (~> 1.2.2) + octokit (~> 3.8.0) + omniauth (~> 1.3.1) + omniauth-azure-oauth2 (~> 0.0.6) omniauth-bitbucket (~> 0.0.2) + omniauth-cas3 (~> 1.1.2) + omniauth-facebook (~> 3.0.0) omniauth-github (~> 1.1.1) omniauth-gitlab (~> 1.0.0) - omniauth-google-oauth2 (~> 0.2.5) - omniauth-kerberos (~> 0.2.0) - omniauth-saml (~> 1.4.0) - omniauth-shibboleth (~> 1.1.1) - omniauth-twitter (~> 1.0.1) - omniauth_crowd + omniauth-google-oauth2 (~> 0.2.0) + omniauth-kerberos (~> 0.3.0) + omniauth-saml (~> 1.4.2) + omniauth-shibboleth (~> 1.2.0) + omniauth-twitter (~> 1.2.0) + omniauth_crowd (~> 2.2.0) org-ruby (~> 0.9.12) paranoia (~> 2.0) pg (~> 0.18.2) - poltergeist (~> 1.6.0) + poltergeist (~> 1.8.1) pry-rails quiet_assets (~> 1.0.2) - rack-attack (~> 4.3.0) - rack-cors (~> 0.2.9) - rack-mini-profiler (~> 0.9.0) - rack-oauth2 (~> 1.0.5) - rails (= 4.1.12) + rack-attack (~> 4.3.1) + rack-cors (~> 0.4.0) + rack-oauth2 (~> 1.2.1) + rails (= 4.2.5.1) + rails-deprecated_sanitizer (~> 1.0.3) raphael-rails (~> 2.1.2) - rb-fsevent - rb-inotify + rblineprof rdoc (~> 3.6) - redcarpet (~> 3.3.2) + recaptcha + redcarpet (~> 3.3.3) + redis-namespace redis-rails (~> 4.0.0) request_store (~> 1.2.0) - rerun (~> 0.10.0) + rerun (~> 0.11.0) + responders (~> 2.0) + rouge (~> 1.10.1) rqrcode-rails3 (~> 0.1.7) rspec-rails (~> 3.3.0) - rubocop (~> 0.28.0) + rubocop (~> 0.35.0) ruby-fogbugz (~> 0.2.1) sanitize (~> 2.0) - sass-rails (~> 4.0.5) + sass-rails (~> 5.0.0) sdoc (~> 0.3.20) seed-fu (~> 2.3.5) select2-rails (~> 3.5.9) + sentry-raven settingslogic (~> 2.0.9) sham_rack shoulda-matchers (~> 2.8.0) - sidekiq (= 3.3.0) - sidetiq (~> 0.6.3) + sidekiq (~> 4.0) + sidekiq-cron (~> 0.4.0) simplecov (~> 0.10.0) sinatra (~> 1.4.4) six (~> 0.2.0) - slack-notifier (~> 1.0.0) - slim (~> 2.0.2) + slack-notifier (~> 1.2.0) spinach-rails (~> 0.2.1) spring (~> 1.3.6) spring-commands-rspec (~> 1.0.4) spring-commands-spinach (~> 1.0.0) spring-commands-teaspoon (~> 0.0.2) sprockets (~> 2.12.3) - stamp (~> 0.5.0) - state_machine (~> 1.2.0) + state_machines-activerecord (~> 0.3.0) task_list (~> 1.0.2) teaspoon (~> 1.0.0) teaspoon-jasmine (~> 2.2.0) - test_after_commit (~> 0.2.2) + test_after_commit (~> 0.4.2) thin (~> 1.6.1) - tinder (~> 1.9.2) + tinder (~> 1.10.0) turbolinks (~> 2.5.0) - uglifier (~> 2.3.2) - underscore-rails (~> 1.4.4) + uglifier (~> 2.7.2) + underscore-rails (~> 1.8.0) unf (~> 0.1.4) unicorn (~> 4.8.2) unicorn-worker-killer (~> 0.4.2) version_sorter (~> 2.0.0) virtus (~> 1.0.1) + web-console (~> 2.0) webmock (~> 1.21.0) - whenever (~> 0.8.4) wikicloth (= 0.8.1) + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 8af64ce78e9..4e86768e0dd 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -1,7 +1,10 @@ -{ stdenv, lib, bundler, fetchgit, bundlerEnv, defaultGemConfig, libiconv, ruby +{ stdenv, lib, bundler, fetchFromGitHub, bundlerEnv, defaultGemConfig, libiconv, ruby , tzdata, git, nodejs, procps }: +/* When updating the Gemfile add `gem "activerecord-nulldb-adapter"` + to allow building the assets without a database */ + let env = bundlerEnv { name = "gitlab"; @@ -21,19 +24,23 @@ in stdenv.mkDerivation rec { name = "gitlab-${version}"; - version = "8.0.5"; + version = "8.5.0"; + buildInputs = [ ruby bundler tzdata git nodejs procps ]; - src = fetchgit { - url = "https://github.com/gitlabhq/gitlabhq.git"; - rev = "2866c501b5a5abb69d101cc07261a1d684b4bd4c"; - fetchSubmodules = false; - sha256 = "edc6bedd5e79940189355d8cb343d20b0781b69fcef56ccae5906fa5e81ed521"; + + src = fetchFromGitHub { + owner = "gitlabhq"; + repo = "gitlabhq"; + rev = "v${version}"; + sha256 = "1rhl906xnvpxkw3ngwfzi80cl3daihx5vizy04b9b39adyd3i5hl"; }; patches = [ ./remove-hardcoded-locations.patch ./disable-dump-schema-after-migration.patch + ./nulladapter.patch ]; + postPatch = '' # For reasons I don't understand "bundle exec" ignores the # RAILS_ENV causing tests to be executed that fail because we're @@ -41,7 +48,6 @@ stdenv.mkDerivation rec { # tests works though.: rm lib/tasks/test.rake - mv config/gitlab.yml.example config/gitlab.yml rm config/initializers/gitlab_shell_secret_token.rb substituteInPlace app/controllers/admin/background_jobs_controller.rb \ @@ -50,7 +56,7 @@ stdenv.mkDerivation rec { # required for some gems: cat > config/database.yml < database: gitlab host: <%= ENV["GITLAB_DATABASE_HOST"] || "127.0.0.1" %> password: <%= ENV["GITLAB_DATABASE_PASSWORD"] || "blerg" %> @@ -58,14 +64,22 @@ stdenv.mkDerivation rec { encoding: utf8 EOF ''; + buildPhase = '' export GEM_HOME=${env}/${ruby.gemPath} - bundle exec rake assets:precompile RAILS_ENV=production + mv config/gitlab.yml.example config/gitlab.yml + GITLAB_DATABASE_ADAPTER=nulldb bundle exec rake assets:precompile RAILS_ENV=production + mv config/gitlab.yml config/gitlab.yml.example + mv config config.dist ''; + installPhase = '' mkdir -p $out/share cp -r . $out/share/gitlab + ln -sf /run/gitlab/uploads $out/share/gitlab/public/uploads + ln -sf /run/gitlab/config $out/share/gitlab/config ''; + passthru = { inherit env; inherit ruby; diff --git a/pkgs/applications/version-management/gitlab/gemset.nix b/pkgs/applications/version-management/gitlab/gemset.nix index c5e10dd166a..95905fb7dfc 100644 --- a/pkgs/applications/version-management/gitlab/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gemset.nix @@ -1,3150 +1,3009 @@ { - "CFPropertyList" = { - version = "2.3.1"; + xpath = { + dependencies = ["nokogiri"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "04kcr127l34p7221z13blyl0dvh0bmxwx326j72idayri36a394w"; type = "gem"; - sha256 = "1wnk3gxnhfafbhgp0ic7qhzlx3lhv04v8nws2s31ii5s8135hs6k"; }; + version = "2.0.0"; }; - "RedCloth" = { - version = "4.2.9"; + xml-simple = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0xlqplda3fix5pcykzsyzwgnbamb3qrqkgbrhhfz2a2fxhrkvhw8"; type = "gem"; - sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl"; }; + version = "1.1.5"; }; - "ace-rails-ap" = { - version = "2.0.1"; + wikicloth = { + dependencies = ["builder" "expression_parser" "rinku"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jp6c2yzyqbap8jdiw8yz6l08sradky1llhyhmrg934l1b5akj3s"; type = "gem"; - sha256 = "082n12rkd9j7d89030nhmi4fx1gqaf13knps6cknsyvwix7fryvv"; }; + version = "0.8.1"; }; - "actionmailer" = { - version = "4.1.12"; + websocket-extensions = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "07qnsafl6203a2zclxl20hy4jq11c471cgvd0bj5r9fx1qqw06br"; type = "gem"; - sha256 = "0p1hydjf5vb4na4fs29v7cdknfq3d6qvmld2vbafbh78kkclxi2m"; }; - dependencies = [ - "actionpack" - "actionview" - "mail" - ]; + version = "0.1.2"; }; - "actionpack" = { - version = "4.1.12"; + websocket-driver = { + dependencies = ["websocket-extensions"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v39w1ig6ps8g55xhz6x1w53apl17ii6kpy0jg9249akgpdvb0k9"; type = "gem"; - sha256 = "19bryymqlapsvn9df6q2ba4hvw9dwpp4fjc7i6lwffkadc4snkjy"; }; - dependencies = [ - "actionview" - "activesupport" - "rack" - "rack-test" - ]; + version = "0.6.3"; }; - "actionview" = { - version = "4.1.12"; + webmock = { + dependencies = ["addressable" "crack"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1p7hqdxk5359xwp59pcx841fhbnqx01ra98rnwhdyz61nrc6piv3"; type = "gem"; - sha256 = "1bv8qifaqa514z64zgfw3r4i120h2swwgpfk79xlrac21q6ps70n"; }; - dependencies = [ - "activesupport" - "builder" - "erubis" - ]; + version = "1.21.0"; }; - "activemodel" = { - version = "4.1.12"; + web-console = { + dependencies = ["activemodel" "binding_of_caller" "railties" "sprockets-rails"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "13rwps8m76j45iqhggm810j78i8bg4nqzgi8k7amxplik2zm5blf"; type = "gem"; - sha256 = "16429dg04s64g834svi7ghq486adr32gxr5p9kac2z6mjp8ggjr3"; }; - dependencies = [ - "activesupport" - "builder" - ]; + version = "2.2.1"; }; - "activerecord" = { - version = "4.1.12"; + warden = { + dependencies = ["rack"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1iyxw1ms3930dh7vcrfyi4ifpdbkfsr8k7fzjryva0r7k3c71gb7"; type = "gem"; - sha256 = "1w3dbmbdk4whm5p1l6d2ky3xpl59lfcr9p3hwd41dz77ynpi5dr5"; }; - dependencies = [ - "activemodel" - "activesupport" - "arel" - ]; + version = "1.2.4"; }; - "activerecord-deprecated_finders" = { - version = "1.0.4"; + virtus = { + dependencies = ["axiom-types" "coercible" "descendants_tracker" "equalizer"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; type = "gem"; - sha256 = "03xplckz7v3nm6inqkwdd44h6gpbpql0v02jc1rz46a38rd6cj6m"; }; + version = "1.0.5"; }; - "activerecord-session_store" = { - version = "0.1.1"; + version_sorter = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1lad9c43w2xfzmva57ia6glpmhyivyk1m79jli42canshvan5v6y"; type = "gem"; - sha256 = "15dgx7jjp8iqqzjq2q3a6fsmnhvjwspbsz1s1gd6zp744k6xbrjh"; }; - dependencies = [ - "actionpack" - "activerecord" - "railties" - ]; + version = "2.0.0"; }; - "activeresource" = { - version = "4.0.0"; + uuid = { + dependencies = ["macaddr"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "0gr2mxg27l380wpiy66mgv9wq02myj6m4gmp6c4g1vsbzkh0213v"; type = "gem"; - sha256 = "0fc5igjijyjzsl9q5kybkdzhc92zv8wsv0ifb0y90i632jx6d4jq"; }; - dependencies = [ - "activemodel" - "activesupport" - "rails-observers" - ]; - }; - "activesupport" = { - version = "4.1.12"; - source = { - type = "gem"; - sha256 = "166jvrmdwayacnrd4z3rs2d6y0av3xnc18k6120ah13c2ipw69hn"; - }; - dependencies = [ - "i18n" - "json" - "minitest" - "thread_safe" - "tzinfo" - ]; - }; - "acts-as-taggable-on" = { - version = "3.5.0"; - source = { - type = "gem"; - sha256 = "0bz0z8dlp3fjzah9y9b6rr9mkidsav9l4hdm51fnq1gd05yv3pr7"; - }; - dependencies = [ - "activerecord" - ]; - }; - "addressable" = { version = "2.3.8"; - source = { - type = "gem"; - sha256 = "1533axm85gpz267km9gnfarf9c78g2scrysd6b8yw33vmhkz2km6"; - }; }; - "after_commit_queue" = { - version = "1.1.0"; + uniform_notifier = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "009z60qx01am7klmrca8pcladrynljra3a9smifn9f81r4dc7q63"; type = "gem"; - sha256 = "0m7qwbzvxb2xqramf38pzg8ld91s4cy2v0fs26dnmnqr1jf11z4y"; }; - dependencies = [ - "rails" - ]; + version = "1.9.0"; }; - "annotate" = { - version = "2.6.10"; + unicorn-worker-killer = { + dependencies = ["get_process_mem" "unicorn"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "0rrdxpwdsapx47axjin8ymxb4f685qlpx8a26bql4ay1559c3gva"; type = "gem"; - sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg"; }; - dependencies = [ - "activerecord" - "rake" - ]; + version = "0.4.4"; }; - "arel" = { - version = "5.0.1.20140414130214"; + unicorn = { + dependencies = ["kgio" "rack" "raindrops"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4"; type = "gem"; - sha256 = "0dhnc20h1v8ml3nmkxq92rr7qxxpk6ixhwvwhgl2dbw9mmxz0hf9"; }; + version = "4.8.3"; }; - "asana" = { - version = "0.0.6"; + unf_ext = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"; type = "gem"; - sha256 = "1x325pywh3d91qrg916gh8i5g13h4qzgi03zc93x6v4m4rj79dcp"; }; - dependencies = [ - "activeresource" - ]; + version = "0.0.7.1"; }; - "asciidoctor" = { + unf = { + dependencies = ["unf_ext"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; + type = "gem"; + }; + version = "0.1.4"; + }; + underscore-rails = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0iyspb7s49wpi9cc314gvlkyn45iyfivzxhdw0kql1zrgllhlzfk"; + type = "gem"; + }; + version = "1.8.3"; + }; + uglifier = { + dependencies = ["execjs" "json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0mzs64z3m1b98rh6ssxpqfz9sc87f6ml6906b0m57vydzfgrh1cz"; + type = "gem"; + }; + version = "2.7.2"; + }; + tzinfo = { + dependencies = ["thread_safe"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"; + type = "gem"; + }; + version = "1.2.2"; + }; + twitter-stream = { + dependencies = ["eventmachine" "http_parser.rb" "simple_oauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0is81g3xvnjk64sqiaqlh2ziwfryzwvk1yvaniryg0zhppgsyriq"; + type = "gem"; + }; + version = "0.1.16"; + }; + turbolinks = { + dependencies = ["coffee-rails"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ddrx25vvvqxlz4h59lrmjhc2bfwxf4bpicvyhgbpjd48ckj81jn"; + type = "gem"; + }; + version = "2.5.3"; + }; + tins = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz"; + type = "gem"; + }; + version = "1.6.0"; + }; + tinder = { + dependencies = ["eventmachine" "faraday" "faraday_middleware" "hashie" "json" "mime-types" "multi_json" "twitter-stream"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kwj0wd540wb2ws86d3jdva175dx00w2j8lyrvbb6qli3g27byd7"; + type = "gem"; + }; + version = "1.10.1"; + }; + timfel-krb5-auth = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "105vajc0jkqgcx1wbp0ad262sdry4l1irk7jpaawv8vzfjfqqf5b"; + type = "gem"; + }; + version = "0.8.3"; + }; + tilt = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00sr3yy7sbqaq7cb2d2kpycajxqf1b1wr1yy33z4bnzmqii0b0ir"; + type = "gem"; + }; + version = "1.4.1"; + }; + thread_safe = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; + type = "gem"; + }; + version = "0.3.5"; + }; + thor = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + type = "gem"; + }; + version = "0.19.1"; + }; + thin = { + dependencies = ["daemons" "eventmachine" "rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1pyc602sa8fqwjyssn9yvf3fqrr14jk7hj9hsjlan1mq4zvim1lf"; + type = "gem"; + }; + version = "1.6.4"; + }; + test_after_commit = { + dependencies = ["activerecord"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1fzg8qan6f0n0ynr594bld2k0rwwxj99yzhiga2f3pkj9ina1abb"; + type = "gem"; + }; + version = "0.4.2"; + }; + terminal-table = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f"; + type = "gem"; + }; version = "1.5.2"; - source = { - type = "gem"; - sha256 = "0hs99bjvnf1nw49nwq62mi5x65x2jlvwqa0xllsi3zfikafsm1y9"; - }; }; - "ast" = { + term-ansicolor = { + dependencies = ["tins"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys"; + type = "gem"; + }; + version = "1.3.2"; + }; + temple = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ysraljv7lkb04z5vdyrkijab7j1jzj1mgz4bj82744dp7d0rhb0"; + type = "gem"; + }; + version = "0.7.6"; + }; + teaspoon-jasmine = { + dependencies = ["teaspoon"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00wygrv1jm4aj15p1ab9d5fdrj6y83kv26xgp52mx4lp78h2ms9q"; + type = "gem"; + }; + version = "2.2.0"; + }; + teaspoon = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s"; + type = "gem"; + }; + version = "1.0.2"; + }; + task_list = { + dependencies = ["html-pipeline"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1iv1fizb04463c4mp4gxd8v0414fhvmiwvwvjby5b9qq79d8zwab"; + type = "gem"; + }; + version = "1.0.2"; + }; + systemu = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; + type = "gem"; + }; + version = "2.6.5"; + }; + stringex = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "150adm7rfh6r9b5ra6vk75mswf9m3wwyslcf8f235a08m29fxa17"; + type = "gem"; + }; + version = "2.5.2"; + }; + state_machines-activerecord = { + dependencies = ["activerecord" "state_machines-activemodel"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "10dplkn4cm49xby8s0sn7wxww4hnxi4dgikfsmhp1rbsa24d76vx"; + type = "gem"; + }; + version = "0.3.0"; + }; + state_machines-activemodel = { + dependencies = ["activemodel" "state_machines"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1bshcm53v2vfpapvhws1h0dq1h4f3p6bvpdkjpydb52a3m0w2z0y"; + type = "gem"; + }; + version = "0.3.0"; + }; + state_machines = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1xg84kdglz0k1pshf2q604zybjpribzcz2b651sc1j27kd86w787"; + type = "gem"; + }; + version = "0.4.0"; + }; + sprockets-rails = { + dependencies = ["actionpack" "activesupport" "sprockets"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vsl6ryxdjpp97nl4ghhk1v6p50zh3sx9qv81bhmlffc234r91wn"; + type = "gem"; + }; + version = "2.3.3"; + }; + sprockets = { + dependencies = ["hike" "multi_json" "rack" "tilt"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3"; + type = "gem"; + }; + version = "2.12.4"; + }; + spring-commands-teaspoon = { + dependencies = ["spring"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1g7n4m2s9d0frh7y1xibzpphqajfnx4fvgfc66nh545dd91w2nqz"; + type = "gem"; + }; + version = "0.0.2"; + }; + spring-commands-spinach = { + dependencies = ["spring"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "138jardqyj96wz68njdgy55qjbpl2d0g8bxbkz97ndaz3c2bykv9"; + type = "gem"; + }; + version = "1.0.0"; + }; + spring-commands-rspec = { + dependencies = ["spring"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; + type = "gem"; + }; + version = "1.0.4"; + }; + spring = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1"; + type = "gem"; + }; + version = "1.3.6"; + }; + spinach-rails = { + dependencies = ["capybara" "railties" "spinach"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nfacfylkncfgi59g2wga6m4nzdcjqb8s50cax4nbx362ap4bl70"; + type = "gem"; + }; + version = "0.2.1"; + }; + spinach = { + dependencies = ["colorize" "gherkin-ruby" "json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0phfjs4iw2iqxdaljzwk6qxmi2x86pl3hirmpgw2pgfx76wfx688"; + type = "gem"; + }; + version = "0.8.10"; + }; + slop = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; + type = "gem"; + }; + version = "3.6.0"; + }; + slim = { + dependencies = ["temple" "tilt"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1szs71hh0msm5gj6qbcxw44m3hqnwybx4yh02scwixnwg576058k"; + type = "gem"; + }; + version = "3.0.6"; + }; + slack-notifier = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "08z6fv186yw1nrpl6zwp3lwqksin145aa1jv6jf00bnv3sicliiz"; + type = "gem"; + }; + version = "1.2.1"; + }; + six = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1bhapiyjh5r5qjpclfw8i65plvy6k2q4azr5xir63xqglr53viw3"; + type = "gem"; + }; + version = "0.2.0"; + }; + sinatra = { + dependencies = ["rack" "rack-protection" "tilt"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7"; + type = "gem"; + }; + version = "1.4.6"; + }; + simplecov-html = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; + type = "gem"; + }; + version = "0.10.0"; + }; + simplecov = { + dependencies = ["docile" "json" "simplecov-html"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4"; + type = "gem"; + }; + version = "0.10.0"; + }; + simple_oauth = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0bb06p88xsdw4fxll1ikv5i5k58sl6y323ss0wp1hqjm3xw1jgvj"; + type = "gem"; + }; + version = "0.1.9"; + }; + sidekiq-cron = { + dependencies = ["redis-namespace" "rufus-scheduler" "sidekiq"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0xnbvh8kjv6954vsiwfcpp7bn8sgpwvnyapnq7b94w8h7kj3ykqy"; + type = "gem"; + }; + version = "0.4.0"; + }; + sidekiq = { + dependencies = ["concurrent-ruby" "connection_pool" "json" "redis"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1x7jfc2va0x6fcfffdf0wdiyk4krjw8053jzwffa63wkqr5jvg3y"; + type = "gem"; + }; + version = "4.0.1"; + }; + shoulda-matchers = { + dependencies = ["activesupport"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; + type = "gem"; + }; + version = "2.8.0"; + }; + sham_rack = { + dependencies = ["rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0zs6hpgg87x5jrykjxgfp2i7m5aja53s5kamdhxam16wki1hid3i"; + type = "gem"; + }; + version = "1.3.6"; + }; + sexp_processor = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2"; + type = "gem"; + }; + version = "4.6.0"; + }; + settingslogic = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; + type = "gem"; + }; + version = "2.0.9"; + }; + sentry-raven = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1h0w2ip02zcd3krpddn54vssd7asnbj823r4mlzzqpp28q3r3mcm"; + type = "gem"; + }; + version = "0.15.4"; + }; + select2-rails = { + dependencies = ["thor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ni2k74n73y3gv56gs37gkjlh912szjf6k9j483wz41m3xvlz7fj"; + type = "gem"; + }; + version = "3.5.9.3"; + }; + seed-fu = { + dependencies = ["activerecord" "activesupport"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw"; + type = "gem"; + }; + version = "2.3.5"; + }; + sdoc = { + dependencies = ["json" "rdoc"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "17l8qk0ld47z4h5avcnylvds8nc6dp25zc64w23z8li2hs341xf2"; + type = "gem"; + }; + version = "0.3.20"; + }; + sawyer = { + dependencies = ["addressable" "faraday"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0fk43bzwn816qj1ksiicm2i1kmzv5675cmnvk57kmfmi4rfsyjpy"; + type = "gem"; + }; + version = "0.6.0"; + }; + sass-rails = { + dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1f6357vw944w2ayayqmz8ai9myl6xbnry06sx5b5ms4r9lny8hj8"; + type = "gem"; + }; + version = "5.0.4"; + }; + sass = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04rpdcp258arh2wgdk9shbqnzd6cbbbpi3wpi9a0wby8awgpxmyf"; + type = "gem"; + }; + version = "3.4.20"; + }; + sanitize = { + dependencies = ["nokogiri"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0xsv6xqrlz91rd8wifjknadbl3z5h6qphmxy0hjb189qbdghggn3"; + type = "gem"; + }; version = "2.1.0"; + }; + safe_yaml = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; + type = "gem"; + }; + version = "1.0.4"; + }; + rugged = { + version = "0.24.0b13"; source = { type = "gem"; - sha256 = "102bywfxrv0w3n4s6lg25d7xxshd344sc7ijslqmganj5bany1pk"; + remotes = ["https://rubygems.org"]; + sha256 = "0v0cvdw8cgy1hf5h3cx796zpxhbad8d5cm50nykyhwjc00q80zrr"; }; }; - "astrolabe" = { + rufus-scheduler = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04bmvvvri7ni7dvlq3gi1y553f6rp6bw2kmdfp9ny5bh3l7qayrh"; + type = "gem"; + }; + version = "3.1.10"; + }; + rubypants = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vpdkrc4c8qhrxph41wqwswl28q5h5h994gy4c1mlrckqzm3hzph"; + type = "gem"; + }; + version = "0.2.0"; + }; + rubyntlm = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04l8686hl0829x4acsnbz0licf8n6794p7shz8iyahin1jnqg3d7"; + type = "gem"; + }; + version = "0.5.2"; + }; + ruby_parser = { + dependencies = ["sexp_processor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1rip6075b4k5a7s8w2klwc3jaqx31h69k004ac5nhl8y0ja92qvz"; + type = "gem"; + }; + version = "3.7.2"; + }; + ruby2ruby = { + dependencies = ["ruby_parser" "sexp_processor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kmc0503s9mqnjyypx51wsi6zz9zj550ch43rag23wpj4qd6i6pm"; + type = "gem"; + }; + version = "2.2.0"; + }; + ruby-saml = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "151jbak16y87dbj3ma2nc03rh37z7lixcwgaqahncq80rgnv45a8"; + type = "gem"; + }; + version = "1.1.1"; + }; + ruby-progressbar = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; + type = "gem"; + }; + version = "1.7.5"; + }; + ruby-fogbugz = { + dependencies = ["crack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jj0gpkycbrivkh2q3429vj6mbgx6axxisg69slj3c4mgvzfgchm"; + type = "gem"; + }; + version = "0.2.1"; + }; + rubocop = { + dependencies = ["astrolabe" "parser" "powerpack" "rainbow" "ruby-progressbar" "tins"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1grqda2fdknm43zyagh8gcmnhjkypyfw98q92hmvprprwghkq2sg"; + type = "gem"; + }; + version = "0.35.1"; + }; + rspec-support = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1cyagig8slxjas8mbg5f8bl240b8zgr8mnjsvrznag1fwpkh4h27"; + type = "gem"; + }; + version = "3.3.0"; + }; + rspec-rails = { + dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a"; + type = "gem"; + }; + version = "3.3.3"; + }; + rspec-mocks = { + dependencies = ["diff-lcs" "rspec-support"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg"; + type = "gem"; + }; + version = "3.3.2"; + }; + rspec-expectations = { + dependencies = ["diff-lcs" "rspec-support"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah"; + type = "gem"; + }; + version = "3.3.1"; + }; + rspec-core = { + dependencies = ["rspec-support"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1"; + type = "gem"; + }; + version = "3.3.2"; + }; + rspec = { + dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r"; + type = "gem"; + }; + version = "3.3.0"; + }; + rqrcode-rails3 = { + dependencies = ["rqrcode"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1i28rwmj24ssk91chn0g7qsnvn003y3s5a7jsrg3w4l5ckr841bg"; + type = "gem"; + }; + version = "0.1.7"; + }; + rqrcode = { + dependencies = ["chunky_png"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "188n1mvc7klrlw30bai16sdg4yannmy7cz0sg0nvm6f1kjx5qflb"; + type = "gem"; + }; + version = "0.7.0"; + }; + rouge = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0wp8as9ypdy18kdj9h70kny1rdfq71mr8cj2bpahr9vxjjvjasqz"; + type = "gem"; + }; + version = "1.10.1"; + }; + rotp = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g"; + type = "gem"; + }; + version = "2.1.1"; + }; + rinku = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; + type = "gem"; + }; + version = "1.7.3"; + }; + rest-client = { + dependencies = ["http-cookie" "mime-types" "netrc"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7"; + type = "gem"; + }; + version = "1.8.0"; + }; + responders = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1i00bxp8fa67rzl50wfiaw16w21j5d5gwjjkdiwr0sw9q6ixmpz1"; + type = "gem"; + }; + version = "2.1.1"; + }; + rerun = { + dependencies = ["listen"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0av239bpmy55fdx4qaw9n71aapjy2myr51h5plzjxsyr0fdwn1xq"; + type = "gem"; + }; + version = "0.11.0"; + }; + request_store = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "01rxi2hw84y133z0r91jns4aaywd8d83wjq0xgb42iaicf0a90p9"; + type = "gem"; + }; + version = "1.2.1"; + }; + redis-store = { + dependencies = ["redis"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0gf462p0wx4hn7m1m8ghs701n6xx0ijzm5cff9xfagd2s6va145m"; + type = "gem"; + }; + version = "1.1.7"; + }; + redis-rails = { + dependencies = ["redis-actionpack" "redis-activesupport" "redis-store"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0igww7hb58aq74mh50dli3zjg78b54y8nhd0h1h9vz4vgjd4q8m7"; + type = "gem"; + }; + version = "4.0.0"; + }; + redis-rack = { + dependencies = ["rack" "redis-store"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1y1mxx8gn0krdrpwllv7fqsbvki1qjnb2dz8b4q9gwc326829gk8"; + type = "gem"; + }; + version = "1.5.0"; + }; + redis-namespace = { + dependencies = ["redis"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0rp8gfkznfxqzxk9s976k71jnljkh0clkrhnp6vgx46s5yhj9g25"; + type = "gem"; + }; + version = "1.5.2"; + }; + redis-activesupport = { + dependencies = ["activesupport" "redis-store"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "10y3kybz21n2z11478sf0cp4xzclvxf0b428787brmgpc6i7p7zg"; + type = "gem"; + }; + version = "4.1.5"; + }; + redis-actionpack = { + dependencies = ["actionpack" "redis-rack" "redis-store"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jjl6dhhpdapdaywq5iqz7z36mwbw0cn0m30wcc5wcbv7xmiiygw"; + type = "gem"; + }; + version = "4.0.1"; + }; + redis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0255w9izzs04hw9wivn05yqiwi34w28ylxs0xvpmwc1vrh18fwcl"; + type = "gem"; + }; + version = "3.2.2"; + }; + redcarpet = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "14i3wypp97bpk20679d1csy88q4hsgfqbnqw6mryl77m2g0d09pk"; + type = "gem"; + }; + version = "3.3.3"; + }; + recaptcha = { + dependencies = ["json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "190qqklirmi31s6ih7png4h9xmx1p5h2n5fi45z90y8hsp5w1sh1"; + type = "gem"; + }; + version = "1.0.2"; + }; + rdoc = { + dependencies = ["json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v9k4sp5yzj2bshngckdvivj6bszciskk1nd2r3wri2ygs7vgqm8"; + type = "gem"; + }; + version = "3.12.2"; + }; + rblineprof = { + dependencies = ["debugger-ruby_core_source"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0m58kdjgncwf0h1qry3qk5h4bg8sj0idykqqijqcrr09mxfd9yc6"; + type = "gem"; + }; + version = "0.3.6"; + }; + rb-inotify = { + dependencies = ["ffi"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"; + type = "gem"; + }; + version = "0.9.5"; + }; + rb-fsevent = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hq57by28iv0ijz8pk9ynih0xdg7vnl1010xjcijfklrcv89a1j2"; + type = "gem"; + }; + version = "0.9.6"; + }; + raphael-rails = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0sjiaymvfn4al5dr1pza5i142byan0fxnj4rymziyql2bzvdm2bc"; + type = "gem"; + }; + version = "2.1.2"; + }; + rake = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0jcabbgnjc788chx31sihc5pgbqnlc1c75wakmqlbjdm8jns2m9b"; + type = "gem"; + }; + version = "10.5.0"; + }; + raindrops = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hv0xhr762axywr937czi92fs0x3zk7k22vg6f4i7rr8d05sp560"; + type = "gem"; + }; + version = "0.15.0"; + }; + rainbow = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4"; + type = "gem"; + }; + version = "2.0.0"; + }; + railties = { + dependencies = ["actionpack" "activesupport" "rake" "thor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "07vmyrppa1x80whdjxhjij93qh9wvnmnxpsgn6fr9x2lqmzdyq5l"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + rails-html-sanitizer = { + dependencies = ["loofah"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "138fd86kv073zqfx0xifm646w6bgw2lr8snk16lknrrfrss8xnm7"; + type = "gem"; + }; + version = "1.0.3"; + }; + rails-dom-testing = { + dependencies = ["activesupport" "nokogiri" "rails-deprecated_sanitizer"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v8jl6803mbqpxh4hn0szj081q1a3ap0nb8ni0qswi7z4la844v8"; + type = "gem"; + }; + version = "1.0.7"; + }; + rails-deprecated_sanitizer = { + dependencies = ["activesupport"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0qxymchzdxww8bjsxj05kbf86hsmrjx40r41ksj0xsixr2gmhbbj"; + type = "gem"; + }; + version = "1.0.3"; + }; + rails = { + dependencies = ["actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "03j6hfsqdl0bay59m4qjj2081s4vnhqagpl14qpm4wfrqrgpkcqb"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + rack-test = { + dependencies = ["rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; + type = "gem"; + }; + version = "0.6.3"; + }; + rack-protection = { + dependencies = ["rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r"; + type = "gem"; + }; + version = "1.5.3"; + }; + rack-oauth2 = { + dependencies = ["activesupport" "attr_required" "httpclient" "multi_json" "rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1szfnb74p5s7k0glpmiv16rfl4wx9mnrr7riapgpbcx163zzkxad"; + type = "gem"; + }; + version = "1.2.1"; + }; + rack-mount = { + dependencies = ["rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "09a1qfaxxsll1kbgz7z0q0nr48sfmfm7akzaviis5bjpa5r00ld2"; + type = "gem"; + }; + version = "0.8.3"; + }; + rack-cors = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1sz9d9gjmv2vjl3hddzk269hb1k215k8sp37gicphx82h3chk1kw"; + type = "gem"; + }; + version = "0.4.0"; + }; + rack-attack = { + dependencies = ["rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ihic8ar2ddfv15p5gia8nqzsl3y7iayg5v4rmg72jlvikgsabls"; + type = "gem"; + }; + version = "4.3.1"; + }; + rack-accept = { + dependencies = ["rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18jdipx17b4ki33cfqvliapd31sbfvs4mv727awynr6v95a7n936"; + type = "gem"; + }; + version = "0.4.5"; + }; + rack = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; + type = "gem"; + }; + version = "1.6.4"; + }; + quiet_assets = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1"; + type = "gem"; + }; + version = "1.0.3"; + }; + pyu-ruby-sasl = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1rcpjiz9lrvyb3rd8k8qni0v4ps08psympffyldmmnrqayyad0sn"; + type = "gem"; + }; + version = "0.0.3.3"; + }; + pry-rails = { + dependencies = ["pry"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; + type = "gem"; + }; + version = "0.3.4"; + }; + pry = { + dependencies = ["coderay" "method_source" "slop"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1x78rvp69ws37kwig18a8hr79qn36vh8g1fn75p485y3b3yiqszg"; + type = "gem"; + }; + version = "0.10.3"; + }; + powerpack = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; + type = "gem"; + }; + version = "0.1.1"; + }; + posix-spawn = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "052lnxbkvlnwfjw4qd7vn2xrlaaqiav6f5x5bcjin97bsrfq6cmr"; + type = "gem"; + }; + version = "0.3.11"; + }; + poltergeist = { + dependencies = ["capybara" "cliver" "multi_json" "websocket-driver"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ppm4isvbxm739508yjhvisq1iwp1q6h8dx4hkndj2krskavz4i9"; + type = "gem"; + }; + version = "1.8.1"; + }; + pg = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "07dv4ma9xd75xpsnnwwg1yrpwpji7ydy0q1d9dl0yfqbzpidrw32"; + type = "gem"; + }; + version = "0.18.4"; + }; + parser = { + dependencies = ["ast"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "14db0gam24j04iprqz4m3hxygkb8h0plnbm0yk4k3lzq6j5wzcac"; + type = "gem"; + }; + version = "2.2.3.0"; + }; + paranoia = { + dependencies = ["activerecord"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0z2smnnghjhcs4l5fkz9scs1kj0bvj2n8xmzcvw4rg9yprdnlxr0"; + type = "gem"; + }; + version = "2.1.4"; + }; + orm_adapter = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; + type = "gem"; + }; + version = "0.5.0"; + }; + org-ruby = { + dependencies = ["rubypants"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"; + type = "gem"; + }; + version = "0.9.12"; + }; + omniauth_crowd = { + dependencies = ["activesupport" "nokogiri" "omniauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "12g5ck05h6kr9mnp870x8pkxsadg81ca70hg8n3k8xx007lfw2q7"; + type = "gem"; + }; + version = "2.2.3"; + }; + omniauth-twitter = { + dependencies = ["json" "omniauth-oauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hqjpb1zx0pp3s12c83pkpk4kkx41f001jc5n8qz0h3wll0ld833"; + type = "gem"; + }; + version = "1.2.1"; + }; + omniauth-shibboleth = { + dependencies = ["omniauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0a8pwy23aybxhn545357zdjy0hnpfgldwqk5snmz9kxingpq12jl"; + type = "gem"; + }; + version = "1.2.1"; + }; + omniauth-saml = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0c7pypskq9y6wbl7c8gnp48j256snph11br3csgwvy9whjfisx65"; + type = "gem"; + }; + version = "1.4.2"; + }; + omniauth-oauth2 = { + dependencies = ["oauth2" "omniauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm"; + type = "gem"; + }; + version = "1.3.1"; + }; + omniauth-oauth = { + dependencies = ["oauth" "omniauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; + type = "gem"; + }; + version = "1.1.0"; + }; + omniauth-multipassword = { + dependencies = ["omniauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0qykp76hw80lkgb39hyzrv68hkbivc8cv0vbvrnycjh9fwfp1lv8"; + type = "gem"; + }; + version = "0.4.2"; + }; + omniauth-kerberos = { + dependencies = ["omniauth-multipassword" "timfel-krb5-auth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "05xsv76qjxcxzrvabaar2bchv7435y8l2j0wk4zgchh3yv85kiq7"; + type = "gem"; + }; + version = "0.3.0"; + }; + omniauth-google-oauth2 = { + dependencies = ["addressable" "jwt" "multi_json" "omniauth" "omniauth-oauth2"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1lm4fk6ig9vwzv7398qd861325g678sfr1iv2mm60xswl69964fi"; + type = "gem"; + }; + version = "0.2.10"; + }; + omniauth-gitlab = { + dependencies = ["omniauth" "omniauth-oauth2"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "083yyc8612kq8ygd8y7s8lxg2d51jcsakbs4pa19aww67gcm72iz"; + type = "gem"; + }; + version = "1.0.1"; + }; + omniauth-github = { + dependencies = ["omniauth" "omniauth-oauth2"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1mbx3c8m1llhdxrqdciq8jh428bxj1nvf4yhziv2xqmqpjcqz617"; + type = "gem"; + }; + version = "1.1.2"; + }; + omniauth-facebook = { + dependencies = ["omniauth-oauth2"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0plj56sna4b6c71k03jsng6gq3r5yxhj7h26ndahc9caasgk869c"; + type = "gem"; + }; + version = "3.0.0"; + }; + omniauth-cas3 = { + dependencies = ["addressable" "nokogiri" "omniauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "13swm2hi2z63nvb2bps6g41kki8kr9b5c7014rk8259bxlpflrk7"; + type = "gem"; + }; + version = "1.1.3"; + }; + omniauth-bitbucket = { + dependencies = ["multi_json" "omniauth" "omniauth-oauth"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1lals2z1yixffrc97zh7zn1jpz9l6vpb3alcp13im42dq9q0g845"; + type = "gem"; + }; + version = "0.0.2"; + }; + omniauth-azure-oauth2 = { + dependencies = ["jwt" "omniauth" "omniauth-oauth2"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0qay454zvyas8xfnfkycqpjkafaq5pw4gaji176cdfw0blhviz0s"; + type = "gem"; + }; + version = "0.0.6"; + }; + omniauth = { version = "1.3.1"; source = { type = "gem"; - sha256 = "0ybbmjxaf529vvhrj4y8d4jpf87f3hgczydzywyg1d04gggjx7l7"; + remotes = ["https://rubygems.org"]; + sha256 = "0vsqxgzkcfi10b7k6vpv3shmlphbs8grc29hznwl9s0i16n8962p"; }; - dependencies = [ - "parser" - ]; }; - "attr_encrypted" = { - version = "1.3.4"; + octokit = { + version = "3.8.0"; source = { type = "gem"; - sha256 = "1hm2844qm37kflqq5v0x2irwasbhcblhp40qk10m3wlkj4m9wp8p"; + remotes = ["https://rubygems.org"]; + sha256 = "0vmknh0vz1g734q32kgpxv0qwz9ifmnw2jfpd2w5rrk6xwq1k7a8"; }; - dependencies = [ - "encryptor" - ]; }; - "attr_required" = { + oauth2 = { + dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r"; + type = "gem"; + }; version = "1.0.0"; - source = { - type = "gem"; - sha256 = "0pawa2i7gw9ppj6fq6y288da1ncjpzsmc6kx7z63mjjvypa5q3dc"; - }; - }; - "autoprefixer-rails" = { - version = "5.2.1.2"; - source = { - type = "gem"; - sha256 = "129kr8hiyzcnj4x3n14nnp7f7scps9v3d690i7fjzpq8i4n9gz8g"; - }; - dependencies = [ - "execjs" - "json" - ]; - }; - "awesome_print" = { - version = "1.2.0"; - source = { - type = "gem"; - sha256 = "1k85hckprq0s9pakgadf42k1d5s07q23m3y6cs977i6xmwdivyzr"; - }; - }; - "axiom-types" = { - version = "0.1.1"; - source = { - type = "gem"; - sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; - }; - dependencies = [ - "descendants_tracker" - "ice_nine" - "thread_safe" - ]; - }; - "bcrypt" = { - version = "3.1.10"; - source = { - type = "gem"; - sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6"; - }; - }; - "better_errors" = { - version = "1.0.1"; - source = { - type = "gem"; - sha256 = "0v0q8bdkqqlcsfqbk4wvc3qnz8an44mgz720v5f11a4nr413mjgf"; - }; - dependencies = [ - "coderay" - "erubis" - ]; - }; - "binding_of_caller" = { - version = "0.7.2"; - source = { - type = "gem"; - sha256 = "15jg6dkaq2nzcd602d7ppqbdxw3aji961942w93crs6qw4n6h9yk"; - }; - dependencies = [ - "debug_inspector" - ]; - }; - "bootstrap-sass" = { - version = "3.3.5"; - source = { - type = "gem"; - sha256 = "0gnbl3jfi7x491kb5b2brhqr981wzg6r9sc907anhq9y727d96iv"; - }; - dependencies = [ - "autoprefixer-rails" - "sass" - ]; - }; - "brakeman" = { - version = "3.0.1"; - source = { - type = "gem"; - sha256 = "0c3pwqhan5qpkmymmp4zpr6j1v3xrvvla9adsd0z9nx1dbc7llry"; - }; - dependencies = [ - "erubis" - "fastercsv" - "haml" - "highline" - "multi_json" - "ruby2ruby" - "ruby_parser" - "sass" - "terminal-table" - ]; - }; - "browser" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "03pmj759wngl03lacn8mdhjn6mc5f8zn08mz6k5hq8czgwcwhjxi"; - }; - }; - "builder" = { - version = "3.2.2"; - source = { - type = "gem"; - sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; - }; - }; - "byebug" = { - version = "6.0.2"; - source = { - type = "gem"; - sha256 = "0537h9qbhr6csahmzyn4lk1g5b2lcligbzd21gfy93nx9lbfdnzc"; - }; - }; - "cal-heatmap-rails" = { - version = "0.0.1"; - source = { - type = "gem"; - sha256 = "07qp74hi1612xgmkfvk1dmc4n79lc7dfkcgqjprnlwb6nkqa940m"; - }; - }; - "capybara" = { - version = "2.4.4"; - source = { - type = "gem"; - sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f"; - }; - dependencies = [ - "mime-types" - "nokogiri" - "rack" - "rack-test" - "xpath" - ]; - }; - "capybara-screenshot" = { - version = "1.0.11"; - source = { - type = "gem"; - sha256 = "17v1wihr3aqrxhrwswkdpdklj1xsfcaksblh1y8hixvm9bqfyz3y"; - }; - dependencies = [ - "capybara" - "launchy" - ]; - }; - "carrierwave" = { - version = "0.9.0"; - source = { - type = "gem"; - sha256 = "1b1av1ancby6brhmypl5k8xwrasd8bd3kqp9ri8kbq7z8nj6k445"; - }; - dependencies = [ - "activemodel" - "activesupport" - "json" - ]; - }; - "celluloid" = { - version = "0.16.0"; - source = { - type = "gem"; - sha256 = "044xk0y7i1xjafzv7blzj5r56s7zr8nzb619arkrl390mf19jxv3"; - }; - dependencies = [ - "timers" - ]; - }; - "charlock_holmes" = { - version = "0.6.9.4"; - source = { - type = "gem"; - sha256 = "1vyzsr3r2bwig9knyhay1m7i828w9x5zhma44iajyrbs1ypvfbg5"; - }; - }; - "chronic" = { - version = "0.10.2"; - source = { - type = "gem"; - sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn"; - }; - }; - "chunky_png" = { - version = "1.3.4"; - source = { - type = "gem"; - sha256 = "0n5xhkj3vffihl3h9s8yjzazqaqcm4p1nyxa1w2dk3fkpzvb0wfw"; - }; - }; - "cliver" = { - version = "0.3.2"; - source = { - type = "gem"; - sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; - }; - }; - "coderay" = { - version = "1.1.0"; - source = { - type = "gem"; - sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; - }; - }; - "coercible" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "1p5azydlsz0nkxmcq0i1gzmcfq02lgxc4as7wmf47j1c6ljav0ah"; - }; - dependencies = [ - "descendants_tracker" - ]; - }; - "coffee-rails" = { - version = "4.1.0"; - source = { - type = "gem"; - sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs"; - }; - dependencies = [ - "coffee-script" - "railties" - ]; - }; - "coffee-script" = { - version = "2.4.1"; - source = { - type = "gem"; - sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; - }; - dependencies = [ - "coffee-script-source" - "execjs" - ]; - }; - "coffee-script-source" = { - version = "1.9.1.1"; - source = { - type = "gem"; - sha256 = "1arfrwyzw4sn7nnaq8jji5sv855rp4c5pvmzkabbdgca0w1cxfq5"; - }; - }; - "colored" = { - version = "1.2"; - source = { - type = "gem"; - sha256 = "0b0x5jmsyi0z69bm6sij1k89z7h0laag3cb4mdn7zkl9qmxb90lx"; - }; - }; - "colorize" = { - version = "0.5.8"; - source = { - type = "gem"; - sha256 = "1rfzvscnk2js87zzwjgg2lk6h6mrv9448z5vx3b8vnm9yrb2qg8g"; - }; - }; - "connection_pool" = { - version = "2.2.0"; - source = { - type = "gem"; - sha256 = "1b2bb3k39ni5mzcnqlv9y4yjkbin20s7dkwzp0jw2jf1rmzcgrmy"; - }; - }; - "coveralls" = { - version = "0.8.2"; - source = { - type = "gem"; - sha256 = "0ds63q3g8zp23813hsvjjqpjglwr76ld4zqbbdhc9ads9l988axz"; - }; - dependencies = [ - "json" - "rest-client" - "simplecov" - "term-ansicolor" - "thor" - ]; - }; - "crack" = { - version = "0.4.2"; - source = { - type = "gem"; - sha256 = "1il94m92sz32nw5i6hdq14f1a2c3s9hza9zn6l95fvqhabq38k7a"; - }; - dependencies = [ - "safe_yaml" - ]; - }; - "creole" = { - version = "0.3.8"; - source = { - type = "gem"; - sha256 = "1wwqk5ij4r5rhzbzhnpqwbn9ck56qgyjs02pjmi2wh46gs8dmkl8"; - }; - }; - "d3_rails" = { - version = "3.5.6"; - source = { - type = "gem"; - sha256 = "0faz49chi08zxqwwdzzcb468gmcfmpv1s58y4c431kpa6kyh8qsm"; - }; - dependencies = [ - "railties" - ]; - }; - "daemons" = { - version = "1.2.3"; - source = { - type = "gem"; - sha256 = "0b839hryy9sg7x3knsa1d6vfiyvn0mlsnhsb6an8zsalyrz1zgqg"; - }; - }; - "database_cleaner" = { - version = "1.4.1"; - source = { - type = "gem"; - sha256 = "0n5r7kvsmknk876v3scdphfnvllr9157fa5q7j5fczg8j5qm6kf0"; - }; - }; - "debug_inspector" = { - version = "0.0.2"; - source = { - type = "gem"; - sha256 = "109761g00dbrw5q0dfnbqg8blfm699z4jj70l4zrgf9mzn7ii50m"; - }; - }; - "default_value_for" = { - version = "3.0.1"; - source = { - type = "gem"; - sha256 = "1z4lrba4y1c3y0rxw8321qbwsb3nr6c2igrpksfvz93yhc9m6xm0"; - }; - dependencies = [ - "activerecord" - ]; - }; - "descendants_tracker" = { - version = "0.0.4"; - source = { - type = "gem"; - sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; - }; - dependencies = [ - "thread_safe" - ]; - }; - "devise" = { - version = "3.5.2"; - source = { - type = "gem"; - sha256 = "1wj88i2hyhcnifj606vzgf2q68yhcpyrsx7bc11h93cma51z59c3"; - }; - dependencies = [ - "bcrypt" - "orm_adapter" - "railties" - "responders" - "thread_safe" - "warden" - ]; - }; - "devise-async" = { - version = "0.9.0"; - source = { - type = "gem"; - sha256 = "11llg7ggzpmg4lb9gh4sx55spvp98sal5r803gjzamps9crfq6mm"; - }; - dependencies = [ - "devise" - ]; - }; - "devise-two-factor" = { - version = "2.0.0"; - source = { - type = "gem"; - sha256 = "1xzaagz6fr9cbq7cj8g7sahx6sxxsc1jyja462caa0gjang9yrhr"; - }; - dependencies = [ - "activesupport" - "attr_encrypted" - "devise" - "railties" - "rotp" - ]; - }; - "diff-lcs" = { - version = "1.2.5"; - source = { - type = "gem"; - sha256 = "1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1"; - }; - }; - "diffy" = { - version = "3.0.7"; - source = { - type = "gem"; - sha256 = "0il0ri511g9rm88qbvncbzgwc6wk6265hmnf7grcczmrs1z49vl0"; - }; - }; - "docile" = { - version = "1.1.5"; - source = { - type = "gem"; - sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; - }; - }; - "domain_name" = { - version = "0.5.24"; - source = { - type = "gem"; - sha256 = "1xjm5arwc35wryn0hbfldx2pfhwx5qilkv7yms4kz0jri3m6mgcc"; - }; - dependencies = [ - "unf" - ]; - }; - "doorkeeper" = { - version = "2.1.4"; - source = { - type = "gem"; - sha256 = "00akgshmz85kxvf35qsag80qbxzjvmkmksjy96zx44ckianxwahl"; - }; - dependencies = [ - "railties" - ]; - }; - "dropzonejs-rails" = { - version = "0.7.1"; - source = { - type = "gem"; - sha256 = "0spfjkji6v98996bc320sx3ar3sflkpbjpzwg6cvbycwfn29fjfy"; - }; - dependencies = [ - "rails" - ]; - }; - "email_reply_parser" = { - version = "0.5.8"; - source = { - type = "gem"; - sha256 = "0k2p229mv7xn7q627zwmvhrcvba4b9m70pw2jfjm6iimg2vmf22r"; - }; - }; - "email_spec" = { - version = "1.6.0"; - source = { - type = "gem"; - sha256 = "00p1cc69ncrgg7m45va43pszip8anx5735w1lsb7p5ygkyw8nnpv"; - }; - dependencies = [ - "launchy" - "mail" - ]; - }; - "encryptor" = { - version = "1.3.0"; - source = { - type = "gem"; - sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y"; - }; - }; - "enumerize" = { - version = "0.7.0"; - source = { - type = "gem"; - sha256 = "0rg6bm3xv7p4i5gs4796v8gc49mzakphwv4kdbhn0wjm690h6226"; - }; - dependencies = [ - "activesupport" - ]; - }; - "equalizer" = { - version = "0.0.11"; - source = { - type = "gem"; - sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; - }; - }; - "erubis" = { - version = "2.7.0"; - source = { - type = "gem"; - sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; - }; - }; - "escape_utils" = { - version = "0.2.4"; - source = { - type = "gem"; - sha256 = "0mg5pgaa02w1bxh0166d367f2ll6fizyrs5dsirrcnw4g17ba54g"; - }; - }; - "eventmachine" = { - version = "1.0.8"; - source = { - type = "gem"; - sha256 = "1frvpk3p73xc64qkn0ymll3flvn4xcycq5yx8a43zd3gyzc1ifjp"; - }; }; - "excon" = { - version = "0.45.4"; + oauth = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1k5j09p3al3clpjl6lax62qmhy43f3j3g7i6f9l4dbs6r5vpv95w"; type = "gem"; - sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w"; }; - }; - "execjs" = { - version = "2.6.0"; - source = { - type = "gem"; - sha256 = "0grlxwiccbnflxs30r3h7g23xnps5knav1jyqkk3anvm8363ifjw"; - }; - }; - "expression_parser" = { - version = "0.9.0"; - source = { - type = "gem"; - sha256 = "1938z3wmmdabqxlh5d5c56xfg1jc6z15p7zjyhvk7364zwydnmib"; - }; - }; - "factory_girl" = { - version = "4.3.0"; - source = { - type = "gem"; - sha256 = "13z20a4b7z1c8vbz0qz5ranssdprldwvwlgjmn38x311sfjmp9dz"; - }; - dependencies = [ - "activesupport" - ]; - }; - "factory_girl_rails" = { - version = "4.3.0"; - source = { - type = "gem"; - sha256 = "1jj0yl6mfildb4g79dwgc1q5pv2pa65k9b1ml43mi8mg62j8mrhz"; - }; - dependencies = [ - "factory_girl" - "railties" - ]; - }; - "faraday" = { - version = "0.8.10"; - source = { - type = "gem"; - sha256 = "093hrmrx3jn9969q6c9cjms2k73aqwhs03kij378kg1d5izr4r6f"; - }; - dependencies = [ - "multipart-post" - ]; - }; - "faraday_middleware" = { - version = "0.10.0"; - source = { - type = "gem"; - sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; - }; - dependencies = [ - "faraday" - ]; - }; - "fastercsv" = { - version = "1.5.5"; - source = { - type = "gem"; - sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h"; - }; - }; - "ffaker" = { - version = "2.0.0"; - source = { - type = "gem"; - sha256 = "19fnbbsw87asyb1hvkr870l2yldah2jcjb8074pgyrma5lynwmn0"; - }; - }; - "ffi" = { - version = "1.9.10"; - source = { - type = "gem"; - sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; - }; - }; - "fission" = { - version = "0.5.0"; - source = { - type = "gem"; - sha256 = "09pmp1j1rr8r3pcmbn2na2ls7s1j9ijbxj99xi3a8r6v5xhjdjzh"; - }; - dependencies = [ - "CFPropertyList" - ]; - }; - "flowdock" = { - version = "0.7.0"; - source = { - type = "gem"; - sha256 = "0wzqj35mn2x2gcy88y00h3jz57ldkkidkwy63jxvmqdlz759pds5"; - }; - dependencies = [ - "httparty" - "multi_json" - ]; - }; - "fog" = { - version = "1.25.0"; - source = { - type = "gem"; - sha256 = "0zncds3qj5n3i780y6y6sy5h1gg0kwiyiirxyisbd8p0ywwr8bc3"; - }; - dependencies = [ - "fog-brightbox" - "fog-core" - "fog-json" - "fog-profitbricks" - "fog-radosgw" - "fog-sakuracloud" - "fog-softlayer" - "fog-terremark" - "fog-vmfusion" - "fog-voxel" - "fog-xml" - "ipaddress" - "nokogiri" - "opennebula" - ]; - }; - "fog-brightbox" = { - version = "0.9.0"; - source = { - type = "gem"; - sha256 = "01a6ydv7y02zbid8s9mqcxpc0k0hig39ap7mrwj9vp6z7mm9dydv"; - }; - dependencies = [ - "fog-core" - "fog-json" - "inflecto" - ]; - }; - "fog-core" = { - version = "1.32.1"; - source = { - type = "gem"; - sha256 = "0pnm3glgha2hxmhjvgp7f088vzdgv08q8c6w8y9c2cys3b4fx83m"; - }; - dependencies = [ - "builder" - "excon" - "formatador" - "mime-types" - "net-scp" - "net-ssh" - ]; - }; - "fog-json" = { - version = "1.0.2"; - source = { - type = "gem"; - sha256 = "0advkkdjajkym77r3c0bg2rlahl2akj0vl4p5r273k2qmi16n00r"; - }; - dependencies = [ - "fog-core" - "multi_json" - ]; - }; - "fog-profitbricks" = { - version = "0.0.5"; - source = { - type = "gem"; - sha256 = "154sqs2dcmvg21v4m3fj8f09z5i70sq8a485v6rdygsffs8xrycn"; - }; - dependencies = [ - "fog-core" - "fog-xml" - "nokogiri" - ]; - }; - "fog-radosgw" = { - version = "0.0.4"; - source = { - type = "gem"; - sha256 = "1pxbvmr4dsqx4x2klwnciyhki4r5ryr9y0hi6xmm3n6fdv4ii7k3"; - }; - dependencies = [ - "fog-core" - "fog-json" - "fog-xml" - ]; - }; - "fog-sakuracloud" = { - version = "1.0.1"; - source = { - type = "gem"; - sha256 = "1s16b48kh7y03hjv74ccmlfwhqqq7j7m4k6cywrgbyip8n3258n8"; - }; - dependencies = [ - "fog-core" - "fog-json" - ]; - }; - "fog-softlayer" = { version = "0.4.7"; - source = { - type = "gem"; - sha256 = "0fgfbhqnyp8ywymvflflhvbns54d1432x57pgpnfy8k1cxvhv9b8"; - }; - dependencies = [ - "fog-core" - "fog-json" - ]; }; - "fog-terremark" = { - version = "0.1.0"; + nprogress-rails = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ylq2208i95661ba0p1ng2i38z4978ddwiidvpb614amfdq5pqvn"; type = "gem"; - sha256 = "01lfkh9jppj0iknlklmwyb7ym3bfhkq58m3absb6rf5a5mcwi3lf"; }; - dependencies = [ - "fog-core" - "fog-xml" - ]; + version = "0.1.6.7"; }; - "fog-vmfusion" = { - version = "0.1.0"; + nokogiri = { + dependencies = ["mini_portile2"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv"; type = "gem"; - sha256 = "0g0l0k9ylxk1h9pzqr6h2ba98fl47lpp3j19lqv4jxw0iw1rqxn4"; }; - dependencies = [ - "fission" - "fog-core" - ]; + version = "1.6.7.2"; }; - "fog-voxel" = { - version = "0.1.0"; + netrc = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0gzfmcywp1da8nzfqsql2zqi648mfnx6qwkig3cv36n9m0yy676y"; type = "gem"; - sha256 = "10skdnj59yf4jpvq769njjrvh2l0wzaa7liva8n78qq003mvmfgx"; }; - dependencies = [ - "fog-core" - "fog-xml" - ]; + version = "0.11.0"; }; - "fog-xml" = { - version = "0.1.2"; + net-ssh = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1dzqkgwi9xm6mbfk1rkk17rzmz8m5xakqi21w1b97ybng6kkw0hf"; type = "gem"; - sha256 = "1576sbzza47z48p0k9h1wg3rhgcvcvdd1dfz3xx1cgahwr564fqa"; }; - dependencies = [ - "fog-core" - "nokogiri" - ]; - }; - "font-awesome-rails" = { - version = "4.4.0.0"; - source = { - type = "gem"; - sha256 = "0igrwlkgpggpfdy3f4kzsz22m14rxx5xnvz3if16czqjlkq4kbbx"; - }; - dependencies = [ - "railties" - ]; - }; - "foreman" = { - version = "0.78.0"; - source = { - type = "gem"; - sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; - }; - dependencies = [ - "thor" - ]; - }; - "formatador" = { - version = "0.2.5"; - source = { - type = "gem"; - sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; - }; - }; - "fuubar" = { - version = "2.0.0"; - source = { - type = "gem"; - sha256 = "0xwqs24y8s73aayh39si17kccsmr0bjgmi6jrjyfp7gkjb6iyhpv"; - }; - dependencies = [ - "rspec" - "ruby-progressbar" - ]; - }; - "gemnasium-gitlab-service" = { - version = "0.2.6"; - source = { - type = "gem"; - sha256 = "1qv7fkahmqkah3770ycrxd0x2ais4z41hb43a0r8q8wcdklns3m3"; - }; - dependencies = [ - "rugged" - ]; - }; - "gemojione" = { - version = "2.0.1"; - source = { - type = "gem"; - sha256 = "0655l0vgs0hbz11s2nlpwwj7df66cxlvv94iz7mhf04qrr5mi26q"; - }; - dependencies = [ - "json" - ]; - }; - "get_process_mem" = { - version = "0.2.0"; - source = { - type = "gem"; - sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; - }; - }; - "gherkin-ruby" = { - version = "0.3.2"; - source = { - type = "gem"; - sha256 = "18ay7yiibf4sl9n94k7mbi4k5zj2igl4j71qcmkswv69znyx0sn1"; - }; - }; - "github-markup" = { - version = "1.3.3"; - source = { - type = "gem"; - sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq"; - }; - }; - "gitlab-flowdock-git-hook" = { - version = "1.0.1"; - source = { - type = "gem"; - sha256 = "1s3a10cdbh4xy732b92zcsm5zyc1lhi5v29d76j8mwbqmj11a2p8"; - }; - dependencies = [ - "flowdock" - "gitlab-grit" - "multi_json" - ]; - }; - "gitlab-grit" = { - version = "2.7.3"; - source = { - type = "gem"; - sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b"; - }; - dependencies = [ - "charlock_holmes" - "diff-lcs" - "mime-types" - "posix-spawn" - ]; - }; - "gitlab-linguist" = { version = "3.0.1"; - source = { - type = "gem"; - sha256 = "14ydmxmdm7j56nwlcf4ai08mpc7d3mbfhida52p1zljshbvda5ib"; - }; - dependencies = [ - "charlock_holmes" - "escape_utils" - "mime-types" - ]; }; - "gitlab_emoji" = { - version = "0.1.1"; + net-ldap = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0z1j0zklbbx3vi91zcd2v0fnkfgkvq3plisa6hxaid8sqndyak46"; type = "gem"; - sha256 = "13jj6ah88x8y6cr5c82j78a4mi5g88a7vpqf617zpcdiabmr0gl6"; }; - dependencies = [ - "gemojione" - ]; + version = "0.12.1"; }; - "gitlab_git" = { - version = "7.2.15"; + nested_form = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0f053j4zfagxyym28msxj56hrpvmyv4lzxy2c5c270f7xbbnii5i"; type = "gem"; - sha256 = "1afa645sj322sfy4h6hksi78m87qgvslmf8rgzlqsa4b6zf4w4x2"; }; - dependencies = [ - "activesupport" - "charlock_holmes" - "gitlab-linguist" - "rugged" - ]; + version = "0.3.2"; }; - "gitlab_meta" = { - version = "7.0"; + mysql2 = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0n075x14n9kziv0qdxqlzhf3j1abi1w6smpakfpsg4jbr8hnn5ip"; type = "gem"; - sha256 = "14vahv7gblcypbvip845sg3lvawf3kij61mkxz5vyfcv23niqvp9"; }; + version = "0.3.20"; }; - "gitlab_omniauth-ldap" = { - version = "1.2.1"; + multipart-post = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; type = "gem"; - sha256 = "1vbdyi57vvlrigyfhmqrnkw801x57fwa3gxvj1rj2bn9ig5186ri"; }; - dependencies = [ - "net-ldap" - "omniauth" - "pyu-ruby-sasl" - "rubyntlm" - ]; + version = "2.0.0"; }; - "gollum-grit_adapter" = { - version = "1.0.0"; + multi_xml = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0i8r7dsz4z79z3j023l8swan7qpbgxbwwz11g38y2vjqjk16v4q8"; type = "gem"; - sha256 = "02c5qfq0s0kx2ifnpbnbgz6258fl7rchzzzc7vpx72shi8gbpac7"; }; - dependencies = [ - "gitlab-grit" - ]; + version = "0.5.5"; }; - "gollum-lib" = { - version = "4.0.3"; + multi_json = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; type = "gem"; - sha256 = "1f8jzxza1ckpyzyk137rqd212vfk2ac2mn1pp1wi880s4ynahyky"; }; - dependencies = [ - "github-markup" - "gollum-grit_adapter" - "nokogiri" - "rouge" - "sanitize" - "stringex" - ]; + version = "1.11.2"; }; - "gon" = { - version = "5.0.4"; + mousetrap-rails = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "00n13r5pwrk4vq018128vcfh021dw0fa2bk4pzsv0fslfm8ayp2m"; type = "gem"; - sha256 = "0gdl6zhj5k8ma3mwm00kjfa12w0l6br9kyyxvfj90cw9irfi049r"; }; - dependencies = [ - "actionpack" - "json" - ]; + version = "1.4.6"; }; - "grape" = { + minitest = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0rxqfakp629mp3vwda7zpgb57lcns5znkskikbfd0kriwv8i1vq8"; + type = "gem"; + }; + version = "5.7.0"; + }; + mini_portile2 = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "056drbn5m4khdxly1asmiik14nyllswr6sh3wallvsywwdiryz8l"; + type = "gem"; + }; + version = "2.0.0"; + }; + mimemagic = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; + type = "gem"; + }; + version = "0.3.0"; + }; + mime-types = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; + type = "gem"; + }; + version = "1.25.1"; + }; + method_source = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; + type = "gem"; + }; + version = "0.8.2"; + }; + mail_room = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0jpybhgw9yi50g422qvnwadn5jnj563vh70qaml5cxzdqxbd7fj1"; + type = "gem"; + }; version = "0.6.1"; - source = { - type = "gem"; - sha256 = "1sjlk0pmgqbb3piz8yb0xjcm7liimrr17y5xflm40amv36pg2gz8"; - }; - dependencies = [ - "activesupport" - "builder" - "hashie" - "multi_json" - "multi_xml" - "rack" - "rack-accept" - "rack-mount" - "virtus" - ]; }; - "grape-entity" = { - version = "0.4.8"; + mail = { + dependencies = ["mime-types"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nbg60h3cpnys45h7zydxwrl200p7ksvmrbxnwwbpaaf9vnf3znp"; type = "gem"; - sha256 = "0hxghs2p9ncvdwhp6dwr1a74g552c49dd0jzy0szp4pg2xjbgjk8"; }; - dependencies = [ - "activesupport" - "multi_json" - ]; + version = "2.6.3"; }; - "growl" = { - version = "1.0.3"; + macaddr = { + dependencies = ["systemu"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; type = "gem"; - sha256 = "0s0y7maljnalpbv2q1j5j5hvb4wcc31y9af0n7x1q2l0fzxgc9n9"; }; + version = "1.7.1"; }; - "guard" = { - version = "2.13.0"; + loofah = { + dependencies = ["nokogiri"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "109ps521p0sr3kgc460d58b4pr1z4mqggan2jbsf0aajy9s6xis8"; type = "gem"; - sha256 = "0p3ndfmi6sdw55c7j19pyb2ymlby1vyxlp0k47366im1vi70b7gf"; }; - dependencies = [ - "formatador" - "listen" - "lumberjack" - "nenv" - "notiffany" - "pry" - "shellany" - "thor" - ]; + version = "2.0.3"; }; - "guard-rspec" = { - version = "4.2.10"; + listen = { + dependencies = ["rb-fsevent" "rb-inotify"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "182wd2pkf690ll19lx6zbk01a3rqkk5lwsyin6kwydl7lqxj5z3g"; type = "gem"; - sha256 = "1mm03i1knmhmdqs4ni03nda7jy3s34c2nxf5sjq1cmywk9c0bn0r"; }; - dependencies = [ - "guard" - "rspec" - ]; + version = "3.0.5"; }; - "haml" = { - version = "4.0.7"; + letter_opener = { + dependencies = ["launchy"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kzbmc686hfh4jznyckq6g40kn14nhb71znsjjm0rc13nb3n0c5l"; type = "gem"; - sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; }; - dependencies = [ - "tilt" - ]; + version = "1.1.2"; }; - "haml-rails" = { - version = "0.5.3"; + launchy = { + dependencies = ["addressable"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; type = "gem"; - sha256 = "0fg4dh1gb7f4h2571wm5qxli02mgg3r8ikp5vwkww12a431vk625"; }; - dependencies = [ - "actionpack" - "activesupport" - "haml" - "railties" - ]; + version = "2.4.3"; }; - "hashie" = { - version = "2.1.2"; + kgio = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1y6wl3vpp82rdv5g340zjgkmy6fny61wib7xylyg0d09k5f26118"; type = "gem"; - sha256 = "08w9ask37zh5w989b6igair3zf8gwllyzix97rlabxglif9f9qd9"; }; + version = "2.10.0"; }; - "highline" = { - version = "1.6.21"; + kaminari = { + dependencies = ["actionpack" "activesupport"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "14vx3kgssl4lv2kn6grr5v2whsynx5rbl1j9aqiq8nc3d7j74l67"; type = "gem"; - sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1"; }; + version = "0.16.3"; }; - "hike" = { - version = "1.2.3"; + jwt = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0is8973si98rsry5igqdag2jb1knj6jhmfkr9r4mc5n0yvgr5n2q"; type = "gem"; - sha256 = "0i6c9hrszzg3gn2j41v3ijnwcm8cc2931fnjiv6mnpl4jcjjykhm"; }; - }; - "hipchat" = { version = "1.5.2"; - source = { - type = "gem"; - sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; - }; - dependencies = [ - "httparty" - "mimemagic" - ]; }; - "hitimes" = { - version = "1.2.3"; + json = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; type = "gem"; - sha256 = "1fr9raz7652bnnx09dllyjdlnwdxsnl0ig5hq9s4s8vackvmckv4"; }; + version = "1.8.3"; }; - "html-pipeline" = { - version = "1.11.0"; + jquery-ui-rails = { + dependencies = ["railties"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1gfygrv4bjpjd2c377lw7xzk1b77rxjyy3w6wl4bq1gkqvyrkx77"; type = "gem"; - sha256 = "1yckdlrn4v5d7bgl8mbffax16640pgg9ny693kqi4j7g17vx2q9l"; }; - dependencies = [ - "activesupport" - "nokogiri" - ]; + version = "5.0.5"; }; - "http-cookie" = { - version = "1.0.2"; + jquery-turbolinks = { + dependencies = ["railties" "turbolinks"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1d23mnl3lgamk9ziw4yyv2ixck6d8s8xp4f9pmwimk0by0jq7xhc"; type = "gem"; - sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw"; }; - dependencies = [ - "domain_name" - ]; + version = "2.1.0"; + }; + jquery-scrollto-rails = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "12ic0zxw60ryglm1qjq5ralqd6k4jawmjj7kqnp1nkqds2nvinvp"; + type = "gem"; + }; + version = "1.4.3"; + }; + jquery-rails = { + dependencies = ["rails-dom-testing" "railties" "thor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "028dv2n0r2r8qj1bqcbzmih0hwzh5km6cvscn2808v5gd44z48r1"; + type = "gem"; + }; + version = "4.0.5"; + }; + jquery-atwho-rails = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0g8239cddyi48i5n0hq2acg9k7n7jilhby9g36zd19mwqyia16w9"; + type = "gem"; + }; + version = "1.3.2"; + }; + ipaddress = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0sl0ldvhd6j0qbwhz18w24qy65mdj448b2vhgh2cwn7xrkksmv9l"; + type = "gem"; + }; + version = "0.8.2"; + }; + influxdb = { + dependencies = ["cause" "json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vhg5nd88nwvfa76lqcczld916nljswwq6clsixrzi3js8ym9y1w"; + type = "gem"; + }; + version = "0.2.3"; + }; + inflecto = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4"; + type = "gem"; + }; + version = "0.0.2"; + }; + ice_nine = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0i674zq0hl6rd0wcd12ni38linfja4k0y3mk5barjb4a6f7rcmkd"; + type = "gem"; + }; + version = "0.11.1"; + }; + i18n = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; + type = "gem"; + }; + version = "0.7.0"; + }; + httpclient = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0k6bqsaqq6c824vrbfb5pkz8bpk565zikd10w85rzj2dy809ik6c"; + type = "gem"; + }; + version = "2.7.0.1"; + }; + httparty = { + dependencies = ["json" "multi_xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0c9gvg6dqw2h3qyaxhrq1pzm6r69zfcmfh038wyhisqsd39g9hr2"; + type = "gem"; + }; + version = "0.13.7"; }; "http_parser.rb" = { - version = "0.5.3"; source = { - type = "gem"; + remotes = ["https://rubygems.org"]; sha256 = "0fwf5d573j1sw52kz057dw0nx2wlivczmx6ybf6mk065n5g54kyn"; - }; - }; - "httparty" = { - version = "0.13.5"; - source = { - type = "gem"; - sha256 = "1m93fbpwydzzwhc2zf2qkj6lrbcabpy7xhx7wb2mnbmgh0fs7ff9"; - }; - dependencies = [ - "json" - "multi_xml" - ]; - }; - "httpclient" = { - version = "2.6.0.1"; - source = { - type = "gem"; - sha256 = "0haz4s9xnzr73mkfpgabspj43bhfm9znmpmgdk74n6gih1xlrx1l"; - }; - }; - "i18n" = { - version = "0.7.0"; - source = { - type = "gem"; - sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; - }; - }; - "ice_cube" = { - version = "0.11.1"; - source = { - type = "gem"; - sha256 = "12y23nczfrgslpfqam90076x603xhlpv3fyh8mv49gks4qn2wk20"; - }; - }; - "ice_nine" = { - version = "0.11.1"; - source = { - type = "gem"; - sha256 = "0i674zq0hl6rd0wcd12ni38linfja4k0y3mk5barjb4a6f7rcmkd"; - }; - }; - "inflecto" = { - version = "0.0.2"; - source = { - type = "gem"; - sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4"; - }; - }; - "ipaddress" = { - version = "0.8.0"; - source = { - type = "gem"; - sha256 = "0cwy4pyd9nl2y2apazp3hvi12gccj5a3ify8mi8k3knvxi5wk2ir"; - }; - }; - "jquery-atwho-rails" = { - version = "1.0.1"; - source = { - type = "gem"; - sha256 = "0fdy4dxfvnzrjbfm45yrnwfczszvnd7psqhnkby0j3qjg8k9xhzw"; - }; - }; - "jquery-rails" = { - version = "3.1.3"; - source = { - type = "gem"; - sha256 = "1n07rj1x7l61wygbjdpknv5nxhbg2iybfgkpdgca2kj6c1nb1d87"; - }; - dependencies = [ - "railties" - "thor" - ]; - }; - "jquery-scrollto-rails" = { - version = "1.4.3"; - source = { - type = "gem"; - sha256 = "12ic0zxw60ryglm1qjq5ralqd6k4jawmjj7kqnp1nkqds2nvinvp"; - }; - dependencies = [ - "railties" - ]; - }; - "jquery-turbolinks" = { - version = "2.0.2"; - source = { - type = "gem"; - sha256 = "1plip56znrkq3na5bjys5q2zvlbyj8p8i29kaayzfpi2c4ixxaq3"; - }; - dependencies = [ - "railties" - "turbolinks" - ]; - }; - "jquery-ui-rails" = { - version = "4.2.1"; - source = { - type = "gem"; - sha256 = "1garrnqwh35acj2pp4sp6fpm2g881h23y644lzbic2qmcrq9wd2v"; - }; - dependencies = [ - "railties" - ]; - }; - "json" = { - version = "1.8.3"; - source = { - type = "gem"; - sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; - }; - }; - "jwt" = { - version = "1.5.1"; - source = { - type = "gem"; - sha256 = "13b5ccknrmxnb6dk7vlmnb05za1xxyqd8dzb6lpqq503wpfrmlyk"; - }; - }; - "kaminari" = { - version = "0.15.1"; - source = { - type = "gem"; - sha256 = "1m67ghp55hr16k1njhd00f225qys67n60qa3jz69kzqvrp6qg33d"; - }; - dependencies = [ - "actionpack" - "activesupport" - ]; - }; - "kgio" = { - version = "2.9.3"; - source = { - type = "gem"; - sha256 = "07gl0drxwckj7kbq5nla2lf81lrrrvirvvdcrykjgivysfg6yp5v"; - }; - }; - "launchy" = { - version = "2.4.3"; - source = { - type = "gem"; - sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; - }; - dependencies = [ - "addressable" - ]; - }; - "letter_opener" = { - version = "1.1.2"; - source = { - type = "gem"; - sha256 = "1kzbmc686hfh4jznyckq6g40kn14nhb71znsjjm0rc13nb3n0c5l"; - }; - dependencies = [ - "launchy" - ]; - }; - "listen" = { - version = "2.10.1"; - source = { - type = "gem"; - sha256 = "1ipainbx21ni7xakdbksxjim6nixvzfjkifb2d3v45a50dp3diqg"; - }; - dependencies = [ - "celluloid" - "rb-fsevent" - "rb-inotify" - ]; - }; - "lumberjack" = { - version = "1.0.9"; - source = { - type = "gem"; - sha256 = "162frm2bwy58pj8ccsdqa4a6i0csrhb9h5l3inhkl1ivgfc8814l"; - }; - }; - "macaddr" = { - version = "1.7.1"; - source = { - type = "gem"; - sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; - }; - dependencies = [ - "systemu" - ]; - }; - "mail" = { - version = "2.6.3"; - source = { - type = "gem"; - sha256 = "1nbg60h3cpnys45h7zydxwrl200p7ksvmrbxnwwbpaaf9vnf3znp"; - }; - dependencies = [ - "mime-types" - ]; - }; - "mail_room" = { - version = "0.5.2"; - source = { - type = "gem"; - sha256 = "1l8ncfwqiiv3nd7i0237xd5ymshgyfxfv4w2bj0lj67ys3l4qwh3"; - }; - }; - "method_source" = { - version = "0.8.2"; - source = { - type = "gem"; - sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; - }; - }; - "mime-types" = { - version = "1.25.1"; - source = { - type = "gem"; - sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; - }; - }; - "mimemagic" = { - version = "0.3.0"; - source = { - type = "gem"; - sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; - }; - }; - "mini_portile" = { - version = "0.6.2"; - source = { - type = "gem"; - sha256 = "0h3xinmacscrnkczq44s6pnhrp4nqma7k056x5wv5xixvf2wsq2w"; - }; - }; - "minitest" = { - version = "5.7.0"; - source = { - type = "gem"; - sha256 = "0rxqfakp629mp3vwda7zpgb57lcns5znkskikbfd0kriwv8i1vq8"; - }; - }; - "mousetrap-rails" = { - version = "1.4.6"; - source = { - type = "gem"; - sha256 = "00n13r5pwrk4vq018128vcfh021dw0fa2bk4pzsv0fslfm8ayp2m"; - }; - }; - "multi_json" = { - version = "1.11.2"; - source = { - type = "gem"; - sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; - }; - }; - "multi_xml" = { - version = "0.5.5"; - source = { - type = "gem"; - sha256 = "0i8r7dsz4z79z3j023l8swan7qpbgxbwwz11g38y2vjqjk16v4q8"; - }; - }; - "multipart-post" = { - version = "1.2.0"; - source = { - type = "gem"; - sha256 = "12p7lnmc52di1r4h73h6xrpppplzyyhani9p7wm8l4kgf1hnmwnc"; - }; - }; - "mysql2" = { - version = "0.3.20"; - source = { - type = "gem"; - sha256 = "0n075x14n9kziv0qdxqlzhf3j1abi1w6smpakfpsg4jbr8hnn5ip"; - }; - }; - "nenv" = { - version = "0.2.0"; - source = { - type = "gem"; - sha256 = "152wxwri0afwgnxdf93gi6wjl9rr5z7vwp8ln0gpa3rddbfc27s6"; - }; - }; - "nested_form" = { - version = "0.3.2"; - source = { - type = "gem"; - sha256 = "0f053j4zfagxyym28msxj56hrpvmyv4lzxy2c5c270f7xbbnii5i"; - }; - }; - "net-ldap" = { - version = "0.11"; - source = { - type = "gem"; - sha256 = "1xfq94lmc5mcc5giipxn9bmrsm9ny1xc1rp0xpm2pgqwr2q8fm7w"; - }; - }; - "net-scp" = { - version = "1.2.1"; - source = { - type = "gem"; - sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; - }; - dependencies = [ - "net-ssh" - ]; - }; - "net-ssh" = { - version = "2.9.2"; - source = { - type = "gem"; - sha256 = "1p0bj41zrmw5lhnxlm1pqb55zfz9y4p9fkrr9a79nrdmzrk1ph8r"; - }; - }; - "netrc" = { - version = "0.10.3"; - source = { - type = "gem"; - sha256 = "1r6cmg1nvxspl24yrqn77vx7xjqigpypialblpcv5qj6xmc4b8lg"; - }; - }; - "newrelic-grape" = { - version = "2.0.0"; - source = { - type = "gem"; - sha256 = "1j8cdlc8lvbh2c2drdq0kfrjbw9bkgqx3qiiizzaxv6yj70vq58a"; - }; - dependencies = [ - "grape" - "newrelic_rpm" - ]; - }; - "newrelic_rpm" = { - version = "3.9.4.245"; - source = { - type = "gem"; - sha256 = "0r1x16wwmiqsf1gj2a1lgc0fq1v0x4yv40k5wgb00gs439vgzyin"; - }; - }; - "nokogiri" = { - version = "1.6.6.2"; - source = { - type = "gem"; - sha256 = "1j4qv32qjh67dcrc1yy1h8sqjnny8siyy4s44awla8d6jk361h30"; - }; - dependencies = [ - "mini_portile" - ]; - }; - "notiffany" = { - version = "0.0.7"; - source = { - type = "gem"; - sha256 = "1v5x1w59qq85r6dpv3y9ga34dfd7hka1qxyiykaw7gm0i6kggbhi"; - }; - dependencies = [ - "nenv" - "shellany" - ]; - }; - "nprogress-rails" = { - version = "0.1.2.3"; - source = { - type = "gem"; - sha256 = "16gqajynqzfvzcyc8b9bjn8xf6j7y80li00ajicxwvb6my2ag304"; - }; - }; - "oauth" = { - version = "0.4.7"; - source = { - type = "gem"; - sha256 = "1k5j09p3al3clpjl6lax62qmhy43f3j3g7i6f9l4dbs6r5vpv95w"; - }; - }; - "oauth2" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r"; - }; - dependencies = [ - "faraday" - "jwt" - "multi_json" - "multi_xml" - "rack" - ]; - }; - "octokit" = { - version = "3.7.1"; - source = { - type = "gem"; - sha256 = "1sd6cammv5m96640vdb8yp3kfpzn52s8y7d77dgsfb25bc1jg4xl"; - }; - dependencies = [ - "sawyer" - ]; - }; - "omniauth" = { - version = "1.2.2"; - source = { - type = "gem"; - sha256 = "1f0hd9ngfb6f8wz8h2r5n8lr99jqjaghn0h2mljdc6fw031ap7lk"; - }; - dependencies = [ - "hashie" - "rack" - ]; - }; - "omniauth-bitbucket" = { - version = "0.0.2"; - source = { - type = "gem"; - sha256 = "1lals2z1yixffrc97zh7zn1jpz9l6vpb3alcp13im42dq9q0g845"; - }; - dependencies = [ - "multi_json" - "omniauth" - "omniauth-oauth" - ]; - }; - "omniauth-github" = { - version = "1.1.2"; - source = { - type = "gem"; - sha256 = "1mbx3c8m1llhdxrqdciq8jh428bxj1nvf4yhziv2xqmqpjcqz617"; - }; - dependencies = [ - "omniauth" - "omniauth-oauth2" - ]; - }; - "omniauth-gitlab" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "1amg3y0ivfakamfwiljgla1vff59b116nd0i6khmaj4jsa4s81hw"; - }; - dependencies = [ - "omniauth" - "omniauth-oauth2" - ]; - }; - "omniauth-google-oauth2" = { - version = "0.2.6"; - source = { - type = "gem"; - sha256 = "1nba1iy6w2wj79pvnp9r5bw7jhks0287lw748vkxl9xmwccldnhj"; - }; - dependencies = [ - "omniauth" - "omniauth-oauth2" - ]; - }; - "omniauth-kerberos" = { - version = "0.2.0"; - source = { - type = "gem"; - sha256 = "1s626nxzq8i6gy67pkh04h8hlmmx4vwpc36sbdsgm1xwyj3hrn1b"; - }; - dependencies = [ - "omniauth-multipassword" - "timfel-krb5-auth" - ]; - }; - "omniauth-multipassword" = { - version = "0.4.2"; - source = { - type = "gem"; - sha256 = "0qykp76hw80lkgb39hyzrv68hkbivc8cv0vbvrnycjh9fwfp1lv8"; - }; - dependencies = [ - "omniauth" - ]; - }; - "omniauth-oauth" = { - version = "1.1.0"; - source = { - type = "gem"; - sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; - }; - dependencies = [ - "oauth" - "omniauth" - ]; - }; - "omniauth-oauth2" = { - version = "1.3.1"; - source = { - type = "gem"; - sha256 = "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm"; - }; - dependencies = [ - "oauth2" - "omniauth" - ]; - }; - "omniauth-saml" = { - version = "1.4.1"; - source = { - type = "gem"; - sha256 = "12jkjdrkc3k2k1y53vfxyicdq2j0djhln6apwzmc10h9jhq23nrq"; - }; - dependencies = [ - "omniauth" - "ruby-saml" - ]; - }; - "omniauth-shibboleth" = { - version = "1.1.2"; - source = { - type = "gem"; - sha256 = "0wy24hwsipjx8iswdbrncgv15qxv7ibg07rv2n6byi037mrnhnhw"; - }; - dependencies = [ - "omniauth" - ]; - }; - "omniauth-twitter" = { - version = "1.0.1"; - source = { - type = "gem"; - sha256 = "060gnfc9im786llgi7vlrfhar1b7jlk19bjjc5d50lwrah0hh4fd"; - }; - dependencies = [ - "multi_json" - "omniauth-oauth" - ]; - }; - "omniauth_crowd" = { - version = "2.2.3"; - source = { - type = "gem"; - sha256 = "12g5ck05h6kr9mnp870x8pkxsadg81ca70hg8n3k8xx007lfw2q7"; - }; - dependencies = [ - "activesupport" - "nokogiri" - "omniauth" - ]; - }; - "opennebula" = { - version = "4.12.1"; - source = { - type = "gem"; - sha256 = "1y2k706mcxf69cviy415icnhdz7ll5nld9iksqdg4asp60gybq3k"; - }; - dependencies = [ - "json" - "nokogiri" - "rbvmomi" - ]; - }; - "org-ruby" = { - version = "0.9.12"; - source = { - type = "gem"; - sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"; - }; - dependencies = [ - "rubypants" - ]; - }; - "orm_adapter" = { - version = "0.5.0"; - source = { - type = "gem"; - sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; - }; - }; - "paranoia" = { - version = "2.1.3"; - source = { - type = "gem"; - sha256 = "1v6izkdf8npwcblzn9zl9ysagih75584d8hpjzhiv0ijz6cw3l92"; - }; - dependencies = [ - "activerecord" - ]; - }; - "parser" = { - version = "2.2.2.6"; - source = { - type = "gem"; - sha256 = "0rmh4yr5qh87wqgwzbs6vy8wyf248k09m2vfjf9br6jdb5zgj5hh"; - }; - dependencies = [ - "ast" - ]; - }; - "pg" = { - version = "0.18.2"; - source = { - type = "gem"; - sha256 = "1axxbf6ij1iqi3i1r3asvjc80b0py5bz0m2wy5kdi5xkrpr82kpf"; - }; - }; - "poltergeist" = { - version = "1.6.0"; - source = { - type = "gem"; - sha256 = "0mpy2yhn0bhm2s78h8wy22j6378vvsdkj5pcvhr2zfhdjf46g41d"; - }; - dependencies = [ - "capybara" - "cliver" - "multi_json" - "websocket-driver" - ]; - }; - "posix-spawn" = { - version = "0.3.11"; - source = { - type = "gem"; - sha256 = "052lnxbkvlnwfjw4qd7vn2xrlaaqiav6f5x5bcjin97bsrfq6cmr"; - }; - }; - "powerpack" = { - version = "0.0.9"; - source = { - type = "gem"; - sha256 = "0gflp6d2dc4jz3kgg8v4pdzm3qr2bbdygr83dbsi69pxm2gy5536"; - }; - }; - "pry" = { - version = "0.10.1"; - source = { - type = "gem"; - sha256 = "1j0r5fm0wvdwzbh6d6apnp7c0n150hpm9zxpm5xvcgfqr36jaj8z"; - }; - dependencies = [ - "coderay" - "method_source" - "slop" - ]; - }; - "pry-rails" = { - version = "0.3.4"; - source = { - type = "gem"; - sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; - }; - dependencies = [ - "pry" - ]; - }; - "pyu-ruby-sasl" = { - version = "0.0.3.3"; - source = { - type = "gem"; - sha256 = "1rcpjiz9lrvyb3rd8k8qni0v4ps08psympffyldmmnrqayyad0sn"; - }; - }; - "quiet_assets" = { - version = "1.0.3"; - source = { - type = "gem"; - sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1"; - }; - dependencies = [ - "railties" - ]; - }; - "rack" = { - version = "1.5.5"; - source = { - type = "gem"; - sha256 = "1ds3gh8m5gy0d2k4g12k67qid7magg1ia186872yq22ham7sgr2a"; - }; - }; - "rack-accept" = { - version = "0.4.5"; - source = { - type = "gem"; - sha256 = "18jdipx17b4ki33cfqvliapd31sbfvs4mv727awynr6v95a7n936"; - }; - dependencies = [ - "rack" - ]; - }; - "rack-attack" = { - version = "4.3.0"; - source = { - type = "gem"; - sha256 = "06v5xvp33aysf8hkl9lwl1yjkc82jdlvcm2361y7ckjgykf8ixfr"; - }; - dependencies = [ - "rack" - ]; - }; - "rack-cors" = { - version = "0.2.9"; - source = { - type = "gem"; - sha256 = "0z88pbbasr86z6h0965cny0gvrnj7zwv31s506xbpivk4vd6n9as"; - }; - }; - "rack-mini-profiler" = { - version = "0.9.7"; - source = { - type = "gem"; - sha256 = "03lz6x1s8rbrccfsxl2rq677zqkmkvzv7whbmwzdp71zzyvvm14j"; - }; - dependencies = [ - "rack" - ]; - }; - "rack-mount" = { - version = "0.8.3"; - source = { - type = "gem"; - sha256 = "09a1qfaxxsll1kbgz7z0q0nr48sfmfm7akzaviis5bjpa5r00ld2"; - }; - dependencies = [ - "rack" - ]; - }; - "rack-oauth2" = { - version = "1.0.10"; - source = { - type = "gem"; - sha256 = "1srg4hdnyn6bwx225snyq7flb0cn96ppdvicwls6qvp6i4n91k36"; - }; - dependencies = [ - "activesupport" - "attr_required" - "httpclient" - "multi_json" - "rack" - ]; - }; - "rack-protection" = { - version = "1.5.3"; - source = { - type = "gem"; - sha256 = "0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r"; - }; - dependencies = [ - "rack" - ]; - }; - "rack-test" = { - version = "0.6.3"; - source = { - type = "gem"; - sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; - }; - dependencies = [ - "rack" - ]; - }; - "rails" = { - version = "4.1.12"; - source = { - type = "gem"; - sha256 = "0k2n6y92gmysk8y6j1hy6av53f07hhzkhw41qfqwr2hgqc6q8idv"; - }; - dependencies = [ - "actionmailer" - "actionpack" - "actionview" - "activemodel" - "activerecord" - "activesupport" - "railties" - "sprockets-rails" - ]; - }; - "rails-observers" = { - version = "0.1.2"; - source = { - type = "gem"; - sha256 = "1lsw19jzmvipvrfy2z04hi7r29dvkfc43h43vs67x6lsj9rxwwcy"; - }; - dependencies = [ - "activemodel" - ]; - }; - "railties" = { - version = "4.1.12"; - source = { - type = "gem"; - sha256 = "0v16grd6ip3ijiz1v36myiirqx9fx004lfvnsmh28b2ddjxcci4q"; - }; - dependencies = [ - "actionpack" - "activesupport" - "rake" - "thor" - ]; - }; - "rainbow" = { - version = "2.0.0"; - source = { - type = "gem"; - sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4"; - }; - }; - "raindrops" = { - version = "0.15.0"; - source = { - type = "gem"; - sha256 = "1hv0xhr762axywr937czi92fs0x3zk7k22vg6f4i7rr8d05sp560"; - }; - }; - "rake" = { - version = "10.4.2"; - source = { - type = "gem"; - sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; - }; - }; - "raphael-rails" = { - version = "2.1.2"; - source = { - type = "gem"; - sha256 = "0sjiaymvfn4al5dr1pza5i142byan0fxnj4rymziyql2bzvdm2bc"; - }; - }; - "rb-fsevent" = { - version = "0.9.5"; - source = { - type = "gem"; - sha256 = "1p4rz4qqarl7xg2aldpra54h81yal93cbxdy02lmb9kf6f7y2fz4"; - }; - }; - "rb-inotify" = { - version = "0.9.5"; - source = { - type = "gem"; - sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"; - }; - dependencies = [ - "ffi" - ]; - }; - "rbvmomi" = { - version = "1.8.2"; - source = { - type = "gem"; - sha256 = "0gjbfazl2q42m1m51nvv14q7y5lbya272flmvhpqvg5z10nbxanj"; - }; - dependencies = [ - "builder" - "nokogiri" - "trollop" - ]; - }; - "rdoc" = { - version = "3.12.2"; - source = { - type = "gem"; - sha256 = "1v9k4sp5yzj2bshngckdvivj6bszciskk1nd2r3wri2ygs7vgqm8"; - }; - dependencies = [ - "json" - ]; - }; - "redcarpet" = { - version = "3.3.2"; - source = { - type = "gem"; - sha256 = "1xf95nrc8jgv9hjzjnbf3ljwmp29rqxdamyj9crza2czl4k63rnm"; - }; - }; - "redis" = { - version = "3.2.1"; - source = { - type = "gem"; - sha256 = "16jzlqp80qiqg5cdc9l144n6k3c5qj9if4pgij87sscn8ahi993k"; - }; - }; - "redis-actionpack" = { - version = "4.0.0"; - source = { - type = "gem"; - sha256 = "0mad0v3qanw3xi9zs03f4w8sn1qb3x501k3235ck8m5i8vgjk474"; - }; - dependencies = [ - "actionpack" - "redis-rack" - "redis-store" - ]; - }; - "redis-activesupport" = { - version = "4.1.1"; - source = { - type = "gem"; - sha256 = "1xciffiqbhksy534sysdd8pgn2hlvyrs1qb4x1kbcx9f3f83y551"; - }; - dependencies = [ - "activesupport" - "redis-store" - ]; - }; - "redis-namespace" = { - version = "1.5.2"; - source = { - type = "gem"; - sha256 = "0rp8gfkznfxqzxk9s976k71jnljkh0clkrhnp6vgx46s5yhj9g25"; - }; - dependencies = [ - "redis" - ]; - }; - "redis-rack" = { - version = "1.5.0"; - source = { - type = "gem"; - sha256 = "1y1mxx8gn0krdrpwllv7fqsbvki1qjnb2dz8b4q9gwc326829gk8"; - }; - dependencies = [ - "rack" - "redis-store" - ]; - }; - "redis-rails" = { - version = "4.0.0"; - source = { - type = "gem"; - sha256 = "0igww7hb58aq74mh50dli3zjg78b54y8nhd0h1h9vz4vgjd4q8m7"; - }; - dependencies = [ - "redis-actionpack" - "redis-activesupport" - "redis-store" - ]; - }; - "redis-store" = { - version = "1.1.6"; - source = { - type = "gem"; - sha256 = "1x8pfpd6c3xxb3l9nyggi9qpgxcp9k9rkdwwl80m95lhynwaxcds"; - }; - dependencies = [ - "redis" - ]; - }; - "request_store" = { - version = "1.2.0"; - source = { - type = "gem"; - sha256 = "1s7lk5klbg2qfh8hgqymjrlwgpmjmfx03x1hniq16shd1cjwch45"; - }; - }; - "rerun" = { - version = "0.10.0"; - source = { - type = "gem"; - sha256 = "0hsw0q0wriz4h55hkm9yd313hqixgsgnp4wrl8v4k4zwz41j76xk"; - }; - dependencies = [ - "listen" - ]; - }; - "responders" = { - version = "1.1.2"; - source = { - type = "gem"; - sha256 = "178279kf1kaah917r6zwzw5kk9swj28yxmg6aqffna7789kjhy3f"; - }; - dependencies = [ - "railties" - ]; - }; - "rest-client" = { - version = "1.8.0"; - source = { - type = "gem"; - sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7"; - }; - dependencies = [ - "http-cookie" - "mime-types" - "netrc" - ]; - }; - "rinku" = { - version = "1.7.3"; - source = { - type = "gem"; - sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; - }; - }; - "rotp" = { - version = "2.1.1"; - source = { - type = "gem"; - sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g"; - }; - }; - "rouge" = { - version = "1.10.1"; - source = { - type = "gem"; - sha256 = "0wp8as9ypdy18kdj9h70kny1rdfq71mr8cj2bpahr9vxjjvjasqz"; - }; - }; - "rqrcode" = { - version = "0.7.0"; - source = { - type = "gem"; - sha256 = "188n1mvc7klrlw30bai16sdg4yannmy7cz0sg0nvm6f1kjx5qflb"; - }; - dependencies = [ - "chunky_png" - ]; - }; - "rqrcode-rails3" = { - version = "0.1.7"; - source = { - type = "gem"; - sha256 = "1i28rwmj24ssk91chn0g7qsnvn003y3s5a7jsrg3w4l5ckr841bg"; - }; - dependencies = [ - "rqrcode" - ]; - }; - "rspec" = { - version = "3.3.0"; - source = { - type = "gem"; - sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r"; - }; - dependencies = [ - "rspec-core" - "rspec-expectations" - "rspec-mocks" - ]; - }; - "rspec-core" = { - version = "3.3.2"; - source = { - type = "gem"; - sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1"; - }; - dependencies = [ - "rspec-support" - ]; - }; - "rspec-expectations" = { - version = "3.3.1"; - source = { - type = "gem"; - sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah"; - }; - dependencies = [ - "diff-lcs" - "rspec-support" - ]; - }; - "rspec-mocks" = { - version = "3.3.2"; - source = { - type = "gem"; - sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg"; - }; - dependencies = [ - "diff-lcs" - "rspec-support" - ]; - }; - "rspec-rails" = { - version = "3.3.3"; - source = { - type = "gem"; - sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a"; - }; - dependencies = [ - "actionpack" - "activesupport" - "railties" - "rspec-core" - "rspec-expectations" - "rspec-mocks" - "rspec-support" - ]; - }; - "rspec-support" = { - version = "3.3.0"; - source = { - type = "gem"; - sha256 = "1cyagig8slxjas8mbg5f8bl240b8zgr8mnjsvrznag1fwpkh4h27"; - }; - }; - "rubocop" = { - version = "0.28.0"; - source = { - type = "gem"; - sha256 = "07n4gha1dp1n15np5v8p58980lsiys3wa9h39lrvnzxgq18m3c4d"; - }; - dependencies = [ - "astrolabe" - "parser" - "powerpack" - "rainbow" - "ruby-progressbar" - ]; - }; - "ruby-fogbugz" = { - version = "0.2.1"; - source = { - type = "gem"; - sha256 = "1jj0gpkycbrivkh2q3429vj6mbgx6axxisg69slj3c4mgvzfgchm"; - }; - dependencies = [ - "crack" - ]; - }; - "ruby-progressbar" = { - version = "1.7.5"; - source = { - type = "gem"; - sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; - }; - }; - "ruby-saml" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "0hqn49ca2ln5ybc77vpm1vs0szk3pyrz3hnbkbqrkp864mniisi4"; - }; - dependencies = [ - "nokogiri" - "uuid" - ]; - }; - "ruby2ruby" = { - version = "2.1.4"; - source = { - type = "gem"; - sha256 = "1h0bwjivcsazfd9j9phs640xxqwgvggj9kmafin88ahf7j77spim"; - }; - dependencies = [ - "ruby_parser" - "sexp_processor" - ]; - }; - "ruby_parser" = { - version = "3.5.0"; - source = { - type = "gem"; - sha256 = "1l1lzbn5ywfsg8m8cvxwb415p1816ikvjqnsh5as9h4g1vcknw3y"; - }; - dependencies = [ - "sexp_processor" - ]; - }; - "rubyntlm" = { - version = "0.5.2"; - source = { - type = "gem"; - sha256 = "04l8686hl0829x4acsnbz0licf8n6794p7shz8iyahin1jnqg3d7"; - }; - }; - "rubypants" = { - version = "0.2.0"; - source = { - type = "gem"; - sha256 = "1vpdkrc4c8qhrxph41wqwswl28q5h5h994gy4c1mlrckqzm3hzph"; - }; - }; - "rugged" = { - version = "0.22.2"; - source = { - type = "gem"; - sha256 = "179pnnvlsrwd96csmhwhy45y4f5p7qh3xcbg6v3hdv5m9qqcirpp"; - }; - }; - "safe_yaml" = { - version = "1.0.4"; - source = { - type = "gem"; - sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; - }; - }; - "sanitize" = { - version = "2.1.0"; - source = { - type = "gem"; - sha256 = "0xsv6xqrlz91rd8wifjknadbl3z5h6qphmxy0hjb189qbdghggn3"; - }; - dependencies = [ - "nokogiri" - ]; - }; - "sass" = { - version = "3.2.19"; - source = { - type = "gem"; - sha256 = "1b5z55pmban9ry7k572ghmpcz9h04nbrdhdfpcz8zaldv5v7vkfx"; - }; - }; - "sass-rails" = { - version = "4.0.5"; - source = { - type = "gem"; - sha256 = "1nw78ijbxpaf0pdr6c0jx63nna1l9m8s1mmb4m3g2clx0i0xm4wb"; - }; - dependencies = [ - "railties" - "sass" - "sprockets" - "sprockets-rails" - ]; - }; - "sawyer" = { - version = "0.6.0"; - source = { - type = "gem"; - sha256 = "0fk43bzwn816qj1ksiicm2i1kmzv5675cmnvk57kmfmi4rfsyjpy"; - }; - dependencies = [ - "addressable" - "faraday" - ]; - }; - "sdoc" = { - version = "0.3.20"; - source = { - type = "gem"; - sha256 = "17l8qk0ld47z4h5avcnylvds8nc6dp25zc64w23z8li2hs341xf2"; - }; - dependencies = [ - "json" - "rdoc" - ]; - }; - "seed-fu" = { - version = "2.3.5"; - source = { - type = "gem"; - sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw"; - }; - dependencies = [ - "activerecord" - "activesupport" - ]; - }; - "select2-rails" = { - version = "3.5.9.3"; - source = { - type = "gem"; - sha256 = "0ni2k74n73y3gv56gs37gkjlh912szjf6k9j483wz41m3xvlz7fj"; - }; - dependencies = [ - "thor" - ]; - }; - "settingslogic" = { - version = "2.0.9"; - source = { - type = "gem"; - sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; - }; - }; - "sexp_processor" = { - version = "4.6.0"; - source = { - type = "gem"; - sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2"; - }; - }; - "sham_rack" = { - version = "1.3.6"; - source = { - type = "gem"; - sha256 = "0zs6hpgg87x5jrykjxgfp2i7m5aja53s5kamdhxam16wki1hid3i"; - }; - dependencies = [ - "rack" - ]; - }; - "shellany" = { - version = "0.0.1"; - source = { - type = "gem"; - sha256 = "1ryyzrj1kxmnpdzhlv4ys3dnl2r5r3d2rs2jwzbnd1v96a8pl4hf"; - }; - }; - "shoulda-matchers" = { - version = "2.8.0"; - source = { - type = "gem"; - sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; - }; - dependencies = [ - "activesupport" - ]; - }; - "sidekiq" = { - version = "3.3.0"; - source = { - type = "gem"; - sha256 = "0xwy2n4jaja82gw11q1qsqc2jp7hp2asxhfr0gkfb58wj7k5y32l"; - }; - dependencies = [ - "celluloid" - "connection_pool" - "json" - "redis" - "redis-namespace" - ]; - }; - "sidetiq" = { - version = "0.6.3"; - source = { - type = "gem"; - sha256 = "1sylv1nyrn7w3782fh0f5svjqricr53vacf4kkvx3l2azzymc2am"; - }; - dependencies = [ - "celluloid" - "ice_cube" - "sidekiq" - ]; - }; - "simple_oauth" = { - version = "0.1.9"; - source = { - type = "gem"; - sha256 = "0bb06p88xsdw4fxll1ikv5i5k58sl6y323ss0wp1hqjm3xw1jgvj"; - }; - }; - "simplecov" = { - version = "0.10.0"; - source = { - type = "gem"; - sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4"; - }; - dependencies = [ - "docile" - "json" - "simplecov-html" - ]; - }; - "simplecov-html" = { - version = "0.10.0"; - source = { - type = "gem"; - sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; - }; - }; - "sinatra" = { - version = "1.4.6"; - source = { - type = "gem"; - sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7"; - }; - dependencies = [ - "rack" - "rack-protection" - "tilt" - ]; - }; - "six" = { - version = "0.2.0"; - source = { - type = "gem"; - sha256 = "1bhapiyjh5r5qjpclfw8i65plvy6k2q4azr5xir63xqglr53viw3"; - }; - }; - "slack-notifier" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "0v4kd0l83shmk17qb35lighxjq9j7g3slnkrsyiy36kaqcfrjm97"; - }; - }; - "slim" = { - version = "2.0.3"; - source = { - type = "gem"; - sha256 = "1z279vis4z2xsjzf568pxcl2gd1az760ij13d6qzx400mgn7nqxs"; - }; - dependencies = [ - "temple" - "tilt" - ]; - }; - "slop" = { - version = "3.6.0"; - source = { - type = "gem"; - sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; - }; - }; - "spinach" = { - version = "0.8.10"; - source = { - type = "gem"; - sha256 = "0phfjs4iw2iqxdaljzwk6qxmi2x86pl3hirmpgw2pgfx76wfx688"; - }; - dependencies = [ - "colorize" - "gherkin-ruby" - "json" - ]; - }; - "spinach-rails" = { - version = "0.2.1"; - source = { - type = "gem"; - sha256 = "1nfacfylkncfgi59g2wga6m4nzdcjqb8s50cax4nbx362ap4bl70"; - }; - dependencies = [ - "capybara" - "railties" - "spinach" - ]; - }; - "spring" = { - version = "1.3.6"; - source = { - type = "gem"; - sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1"; - }; - }; - "spring-commands-rspec" = { - version = "1.0.4"; - source = { - type = "gem"; - sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; - }; - dependencies = [ - "spring" - ]; - }; - "spring-commands-spinach" = { - version = "1.0.0"; - source = { - type = "gem"; - sha256 = "138jardqyj96wz68njdgy55qjbpl2d0g8bxbkz97ndaz3c2bykv9"; - }; - dependencies = [ - "spring" - ]; - }; - "spring-commands-teaspoon" = { - version = "0.0.2"; - source = { - type = "gem"; - sha256 = "1g7n4m2s9d0frh7y1xibzpphqajfnx4fvgfc66nh545dd91w2nqz"; - }; - dependencies = [ - "spring" - ]; - }; - "sprockets" = { - version = "2.12.4"; - source = { - type = "gem"; - sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3"; - }; - dependencies = [ - "hike" - "multi_json" - "rack" - "tilt" - ]; - }; - "sprockets-rails" = { - version = "2.3.2"; - source = { - type = "gem"; - sha256 = "1pk2a69cxirg2dkkpl5cr3fvrj1qgifw1fmpz1ggkcziwxajyg6d"; - }; - dependencies = [ - "actionpack" - "activesupport" - "sprockets" - ]; - }; - "stamp" = { - version = "0.5.0"; - source = { - type = "gem"; - sha256 = "1w54kxm4sd4za9rhrkl5lqjbsalhziq95sr3nnwr1lqc00nn5mhs"; - }; - }; - "state_machine" = { - version = "1.2.0"; - source = { - type = "gem"; - sha256 = "1vf25h443b1s98d2lhd1w3rgam86pjsjhz632f3yrfkn374xvz40"; - }; - }; - "stringex" = { - version = "2.5.2"; - source = { type = "gem"; - sha256 = "150adm7rfh6r9b5ra6vk75mswf9m3wwyslcf8f235a08m29fxa17"; }; + version = "0.5.3"; }; - "systemu" = { - version = "2.6.5"; + http-cookie = { + dependencies = ["domain_name"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw"; type = "gem"; - sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; }; - }; - "task_list" = { version = "1.0.2"; - source = { - type = "gem"; - sha256 = "1iv1fizb04463c4mp4gxd8v0414fhvmiwvwvjby5b9qq79d8zwab"; - }; - dependencies = [ - "html-pipeline" - ]; }; - "teaspoon" = { - version = "1.0.2"; + html2haml = { + dependencies = ["erubis" "haml" "nokogiri" "ruby_parser"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "069zcy8lr010hn4qmbi8g5srdf69brk8nbgx4zcqcgbgsl4m8d4i"; type = "gem"; - sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s"; }; - dependencies = [ - "railties" - ]; - }; - "teaspoon-jasmine" = { - version = "2.2.0"; - source = { - type = "gem"; - sha256 = "00wygrv1jm4aj15p1ab9d5fdrj6y83kv26xgp52mx4lp78h2ms9q"; - }; - dependencies = [ - "teaspoon" - ]; - }; - "temple" = { - version = "0.6.10"; - source = { - type = "gem"; - sha256 = "1lzz4bisg97725m1q62jhmcxklfhky7g326d0b7p2q0kjx262q81"; - }; - }; - "term-ansicolor" = { - version = "1.3.2"; - source = { - type = "gem"; - sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys"; - }; - dependencies = [ - "tins" - ]; - }; - "terminal-table" = { - version = "1.5.2"; - source = { - type = "gem"; - sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f"; - }; - }; - "test_after_commit" = { - version = "0.2.7"; - source = { - type = "gem"; - sha256 = "179dgdpsmn9lcxxkyrxxvmyj4x3xi9sdq80l3zfqcgprnbxavbp7"; - }; - dependencies = [ - "activerecord" - ]; - }; - "thin" = { - version = "1.6.3"; - source = { - type = "gem"; - sha256 = "1m56aygh5rh8ncp3s2gnn8ghn5ibkk0bg6s3clmh1vzaasw2lj4i"; - }; - dependencies = [ - "daemons" - "eventmachine" - "rack" - ]; - }; - "thor" = { - version = "0.19.1"; - source = { - type = "gem"; - sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; - }; - }; - "thread_safe" = { - version = "0.3.5"; - source = { - type = "gem"; - sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; - }; - }; - "tilt" = { - version = "1.4.1"; - source = { - type = "gem"; - sha256 = "00sr3yy7sbqaq7cb2d2kpycajxqf1b1wr1yy33z4bnzmqii0b0ir"; - }; - }; - "timers" = { - version = "4.0.4"; - source = { - type = "gem"; - sha256 = "1jx4wb0x182gmbcs90vz0wzfyp8afi1mpl9w5ippfncyk4kffvrz"; - }; - dependencies = [ - "hitimes" - ]; - }; - "timfel-krb5-auth" = { - version = "0.8.3"; - source = { - type = "gem"; - sha256 = "105vajc0jkqgcx1wbp0ad262sdry4l1irk7jpaawv8vzfjfqqf5b"; - }; - }; - "tinder" = { - version = "1.9.4"; - source = { - type = "gem"; - sha256 = "0gl5kln3dgybgarksk2ly4y0wy2lljsh59idfllwzynap8hx9jar"; - }; - dependencies = [ - "eventmachine" - "faraday" - "faraday_middleware" - "hashie" - "json" - "mime-types" - "multi_json" - "twitter-stream" - ]; - }; - "tins" = { - version = "1.6.0"; - source = { - type = "gem"; - sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz"; - }; - }; - "trollop" = { - version = "2.1.2"; - source = { - type = "gem"; - sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8"; - }; - }; - "turbolinks" = { - version = "2.5.3"; - source = { - type = "gem"; - sha256 = "1ddrx25vvvqxlz4h59lrmjhc2bfwxf4bpicvyhgbpjd48ckj81jn"; - }; - dependencies = [ - "coffee-rails" - ]; - }; - "twitter-stream" = { - version = "0.1.16"; - source = { - type = "gem"; - sha256 = "0is81g3xvnjk64sqiaqlh2ziwfryzwvk1yvaniryg0zhppgsyriq"; - }; - dependencies = [ - "eventmachine" - "http_parser.rb" - "simple_oauth" - ]; - }; - "tzinfo" = { - version = "1.2.2"; - source = { - type = "gem"; - sha256 = "1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"; - }; - dependencies = [ - "thread_safe" - ]; - }; - "uglifier" = { - version = "2.3.3"; - source = { - type = "gem"; - sha256 = "0v45v2hccmadxpqrlk8gj9sgyak4d6838014wizdvzkh8sy23nvr"; - }; - dependencies = [ - "execjs" - "json" - ]; - }; - "underscore-rails" = { - version = "1.4.4"; - source = { - type = "gem"; - sha256 = "1xg3dfym38gj5zsjxpf1v5cz4j6gysirv9bgc5ls37krixkajag2"; - }; - }; - "unf" = { - version = "0.1.4"; - source = { - type = "gem"; - sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; - }; - dependencies = [ - "unf_ext" - ]; - }; - "unf_ext" = { - version = "0.0.7.1"; - source = { - type = "gem"; - sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"; - }; - }; - "unicorn" = { - version = "4.8.3"; - source = { - type = "gem"; - sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4"; - }; - dependencies = [ - "kgio" - "rack" - "raindrops" - ]; - }; - "unicorn-worker-killer" = { - version = "0.4.3"; - source = { - type = "gem"; - sha256 = "0hhss1bwammh7nhplcj90455h79yq10c30npz4lpcsgw7vcpls00"; - }; - dependencies = [ - "get_process_mem" - "unicorn" - ]; - }; - "uuid" = { - version = "2.3.8"; - source = { - type = "gem"; - sha256 = "0gr2mxg27l380wpiy66mgv9wq02myj6m4gmp6c4g1vsbzkh0213v"; - }; - dependencies = [ - "macaddr" - ]; - }; - "version_sorter" = { version = "2.0.0"; - source = { - type = "gem"; - sha256 = "1lad9c43w2xfzmva57ia6glpmhyivyk1m79jli42canshvan5v6y"; - }; }; - "virtus" = { - version = "1.0.5"; + html-pipeline = { + dependencies = ["activesupport" "nokogiri"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1yckdlrn4v5d7bgl8mbffax16640pgg9ny693kqi4j7g17vx2q9l"; type = "gem"; - sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; }; - dependencies = [ - "axiom-types" - "coercible" - "descendants_tracker" - "equalizer" - ]; + version = "1.11.0"; }; - "warden" = { + hipchat = { + dependencies = ["httparty" "mimemagic"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; + type = "gem"; + }; + version = "1.5.2"; + }; + hike = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0i6c9hrszzg3gn2j41v3ijnwcm8cc2931fnjiv6mnpl4jcjjykhm"; + type = "gem"; + }; version = "1.2.3"; + }; + highline = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; + type = "gem"; + }; + version = "1.7.8"; + }; + hashie = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1iv5hd0zcryprx9lbcm615r3afc0d6rhc27clywmhhgpx68k8899"; + type = "gem"; + }; + version = "3.4.3"; + }; + haml-rails = { + dependencies = ["actionpack" "activesupport" "haml" "html2haml" "railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hbfznkxab663hxp1v6gpsa7sv6w1fnw9r8b3flixwylnwh3c5dz"; + type = "gem"; + }; + version = "0.9.0"; + }; + haml = { + dependencies = ["tilt"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; + type = "gem"; + }; + version = "4.0.7"; + }; + grape-entity = { + dependencies = ["activesupport" "multi_json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0hxghs2p9ncvdwhp6dwr1a74g552c49dd0jzy0szp4pg2xjbgjk8"; + type = "gem"; + }; + version = "0.4.8"; + }; + grape = { + dependencies = ["activesupport" "builder" "hashie" "multi_json" "multi_xml" "rack" "rack-accept" "rack-mount" "virtus"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1dxfal5jspxq612jjkqbd7xgp5dswdyllbbfq6fj2m7s21pismmh"; + type = "gem"; + }; + version = "0.13.0"; + }; + gon = { + dependencies = ["actionpack" "json" "multi_json" "request_store"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1f359cd9zsa4nrng35bij5skvjrj5ywn2dhmlg41b97vmza26bxr"; + type = "gem"; + }; + version = "6.0.1"; + }; + gollum-lib = { + dependencies = ["github-markup" "gollum-grit_adapter" "nokogiri" "rouge" "sanitize" "stringex"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "01s8pgzhc3cgcmsy6hh79wrcbn5vbadniq2a7d4qw87kpq7mzfdm"; + type = "gem"; + }; + version = "4.1.0"; + }; + gollum-grit_adapter = { + dependencies = ["gitlab-grit"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "02c5qfq0s0kx2ifnpbnbgz6258fl7rchzzzc7vpx72shi8gbpac7"; + type = "gem"; + }; + version = "1.0.0"; + }; + globalid = { + dependencies = ["activesupport"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "145xrpsfx1qqjy33r6qa588wb16dvdhxzj2aysh755vhg6hgm291"; + type = "gem"; + }; + version = "0.3.6"; + }; + gitlab_omniauth-ldap = { + dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vbdyi57vvlrigyfhmqrnkw801x57fwa3gxvj1rj2bn9ig5186ri"; + type = "gem"; + }; + version = "1.2.1"; + }; + gitlab_meta = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "14vahv7gblcypbvip845sg3lvawf3kij61mkxz5vyfcv23niqvp9"; + type = "gem"; + }; + version = "7.0"; + }; + gitlab_git = { + version = "8.2.0"; source = { type = "gem"; - sha256 = "0ykzsgwml0pdqn6vdjjaix12gpcgn8b126z9fx7yq3r3bmdrwxlp"; + remotes = ["https://rubygems.org"]; + sha256 = "0311dl4vh6h7k8xarmpr61fndrhbmfskzjzkkj1rr8321gn8znfv"; }; - dependencies = [ - "rack" - ]; }; - "webmock" = { - version = "1.21.0"; + gitlab_emoji = { + version = "0.3.1"; source = { type = "gem"; - sha256 = "1p7hqdxk5359xwp59pcx841fhbnqx01ra98rnwhdyz61nrc6piv3"; + remotes = ["https://rubygems.org"]; + sha256 = "1dy746icdmyc548mb5xkavvkn37pk7vv3gznx0p6hff325pan8dj"; }; - dependencies = [ - "addressable" - "crack" - ]; }; - "websocket-driver" = { - version = "0.6.2"; + gitlab-grit = { + dependencies = ["charlock_holmes" "diff-lcs" "mime-types" "posix-spawn"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b"; + type = "gem"; + }; + version = "2.7.3"; + }; + gitlab-flowdock-git-hook = { + dependencies = ["flowdock" "gitlab-grit" "multi_json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1s3a10cdbh4xy732b92zcsm5zyc1lhi5v29d76j8mwbqmj11a2p8"; + type = "gem"; + }; + version = "1.0.1"; + }; + github-markup = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq"; + type = "gem"; + }; + version = "1.3.3"; + }; + github-linguist = { + version = "4.7.5"; source = { type = "gem"; - sha256 = "0y4kc2q2g69i4xdcn85bn7v7g6ia3znr687aivakmlzcanyiz7in"; + remotes = ["https://rubygems.org"]; + sha256 = "1xxm2lbabkc1xmx2myv56a4fkw3wwg9n8w2bzwrl4s33kf6x62ag"; }; - dependencies = [ - "websocket-extensions" - ]; }; - "websocket-extensions" = { + gherkin-ruby = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18ay7yiibf4sl9n94k7mbi4k5zj2igl4j71qcmkswv69znyx0sn1"; + type = "gem"; + }; + version = "0.3.2"; + }; + get_process_mem = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; + type = "gem"; + }; + version = "0.2.0"; + }; + gemojione = { + version = "2.2.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0av60lajn64z1csmkzfaf5wvpd3x48lcshiknkqr8m0zx3sg7w3h"; + }; + }; + gemnasium-gitlab-service = { + dependencies = ["rugged"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1qv7fkahmqkah3770ycrxd0x2ais4z41hb43a0r8q8wcdklns3m3"; + type = "gem"; + }; + version = "0.2.6"; + }; + fuubar = { + dependencies = ["rspec" "ruby-progressbar"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0xwqs24y8s73aayh39si17kccsmr0bjgmi6jrjyfp7gkjb6iyhpv"; + type = "gem"; + }; + version = "2.0.0"; + }; + formatador = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; + type = "gem"; + }; + version = "0.2.5"; + }; + foreman = { + dependencies = ["thor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; + type = "gem"; + }; + version = "0.78.0"; + }; + font-awesome-rails = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "09x1bg98sp2v1lsg9h2bal915q811xq84h9d74p1f3378ga63c1x"; + type = "gem"; + }; + version = "4.5.0.0"; + }; + fog-xml = { + dependencies = ["fog-core" "nokogiri"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1576sbzza47z48p0k9h1wg3rhgcvcvdd1dfz3xx1cgahwr564fqa"; + type = "gem"; + }; version = "0.1.2"; - source = { - type = "gem"; - sha256 = "07qnsafl6203a2zclxl20hy4jq11c471cgvd0bj5r9fx1qqw06br"; - }; }; - "whenever" = { - version = "0.8.4"; + fog-xenserver = { + dependencies = ["fog-core" "fog-xml"]; source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ngw8hh8ljk7wi0cp8n4b4jcy2acx0yqzjk7851m3mp0kji5dlgl"; type = "gem"; - sha256 = "1bs602cf5rmmj03chn8vwidx0z1psyfyabq6gs3mqna524pnj9h2"; }; - dependencies = [ - "activesupport" - "chronic" - ]; + version = "0.2.2"; }; - "wikicloth" = { + fog-voxel = { + dependencies = ["fog-core" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "10skdnj59yf4jpvq769njjrvh2l0wzaa7liva8n78qq003mvmfgx"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog-vmfusion = { + dependencies = ["fission" "fog-core"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0g0l0k9ylxk1h9pzqr6h2ba98fl47lpp3j19lqv4jxw0iw1rqxn4"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog-terremark = { + dependencies = ["fog-core" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "01lfkh9jppj0iknlklmwyb7ym3bfhkq58m3absb6rf5a5mcwi3lf"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog-storm_on_demand = { + dependencies = ["fog-core" "fog-json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0fif1x8ci095b2yyilf65n7x6iyvn448azrsnmwsdkriy8vxxv3y"; + type = "gem"; + }; + version = "0.1.1"; + }; + fog-softlayer = { + dependencies = ["fog-core" "fog-json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zax2wws0q8pm787jnlxd2xlj23f2acz0s6jl5nzczyxjgll571r"; + type = "gem"; + }; + version = "1.0.3"; + }; + fog-serverlove = { + dependencies = ["fog-core" "fog-json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0hxgmwzygrw25rbsy05i6nzsyr0xl7xj5j2sjpkb9n9wli5sagci"; + type = "gem"; + }; + version = "0.1.2"; + }; + fog-sakuracloud = { + dependencies = ["fog-core" "fog-json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "08krsn9sk5sx0aza812g31r169bd0zanb8pq5am3a64j6azarimd"; + type = "gem"; + }; + version = "1.7.5"; + }; + fog-riakcs = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nbxc4dky3agfwrmgm1aqmi59p6vnvfnfbhhg7xpg4c2cf41whxm"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog-radosgw = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0nslgv8yp5qkiryj3zsm91gs7s6i626igj61kwxjjwk2yv6swyr6"; + type = "gem"; + }; + version = "0.0.5"; + }; + fog-profitbricks = { + dependencies = ["fog-core" "fog-xml" "nokogiri"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "154sqs2dcmvg21v4m3fj8f09z5i70sq8a485v6rdygsffs8xrycn"; + type = "gem"; + }; + version = "0.0.5"; + }; + fog-powerdns = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "08zavzwfkk344gz83phz4sy9nsjznsdjsmn1ifp6ja17bvydlhh7"; + type = "gem"; + }; + version = "0.1.1"; + }; + fog-local = { + dependencies = ["fog-core"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0i5hxwzmc2ag3z9nlligsaf679kp2pz39cd8n2s9cmxaamnlh2s3"; + type = "gem"; + }; + version = "0.2.1"; + }; + fog-json = { + dependencies = ["fog-core" "multi_json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0advkkdjajkym77r3c0bg2rlahl2akj0vl4p5r273k2qmi16n00r"; + type = "gem"; + }; + version = "1.0.2"; + }; + fog-google = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0z4vmswpqwph04c0wqzrscns1d1wdm8kbxx457bv156mawzrhfj3"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog-ecloud = { + dependencies = ["fog-core" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18rb4qjad9xwwqvvpj8r2h0hi9svy71pm4d3fc28cdcnfarmdi06"; + type = "gem"; + }; + version = "0.3.0"; + }; + fog-dynect = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18lqmdkm22254z86jh3aa9v9vqk8bgbd3d1m0w7az3ij47ak7kch"; + type = "gem"; + }; + version = "0.0.2"; + }; + fog-core = { + dependencies = ["builder" "excon" "formatador"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "02z91r3f5a64hlalm6h39v0778yl2kk3qvva0zvplpp9hpwbwzhl"; + type = "gem"; + }; + version = "1.35.0"; + }; + fog-brightbox = { + dependencies = ["fog-core" "fog-json" "inflecto"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0p7rbx587hb1d1am90dcr3zdp6y50c2zddh97yfgl62vji0pbkkd"; + type = "gem"; + }; + version = "0.10.1"; + }; + fog-aws = { + dependencies = ["fog-core" "fog-json" "fog-xml" "ipaddress"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1pzfahq8h3alfflb5dr8lm02q27x81vm96qn5zyfdlx86yy7bq96"; + type = "gem"; + }; version = "0.8.1"; + }; + fog-atmos = { + dependencies = ["fog-core" "fog-xml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1aaxgnw9zy96gsh4h73kszypc32sx497s6bslvhfqh32q9d1y8c9"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog-aliyun = { + dependencies = ["fog-core" "fog-json" "ipaddress" "xml-simple"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1i76g8sdskyfc0gcnd6n9i757s7dmwg3wf6spcr2xh8wzyxkm1pj"; + type = "gem"; + }; + version = "0.1.0"; + }; + fog = { + dependencies = ["fog-aliyun" "fog-atmos" "fog-aws" "fog-brightbox" "fog-core" "fog-dynect" "fog-ecloud" "fog-google" "fog-json" "fog-local" "fog-powerdns" "fog-profitbricks" "fog-radosgw" "fog-riakcs" "fog-sakuracloud" "fog-serverlove" "fog-softlayer" "fog-storm_on_demand" "fog-terremark" "fog-vmfusion" "fog-voxel" "fog-xenserver" "fog-xml" "ipaddress" "nokogiri"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ml31jdycqdm8w7w3l9pbyrgbnmrrnhmkppa2x4bwi9as1n1jmwq"; + type = "gem"; + }; + version = "1.36.0"; + }; + flowdock = { + dependencies = ["httparty" "multi_json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04nrvg4gzgabf5mnnhccl8bwrkvn3y4pm7a1dqzqhpvfr4m5pafg"; + type = "gem"; + }; + version = "0.7.1"; + }; + flog = { + dependencies = ["ruby_parser" "sexp_processor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1asrcdj6gh5mxcimqak94jjyyi5cxnqn904lc8pmrljg1nv1bxpm"; + type = "gem"; + }; + version = "4.3.2"; + }; + flay = { + dependencies = ["ruby_parser" "sexp_processor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0zcp9nmnfqixdcqa2dzwwjy5np4n2n16bj25gw7bbzbjp9hqzhn6"; + type = "gem"; + }; + version = "2.6.1"; + }; + fission = { + dependencies = ["CFPropertyList"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "09pmp1j1rr8r3pcmbn2na2ls7s1j9ijbxj99xi3a8r6v5xhjdjzh"; + type = "gem"; + }; + version = "0.5.0"; + }; + ffi = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; + type = "gem"; + }; + version = "1.9.10"; + }; + ffaker = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "19fnbbsw87asyb1hvkr870l2yldah2jcjb8074pgyrma5lynwmn0"; + type = "gem"; + }; + version = "2.0.0"; + }; + fastercsv = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h"; + type = "gem"; + }; + version = "1.5.5"; + }; + faraday_middleware-multi_json = { + dependencies = ["faraday_middleware" "multi_json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0651sxhzbq9xfq3hbpmrp0nbybxnm9ja3m97k386m4bqgamlvz1q"; + type = "gem"; + }; + version = "0.0.6"; + }; + faraday_middleware = { + dependencies = ["faraday"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; + type = "gem"; + }; + version = "0.10.0"; + }; + faraday = { + dependencies = ["multipart-post"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; + type = "gem"; + }; + version = "0.9.2"; + }; + factory_girl_rails = { + dependencies = ["factory_girl" "railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jj0yl6mfildb4g79dwgc1q5pv2pa65k9b1ml43mi8mg62j8mrhz"; + type = "gem"; + }; + version = "4.3.0"; + }; + factory_girl = { + dependencies = ["activesupport"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "13z20a4b7z1c8vbz0qz5ranssdprldwvwlgjmn38x311sfjmp9dz"; + type = "gem"; + }; + version = "4.3.0"; + }; + expression_parser = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1938z3wmmdabqxlh5d5c56xfg1jc6z15p7zjyhvk7364zwydnmib"; + type = "gem"; + }; + version = "0.9.0"; + }; + execjs = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0grlxwiccbnflxs30r3h7g23xnps5knav1jyqkk3anvm8363ifjw"; + type = "gem"; + }; + version = "2.6.0"; + }; + excon = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w"; + type = "gem"; + }; + version = "0.45.4"; + }; + eventmachine = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1frvpk3p73xc64qkn0ymll3flvn4xcycq5yx8a43zd3gyzc1ifjp"; + type = "gem"; + }; + version = "1.0.8"; + }; + escape_utils = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0hb8nmrgmd9n5dhih86fp91sf26mmw14sdn5vswg5g20svrqxc7x"; + type = "gem"; + }; + version = "1.1.0"; + }; + erubis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; + type = "gem"; + }; + version = "2.7.0"; + }; + equalizer = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; + type = "gem"; + }; + version = "0.0.11"; + }; + encryptor = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y"; + type = "gem"; + }; + version = "1.3.0"; + }; + email_spec = { + dependencies = ["launchy" "mail"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00p1cc69ncrgg7m45va43pszip8anx5735w1lsb7p5ygkyw8nnpv"; + type = "gem"; + }; + version = "1.6.0"; + }; + email_reply_parser = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0k2p229mv7xn7q627zwmvhrcvba4b9m70pw2jfjm6iimg2vmf22r"; + type = "gem"; + }; + version = "0.5.8"; + }; + dropzonejs-rails = { + dependencies = ["rails"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vqqxzv6qdqy47m2q28adnmccfvc17p2bmkkaqjvrczrhvkkha64"; + type = "gem"; + }; + version = "0.7.2"; + }; + doorkeeper = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0wim84wkvx758cfb8q92w3hhvnfbwr990x1mmfv1ss1ivjz8fmm0"; + type = "gem"; + }; + version = "2.2.2"; + }; + domain_name = { + dependencies = ["unf"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "16qvfrmcwlzz073aas55mpw2nhyhjcn96s524w0g1wlml242hjav"; + type = "gem"; + }; + version = "0.5.25"; + }; + docile = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; + type = "gem"; + }; + version = "1.1.5"; + }; + diffy = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0il0ri511g9rm88qbvncbzgwc6wk6265hmnf7grcczmrs1z49vl0"; + type = "gem"; + }; + version = "3.0.7"; + }; + diff-lcs = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1"; + type = "gem"; + }; + version = "1.2.5"; + }; + devise-two-factor = { + dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v2wva971ds48af47rj4ywavlmz7qzbmf1jpf1l3xn3mscz52hln"; + type = "gem"; + }; + version = "2.0.1"; + }; + devise-async = { + dependencies = ["devise"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11llg7ggzpmg4lb9gh4sx55spvp98sal5r803gjzamps9crfq6mm"; + type = "gem"; + }; + version = "0.9.0"; + }; + devise = { + dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "thread_safe" "warden"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00h0xdl4a8pjpb0gbgy4w6q9j2mpczkmj23195zmjrg2b1gl8f2q"; + type = "gem"; + }; + version = "3.5.4"; + }; + descendants_tracker = { + dependencies = ["thread_safe"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; + type = "gem"; + }; + version = "0.0.4"; + }; + default_value_for = { + dependencies = ["activerecord"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1z4lrba4y1c3y0rxw8321qbwsb3nr6c2igrpksfvz93yhc9m6xm0"; + type = "gem"; + }; + version = "3.0.1"; + }; + debugger-ruby_core_source = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1lp5dmm8a8dpwymv6r1y6yr24wxsj0gvgb2b8i7qq9rcv414snwd"; + type = "gem"; + }; + version = "1.3.8"; + }; + debug_inspector = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "109761g00dbrw5q0dfnbqg8blfm699z4jj70l4zrgf9mzn7ii50m"; + type = "gem"; + }; + version = "0.0.2"; + }; + database_cleaner = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0n5r7kvsmknk876v3scdphfnvllr9157fa5q7j5fczg8j5qm6kf0"; + type = "gem"; + }; + version = "1.4.1"; + }; + daemons = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0b839hryy9sg7x3knsa1d6vfiyvn0mlsnhsb6an8zsalyrz1zgqg"; + type = "gem"; + }; + version = "1.2.3"; + }; + d3_rails = { + dependencies = ["railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "12vxiiflnnkcxak2wmbajyf5wzmcv9wkl4drsp0am72azl8a6g9x"; + type = "gem"; + }; + version = "3.5.11"; + }; + creole = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "00rcscz16idp6dx0dk5yi5i0fz593i3r6anbn5bg2q07v3i025wm"; + type = "gem"; + }; + version = "0.5.0"; + }; + crack = { + dependencies = ["safe_yaml"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; + type = "gem"; + }; + version = "0.4.3"; + }; + coveralls = { + dependencies = ["json" "rest-client" "simplecov" "term-ansicolor" "thor" "tins"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "03vnvcw1fdmkp3405blcxpsjf89jxd2061474a32fchsmv2das9y"; + type = "gem"; + }; + version = "0.8.9"; + }; + connection_pool = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1b2bb3k39ni5mzcnqlv9y4yjkbin20s7dkwzp0jw2jf1rmzcgrmy"; + type = "gem"; + }; + version = "2.2.0"; + }; + concurrent-ruby = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0qqdgcfkzv90nznrpsvg3cgg5xiqz4c8hnv7va5gm4fp4lf4k85v"; + type = "gem"; + }; + version = "1.0.0"; + }; + colorize = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "16bsjcqb6pg3k94dh1l5g3hhx5g2g4g8rlr76dnc78yyzjjrbayn"; + type = "gem"; + }; + version = "0.7.7"; + }; + coffee-script-source = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1k4fg39rrkl3bpgchfj94fbl9s4ysaz16w8dkqncf2vyf79l3qz0"; + type = "gem"; + }; + version = "1.10.0"; + }; + coffee-script = { + dependencies = ["coffee-script-source" "execjs"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; + type = "gem"; + }; + version = "2.4.1"; + }; + coffee-rails = { + dependencies = ["coffee-script" "railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs"; + type = "gem"; + }; + version = "4.1.0"; + }; + coercible = { + dependencies = ["descendants_tracker"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1p5azydlsz0nkxmcq0i1gzmcfq02lgxc4as7wmf47j1c6ljav0ah"; + type = "gem"; + }; + version = "1.0.0"; + }; + coderay = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; + type = "gem"; + }; + version = "1.1.0"; + }; + cliver = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; + type = "gem"; + }; + version = "0.3.2"; + }; + chunky_png = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0vf0axgrm95bs3y0x5gdb76xawfh210yxplj7jbwr6z7n88i1axn"; + type = "gem"; + }; + version = "1.3.5"; + }; + charlock_holmes = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0jsl6k27wjmssxbwv9wpf7hgp9r0nvizcf6qpjnr7qs2nia53lf7"; + type = "gem"; + }; + version = "0.7.3"; + }; + cause = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0digirxqlwdg79mkbn70yc7i9i1qnclm2wjbrc47kqv6236bpj00"; + type = "gem"; + }; + version = "0.1"; + }; + carrierwave = { + dependencies = ["activemodel" "activesupport" "json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1b1av1ancby6brhmypl5k8xwrasd8bd3kqp9ri8kbq7z8nj6k445"; + type = "gem"; + }; + version = "0.9.0"; + }; + capybara-screenshot = { + dependencies = ["capybara" "launchy"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "17v1wihr3aqrxhrwswkdpdklj1xsfcaksblh1y8hixvm9bqfyz3y"; + type = "gem"; + }; + version = "1.0.11"; + }; + capybara = { + dependencies = ["mime-types" "nokogiri" "rack" "rack-test" "xpath"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f"; + type = "gem"; + }; + version = "2.4.4"; + }; + cal-heatmap-rails = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0lrmcyj3iixkprqi9fb9vcn97wpp779sl5hxxgx57r3rb7l4d20w"; + type = "gem"; + }; + version = "3.5.1"; + }; + byebug = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1yx89b7vh5mbvxyi8n7zl25ia1bqdj71995m4daj6d41rnkmrpnc"; + type = "gem"; + }; + version = "8.2.1"; + }; + bundler-audit = { + dependencies = ["thor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0msv3k2277y7al5lbnw7q9lmb5fnrscpkmsb36wpn189pdq0akfv"; + type = "gem"; + }; + version = "0.4.0"; + }; + bullet = { + dependencies = ["activesupport" "uniform_notifier"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1h3iaflcz5a1xr32bdb8sk4nx06yhh5d8y7w294w49xigfv4hzj3"; + type = "gem"; + }; + version = "4.14.10"; + }; + builder = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; + type = "gem"; + }; + version = "3.2.2"; + }; + browser = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "01bkb64w2ld2q5r3chc4f6spbjrmginyg8wlzg130zmx2z4jia2h"; + type = "gem"; + }; + version = "1.0.1"; + }; + brakeman = { + dependencies = ["erubis" "fastercsv" "haml" "highline" "multi_json" "ruby2ruby" "ruby_parser" "safe_yaml" "sass" "slim" "terminal-table"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15v13yizpvp1rm86raqggmsmm51v6p8fqw3pfgi6xpvx1ba06cfm"; + type = "gem"; + }; + version = "3.1.4"; + }; + bootstrap-sass = { + dependencies = ["autoprefixer-rails" "sass"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "12hhw42hk9clwfj6yz5v0c5p35wrn5yjnji7bnzsfs99vi2q00ld"; + type = "gem"; + }; + version = "3.3.6"; + }; + binding_of_caller = { + dependencies = ["debug_inspector"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15jg6dkaq2nzcd602d7ppqbdxw3aji961942w93crs6qw4n6h9yk"; + type = "gem"; + }; + version = "0.7.2"; + }; + better_errors = { + dependencies = ["coderay" "erubis"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0v0q8bdkqqlcsfqbk4wvc3qnz8an44mgz720v5f11a4nr413mjgf"; + type = "gem"; + }; + version = "1.0.1"; + }; + benchmark-ips = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0bh681m54qdsdyvpvflj1wpnj3ybspbpjkr4cnlrl4nk4yikli0j"; + type = "gem"; + }; + version = "2.3.0"; + }; + bcrypt = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6"; + type = "gem"; + }; + version = "3.1.10"; + }; + babosa = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "05rgxg4pz4bc4xk34w5grv0yp1j94wf571w84lf3xgqcbs42ip2f"; + type = "gem"; + }; + version = "1.0.2"; + }; + axiom-types = { + dependencies = ["descendants_tracker" "ice_nine" "thread_safe"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; + type = "gem"; + }; + version = "0.1.1"; + }; + awesome_print = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1k85hckprq0s9pakgadf42k1d5s07q23m3y6cs977i6xmwdivyzr"; + type = "gem"; + }; + version = "1.2.0"; + }; + autoprefixer-rails = { + dependencies = ["execjs" "json"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0m1w42ncz0p48r5hbyglayxkzrnplw18r99dc1ia2cb3nizkwllx"; + type = "gem"; + }; + version = "6.2.3"; + }; + attr_required = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0pawa2i7gw9ppj6fq6y288da1ncjpzsmc6kx7z63mjjvypa5q3dc"; + type = "gem"; + }; + version = "1.0.0"; + }; + attr_encrypted = { + dependencies = ["encryptor"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1hm2844qm37kflqq5v0x2irwasbhcblhp40qk10m3wlkj4m9wp8p"; + type = "gem"; + }; + version = "1.3.4"; + }; + astrolabe = { + dependencies = ["parser"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ybbmjxaf529vvhrj4y8d4jpf87f3hgczydzywyg1d04gggjx7l7"; + type = "gem"; + }; + version = "1.3.1"; + }; + ast = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "102bywfxrv0w3n4s6lg25d7xxshd344sc7ijslqmganj5bany1pk"; + type = "gem"; + }; + version = "2.1.0"; + }; + asciidoctor = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0q9yhan2mkk1lh15zcfd9g2fn6faix9yrf5skg23dp1y77jv7vm0"; + type = "gem"; + }; + version = "1.5.3"; + }; + asana = { + dependencies = ["faraday" "faraday_middleware" "faraday_middleware-multi_json" "oauth2"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1560p13g57pl4xqkmhwn1vpqhm7mw9fwmmswk38k3i2r7g0b5y9z"; + type = "gem"; + }; + version = "0.4.0"; + }; + arel = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1a270mlajhrmpqbhxcqjqypnvgrq4pgixpv3w9gwp1wrrapnwrzk"; + type = "gem"; + }; + version = "6.0.3"; + }; + annotate = { + dependencies = ["activerecord" "rake"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg"; + type = "gem"; + }; + version = "2.6.10"; + }; + allocations = { + version = "1.0.4"; source = { type = "gem"; - sha256 = "1jp6c2yzyqbap8jdiw8yz6l08sradky1llhyhmrg934l1b5akj3s"; + remotes = ["https://rubygems.org"]; + sha256 = "0iynf7gkbnbr5mgl2wgbgvxmjdiawh7ywwbnyjm94bj3pkybzgkc"; }; - dependencies = [ - "builder" - "expression_parser" - "rinku" - ]; }; - "xpath" = { + akismet = { version = "2.0.0"; source = { type = "gem"; - sha256 = "04kcr127l34p7221z13blyl0dvh0bmxwx326j72idayri36a394w"; + remotes = ["https://rubygems.org"]; + sha256 = "0hqpn25iyypkwkrqaibjm5nss5jmlkrddhia7frmz94prvyjr02w"; }; - dependencies = [ - "nokogiri" - ]; + }; + after_commit_queue = { + dependencies = ["activerecord"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jrhvj4335dsrj0xndbf7a7m2inbwbx1knc0bwgvmkk1w47l43s0"; + type = "gem"; + }; + version = "1.3.0"; + }; + addressable = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1533axm85gpz267km9gnfarf9c78g2scrysd6b8yw33vmhkz2km6"; + type = "gem"; + }; + version = "2.3.8"; + }; + acts-as-taggable-on = { + dependencies = ["activerecord"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0bz0z8dlp3fjzah9y9b6rr9mkidsav9l4hdm51fnq1gd05yv3pr7"; + type = "gem"; + }; + version = "3.5.0"; + }; + activesupport = { + dependencies = ["i18n" "json" "minitest" "thread_safe" "tzinfo"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "16zgsvzwwf4hx3ywi2lz0dcm6d1ljsy6zr5k2q41amd7g62d886d"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + activerecord-session_store = { + dependencies = ["actionpack" "activerecord" "railties"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1rp5q0q5i5syfgw7qpiq3a42x13p7myyv1c5hmnczpdlh57axs3p"; + type = "gem"; + }; + version = "0.1.2"; + }; + activerecord-nulldb-adapter = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ym3paxp5lqr2kr4hkqj6xxqvgl57fv8jqhvgjfxb9lk7k5jlfmp"; + type = "gem"; + }; + version = "0.3.2"; + }; + activerecord-deprecated_finders = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "03xplckz7v3nm6inqkwdd44h6gpbpql0v02jc1rz46a38rd6cj6m"; + type = "gem"; + }; + version = "1.0.4"; + }; + activerecord = { + dependencies = ["activemodel" "activesupport" "arel"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1qj5ii36yn9kb0ljnl05xgpgvs7j9l20yg2phsssy0j31g1ymmc5"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + activemodel = { + dependencies = ["activesupport" "builder"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zr83avw82infmzdzpilk6xpv5r9fr8pxgf5ql16b3vysp6va57p"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + activejob = { + dependencies = ["activesupport" "globalid"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1xfj7lwp1v3k9zscavzq87wbbn6y825angz4zpx4xsvlwf3dn7jc"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + actionview = { + dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1dp1gqh0yxpyydza1ada0jjbpww97qhnkj9c9pm9rg5jbmpzg12m"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + actionpack = { + dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "13shdiwjfyqvfb11k0wqhcd7p7ix168fxd5l8m2pnn0bzskpswxv"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + actionmailer = { + dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1fxn8f53nnpgan5xl9i5lszl1m8yk4q6ayc33d9xfzsnvhavpl4n"; + type = "gem"; + }; + version = "4.2.5.1"; + }; + ace-rails-ap = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "082n12rkd9j7d89030nhmi4fx1gqaf13knps6cknsyvwix7fryvv"; + type = "gem"; + }; + version = "2.0.1"; + }; + RedCloth = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl"; + type = "gem"; + }; + version = "4.2.9"; + }; + CFPropertyList = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0mjb46368z4hiax3fcsgxk14fxrhwnvcmakc2f5sx8nz0wvvkwg2"; + type = "gem"; + }; + version = "2.3.2"; }; } \ No newline at end of file diff --git a/pkgs/applications/version-management/gitlab/nulladapter.patch b/pkgs/applications/version-management/gitlab/nulladapter.patch new file mode 100644 index 00000000000..0d5c1749e83 --- /dev/null +++ b/pkgs/applications/version-management/gitlab/nulladapter.patch @@ -0,0 +1,29 @@ +index acd1874..f493451 100644 +--- a/Gemfile ++++ b/Gemfile +@@ -318,3 +318,5 @@ gem 'oauth2', '~> 1.0.0' + + # Soft deletion + gem "paranoia", "~> 2.0" ++ ++gem "activerecord-nulldb-adapter" +index 14d2c76..7a010f0 100644 +--- a/Gemfile.lock ++++ b/Gemfile.lock +@@ -34,6 +34,8 @@ GEM + activesupport (= 4.2.5.1) + arel (~> 6.0) + activerecord-deprecated_finders (1.0.4) ++ activerecord-nulldb-adapter (0.3.2) ++ activerecord (>= 2.0.0) + activerecord-session_store (0.1.2) + actionpack (>= 4.0.0, < 5) + activerecord (>= 4.0.0, < 5) +@@ -880,6 +882,7 @@ DEPENDENCIES + RedCloth (~> 4.2.9) + ace-rails-ap (~> 2.0.1) + activerecord-deprecated_finders (~> 1.0.3) ++ activerecord-nulldb-adapter + activerecord-session_store (~> 0.1.0) + acts-as-taggable-on (~> 3.4) + addressable (~> 2.3.8) diff --git a/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch b/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch index 1df5226c82f..d188070296c 100644 --- a/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch +++ b/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch @@ -1,8 +1,8 @@ diff --git a/config/environments/production.rb b/config/environments/production.rb -index 3316ece..c34dec0 100644 +index 9095266..694a4c5 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb -@@ -67,10 +67,10 @@ Gitlab::Application.configure do +@@ -67,10 +67,10 @@ Rails.application.configure do config.action_mailer.delivery_method = :sendmail # Defaults to: @@ -18,74 +18,10 @@ index 3316ece..c34dec0 100644 config.action_mailer.raise_delivery_errors = true diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example -index 15930fc..bdb423c 100644 +index 05f127d..1daef74 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example -@@ -29,8 +29,8 @@ production: &base - ## GitLab settings - gitlab: - ## Web server settings (note: host is the FQDN, do not include http://) -- host: localhost -- port: 80 # Set to 443 if using HTTPS, see installation.md#using-https for additional HTTPS configuration details -+ host: <%= ENV['GITLAB_HOST'] || 'localhost' %> -+ port: <%= ENV['GITLAB_PORT'] || 80 %> - https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details - - # Uncommment this line below if your ssh host is different from HTTP/HTTPS one -@@ -43,7 +43,7 @@ production: &base - # relative_url_root: /gitlab - - # Uncomment and customize if you can't use the default user to run GitLab (default: 'git') -- # user: git -+ user: gitlab - - ## Date & Time settings - # Uncomment and customize if you want to change the default time zone of GitLab application. -@@ -54,7 +54,7 @@ production: &base - # Uncomment and set to false if you need to disable email sending from GitLab (default: true) - # email_enabled: true - # Email address used in the "From" field in mails sent by GitLab -- email_from: example@example.com -+ email_from: <%= ENV['GITLAB_EMAIL_FROM'] %> - email_display_name: GitLab - email_reply_to: noreply@example.com - -@@ -298,12 +298,12 @@ production: &base - # GitLab Satellites - satellites: - # Relative paths are relative to Rails.root (default: tmp/repo_satellites/) -- path: /home/git/gitlab-satellites/ -+ path: <%= ENV['GITLAB_SATELLITES_PATH'] %> - timeout: 30 - - ## Backup settings - backup: -- path: "tmp/backups" # Relative paths are relative to Rails.root (default: tmp/backups/) -+ path: <%= ENV['GITLAB_BACKUP_PATH'] %> - # archive_permissions: 0640 # Permissions for the resulting backup.tar file (default: 0600) - # keep_time: 604800 # default: 0 (forever) (in seconds) - # pg_schema: public # default: nil, it means that all schemas will be backed up -@@ -322,15 +322,15 @@ production: &base - - ## GitLab Shell settings - gitlab_shell: -- path: /home/git/gitlab-shell/ -+ path: <%= ENV['GITLAB_SHELL_PATH'] %> - - # REPOS_PATH MUST NOT BE A SYMLINK!!! -- repos_path: /home/git/repositories/ -- hooks_path: /home/git/gitlab-shell/hooks/ -+ repos_path: <%= ENV['GITLAB_REPOSITORIES_PATH'] %> -+ hooks_path: <%= ENV['GITLAB_SHELL_HOOKS_PATH'] %> - - # File that contains the secret key for verifying access for gitlab-shell. - # Default is '.gitlab_shell_secret' relative to Rails.root (i.e. root of the GitLab app). -- # secret_file: /home/git/gitlab/.gitlab_shell_secret -+ secret_file: <%= ENV['GITLAB_SHELL_SECRET_PATH'] %> - - # Git over HTTP - upload_pack: true -@@ -343,7 +343,7 @@ production: &base +@@ -423,7 +422,7 @@ production: &base # CAUTION! # Use the default values unless you really know what you are doing git: @@ -94,25 +30,82 @@ index 15930fc..bdb423c 100644 # The next value is the maximum memory size grit can use # Given in number of bytes per git object (e.g. a commit) # This value can be increased if you have very large commits -@@ -388,7 +388,7 @@ test: - gravatar: - enabled: true - gitlab: -- host: localhost -+ host: <%= ENV['GITLAB_HOST'] %> - port: 80 - - # When you run tests we clone and setup gitlab-shell -diff --git a/lib/gitlab/app_logger.rb b/lib/gitlab/app_logger.rb -index dddcb25..d61f10a 100644 ---- a/lib/gitlab/app_logger.rb -+++ b/lib/gitlab/app_logger.rb -@@ -1,7 +1,7 @@ - module Gitlab - class AppLogger < Gitlab::Logger - def self.file_name_noext -- 'application' -+ ENV["GITLAB_APPLICATION_LOG_PATH"] + +diff --git a/lib/gitlab/logger.rb b/lib/gitlab/logger.rb +index 59b2114..4f4a39a 100644 +--- a/lib/gitlab/logger.rb ++++ b/lib/gitlab/logger.rb +@@ -13,20 +13,20 @@ module Gitlab end - def format_message(severity, timestamp, progname, msg) + def self.read_latest +- path = Rails.root.join("log", file_name) ++ path = File.join(ENV["GITLAB_LOG_PATH"], file_name) + self.build unless File.exist?(path) + tail_output, _ = Gitlab::Popen.popen(%W(tail -n 2000 #{path})) + tail_output.split("\n") + end + + def self.read_latest_for(filename) +- path = Rails.root.join("log", filename) ++ path = File.join(ENV["GITLAB_LOG_PATH"], filename) + tail_output, _ = Gitlab::Popen.popen(%W(tail -n 2000 #{path})) + tail_output.split("\n") + end + + def self.build +- new(Rails.root.join("log", file_name)) ++ new(File.join(ENV["GITLAB_LOG_PATH"], file_name)) + end + end + end +diff --git a/lib/gitlab/uploads_transfer.rb b/lib/gitlab/uploads_transfer.rb +index be8fcc7..7642d74 100644 +--- a/lib/gitlab/uploads_transfer.rb ++++ b/lib/gitlab/uploads_transfer.rb +@@ -29,7 +29,7 @@ module Gitlab + end + + def root_dir +- File.join(Rails.root, "public", "uploads") ++ ENV['GITLAB_UPLOADS_PATH'] || File.join(Rails.root, "public", "uploads") + end + end + end +diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake +index 81099cb..a40b1ad 100644 +--- a/lib/tasks/gitlab/check.rake ++++ b/lib/tasks/gitlab/check.rake +@@ -223,7 +223,7 @@ namespace :gitlab do + def check_log_writable + print "Log directory writable? ... " + +- log_path = Rails.root.join("log") ++ log_path = ENV["GITLAB_LOG_PATH"] + + if File.writable?(log_path) + puts "yes".green +@@ -263,10 +263,12 @@ namespace :gitlab do + def check_uploads + print "Uploads directory setup correctly? ... " + +- unless File.directory?(Rails.root.join('public/uploads')) ++ uploads_dir = ENV['GITLAB_UPLOADS_PATH'] || Rails.root.join('public/uploads') ++ ++ unless File.directory?(uploads_dir) + puts "no".red + try_fixing_it( +- "sudo -u #{gitlab_user} mkdir -m 750 #{Rails.root}/public/uploads" ++ "sudo -u #{gitlab_user} mkdir -m 750 #{uploads_dir}" + ) + for_more_information( + see_installation_guide_section "GitLab" +@@ -275,7 +277,7 @@ namespace :gitlab do + return + end + +- upload_path = File.realpath(Rails.root.join('public/uploads')) ++ upload_path = File.realpath(Rails.root.join(uploads_dir)) + upload_path_tmp = File.join(upload_path, 'tmp') + + if File.stat(upload_path).mode == 040750 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f9d921d645b..af321c93a54 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1719,14 +1719,14 @@ let gitinspector = callPackage ../applications/version-management/gitinspector { }; gitlab = callPackage ../applications/version-management/gitlab { - ruby = ruby_2_2_2; + ruby = ruby_2_2; }; gitlab-shell = callPackage ../applications/version-management/gitlab-shell { - ruby = ruby_2_2_2; + ruby = ruby_2_2; }; - gitlab-git-http-server = callPackage ../applications/version-management/gitlab-git-http-server { }; + gitlab-workhorse = callPackage ../applications/version-management/gitlab-workhorse { }; git-latexdiff = callPackage ../tools/typesetting/git-latexdiff { }; From 3fd51a9ab20660ef4153436ece24b23dc65bccc0 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 23 Feb 2016 22:55:35 +0100 Subject: [PATCH 255/291] fixup! gitlab: 8.0.5 -> 8.5.0, service improvements Some debugging and development leftovers. --- nixos/modules/services/misc/gitlab.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 074f1a040b8..eef23a0ae42 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -39,6 +39,7 @@ let ''; gitlabConfig = { + # These are the default settings from config/gitlab.example.yml production = flip recursiveUpdate cfg.extraConfig { gitlab = { host = cfg.host; @@ -52,7 +53,7 @@ let default_projects_features = { issues = true; merge_requests = true; - wiki = false; + wiki = true; snippets = false; builds = true; }; @@ -241,7 +242,7 @@ in { extraConfig = mkOption { type = types.attrs; - default = ""; + default = {}; example = { gitlab = { default_projects_features = { @@ -348,7 +349,6 @@ in { gitAndTools.git openssh nodejs - sudo ]; preStart = '' mkdir -p ${cfg.backupPath} @@ -400,7 +400,7 @@ in { if [ "${cfg.databaseHost}" = "127.0.0.1" ]; then if ! test -e "${cfg.statePath}/db-created"; then - psql postgres -c "CREATE ROLE gitlab WITH LOGIN CREATEDB NOCREATEROLE NOCREATEUSER ENCRYPTED PASSWORD '${cfg.databasePassword}'" + psql postgres -c "CREATE ROLE gitlab WITH LOGIN NOCREATEDB NOCREATEROLE NOCREATEUSER ENCRYPTED PASSWORD '${cfg.databasePassword}'" ${config.services.postgresql.package}/bin/createdb --owner gitlab gitlab || true touch "${cfg.statePath}/db-created" From 44a4592a1ca763780ad189cfa8ecd20bc1209e3d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 26 Feb 2016 07:06:07 +0100 Subject: [PATCH 256/291] fixup! gitlab: 8.0.5 -> 8.5.0, service improvements gitlab-shell is now talking over the unix socket to gitlab, so the TCP port isn't needed anymore. --- nixos/modules/services/misc/defaultUnicornConfig.rb | 1 - nixos/modules/services/misc/gitlab.nix | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/misc/defaultUnicornConfig.rb b/nixos/modules/services/misc/defaultUnicornConfig.rb index 81abaf336dc..84622622db7 100644 --- a/nixos/modules/services/misc/defaultUnicornConfig.rb +++ b/nixos/modules/services/misc/defaultUnicornConfig.rb @@ -187,7 +187,6 @@ working_directory ENV["GITLAB_PATH"] pid ENV["UNICORN_PATH"] + "/tmp/pids/unicorn.pid" listen ENV["UNICORN_PATH"] + "/tmp/sockets/gitlab.socket", :backlog => 1024 -listen "127.0.0.1:8080", :tcp_nopush => true timeout 60 diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index eef23a0ae42..132b4348854 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -12,6 +12,9 @@ let gemHome = "${pkgs.gitlab.env}/${ruby.gemPath}"; + gitlabSocket = "${cfg.statePath}/tmp/sockets/gitlab.socket"; + pathUrlQuote = url: replaceStrings ["/"] ["%2F"] url; + databaseYml = '' production: adapter: postgresql @@ -24,7 +27,7 @@ let gitlabShellYml = '' user: ${cfg.user} - gitlab_url: "http://localhost:8080/" + gitlab_url: "http+unix://${pathUrlQuote gitlabSocket}" http_settings: self_signed_cert: false repos_path: "${cfg.statePath}/repositories" @@ -335,7 +338,7 @@ in { + "-listenUmask 0 " + "-listenNetwork unix " + "-listenAddr /run/gitlab/gitlab-workhorse.socket " - + "-authSocket ${cfg.statePath}/tmp/sockets/gitlab.socket " + + "-authSocket ${gitlabSocket} " + "-documentRoot ${pkgs.gitlab}/share/gitlab/public"; }; }; From c2412bd700a0481786deb1ccd2f46bc0972ae7ee Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 26 Feb 2016 07:07:08 +0100 Subject: [PATCH 257/291] fixup! gitlab: 8.0.5 -> 8.5.0, service improvements 8.5.0 -> 8.5.1 --- .../version-management/gitlab/Gemfile | 4 +- .../version-management/gitlab/Gemfile.lock | 5 +- .../version-management/gitlab/default.nix | 4 +- .../version-management/gitlab/gemset.nix | 50 +++++++++++-------- .../gitlab/remove-hardcoded-locations.patch | 13 +++-- 5 files changed, 44 insertions(+), 32 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/Gemfile b/pkgs/applications/version-management/gitlab/Gemfile index ec40f246394..fc7ad47919d 100644 --- a/pkgs/applications/version-management/gitlab/Gemfile +++ b/pkgs/applications/version-management/gitlab/Gemfile @@ -218,7 +218,7 @@ gem 'virtus', '~> 1.0.1' gem 'net-ssh', '~> 3.0.1' # Sentry integration -gem 'sentry-raven' +gem 'sentry-raven', '~> 0.15' # Metrics group :metrics do @@ -303,6 +303,8 @@ group :production do gem "gitlab_meta", '7.0' end +gem "newrelic_rpm", '~> 3.14' + gem 'octokit', '~> 3.8.0' gem "mail_room", "~> 0.6.1" diff --git a/pkgs/applications/version-management/gitlab/Gemfile.lock b/pkgs/applications/version-management/gitlab/Gemfile.lock index ff16e6284fa..2934988f836 100644 --- a/pkgs/applications/version-management/gitlab/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/Gemfile.lock @@ -481,6 +481,7 @@ GEM net-ldap (0.12.1) net-ssh (3.0.1) netrc (0.11.0) + newrelic_rpm (3.14.1.311) nokogiri (1.6.7.2) mini_portile2 (~> 2.0.0.rc2) nprogress-rails (0.1.6.7) @@ -724,7 +725,7 @@ GEM activesupport (>= 3.1, < 4.3) select2-rails (3.5.9.3) thor (~> 0.14) - sentry-raven (0.15.4) + sentry-raven (0.15.6) faraday (>= 0.7.6) settingslogic (2.0.9) sexp_processor (4.6.0) @@ -963,6 +964,7 @@ DEPENDENCIES nested_form (~> 0.3.2) net-ssh (~> 3.0.1) nokogiri (~> 1.6.7, >= 1.6.7.2) + newrelic_rpm (~> 3.14) nprogress-rails (~> 0.1.6.7) oauth2 (~> 1.0.0) octokit (~> 3.8.0) @@ -1010,6 +1012,7 @@ DEPENDENCIES sdoc (~> 0.3.20) seed-fu (~> 2.3.5) select2-rails (~> 3.5.9) + sentry-raven (~> 0.15) sentry-raven settingslogic (~> 2.0.9) sham_rack diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 4e86768e0dd..5f998367430 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -24,7 +24,7 @@ in stdenv.mkDerivation rec { name = "gitlab-${version}"; - version = "8.5.0"; + version = "8.5.1"; buildInputs = [ ruby bundler tzdata git nodejs procps ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { owner = "gitlabhq"; repo = "gitlabhq"; rev = "v${version}"; - sha256 = "1rhl906xnvpxkw3ngwfzi80cl3daihx5vizy04b9b39adyd3i5hl"; + sha256 = "1pn5r4axzjkgdjr59y3wgxsd2n83zfd5bry1g2w4c2qw0wcw7zqb"; }; patches = [ diff --git a/pkgs/applications/version-management/gitlab/gemset.nix b/pkgs/applications/version-management/gitlab/gemset.nix index 95905fb7dfc..f63a356a1f6 100644 --- a/pkgs/applications/version-management/gitlab/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gemset.nix @@ -534,12 +534,12 @@ version = "2.0.9"; }; sentry-raven = { + version = "0.15.6"; source = { - remotes = ["https://rubygems.org"]; - sha256 = "1h0w2ip02zcd3krpddn54vssd7asnbj823r4mlzzqpp28q3r3mcm"; type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0iqnwfmf6rnpgrvl3c8gh2gkix91nhm21j5qf389g4mi2rkc0ky8"; }; - version = "0.15.4"; }; select2-rails = { dependencies = ["thor"]; @@ -612,12 +612,12 @@ version = "1.0.4"; }; rugged = { - version = "0.24.0b13"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0v0cvdw8cgy1hf5h3cx796zpxhbad8d5cm50nykyhwjc00q80zrr"; + type = "gem"; }; + version = "0.24.0b13"; }; rufus-scheduler = { source = { @@ -1324,20 +1324,20 @@ version = "0.0.6"; }; omniauth = { - version = "1.3.1"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0vsqxgzkcfi10b7k6vpv3shmlphbs8grc29hznwl9s0i16n8962p"; + type = "gem"; }; + version = "1.3.1"; }; octokit = { - version = "3.8.0"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0vmknh0vz1g734q32kgpxv0qwz9ifmnw2jfpd2w5rrk6xwq1k7a8"; + type = "gem"; }; + version = "3.8.0"; }; oauth2 = { dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"]; @@ -1373,6 +1373,14 @@ }; version = "1.6.7.2"; }; + newrelic_rpm = { + version = "3.14.1.311"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "155aj845rxn8ikcs15gphr8svnsrki8wzps794ddbi90h0ypr319"; + }; + }; netrc = { source = { remotes = ["https://rubygems.org"]; @@ -1840,20 +1848,20 @@ version = "7.0"; }; gitlab_git = { - version = "8.2.0"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0311dl4vh6h7k8xarmpr61fndrhbmfskzjzkkj1rr8321gn8znfv"; + type = "gem"; }; + version = "8.2.0"; }; gitlab_emoji = { - version = "0.3.1"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "1dy746icdmyc548mb5xkavvkn37pk7vv3gznx0p6hff325pan8dj"; + type = "gem"; }; + version = "0.3.1"; }; gitlab-grit = { dependencies = ["charlock_holmes" "diff-lcs" "mime-types" "posix-spawn"]; @@ -1882,12 +1890,12 @@ version = "1.3.3"; }; github-linguist = { - version = "4.7.5"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "1xxm2lbabkc1xmx2myv56a4fkw3wwg9n8w2bzwrl4s33kf6x62ag"; + type = "gem"; }; + version = "4.7.5"; }; gherkin-ruby = { source = { @@ -1906,12 +1914,12 @@ version = "0.2.0"; }; gemojione = { - version = "2.2.1"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0av60lajn64z1csmkzfaf5wvpd3x48lcshiknkqr8m0zx3sg7w3h"; + type = "gem"; }; + version = "2.2.1"; }; gemnasium-gitlab-service = { dependencies = ["rugged"]; @@ -2853,20 +2861,20 @@ version = "2.6.10"; }; allocations = { - version = "1.0.4"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0iynf7gkbnbr5mgl2wgbgvxmjdiawh7ywwbnyjm94bj3pkybzgkc"; + type = "gem"; }; + version = "1.0.4"; }; akismet = { - version = "2.0.0"; source = { - type = "gem"; remotes = ["https://rubygems.org"]; sha256 = "0hqpn25iyypkwkrqaibjm5nss5jmlkrddhia7frmz94prvyjr02w"; + type = "gem"; }; + version = "2.0.0"; }; after_commit_queue = { dependencies = ["activerecord"]; diff --git a/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch b/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch index d188070296c..fbf5a05fc4e 100644 --- a/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch +++ b/pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch @@ -18,10 +18,10 @@ index 9095266..694a4c5 100644 config.action_mailer.raise_delivery_errors = true diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example -index 05f127d..1daef74 100644 +index 05f127d..6a4ae68 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example -@@ -423,7 +422,7 @@ production: &base +@@ -423,7 +423,7 @@ production: &base # CAUTION! # Use the default values unless you really know what you are doing git: @@ -30,7 +30,6 @@ index 05f127d..1daef74 100644 # The next value is the maximum memory size grit can use # Given in number of bytes per git object (e.g. a commit) # This value can be increased if you have very large commits - diff --git a/lib/gitlab/logger.rb b/lib/gitlab/logger.rb index 59b2114..4f4a39a 100644 --- a/lib/gitlab/logger.rb @@ -73,7 +72,7 @@ index be8fcc7..7642d74 100644 end end diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake -index 81099cb..a40b1ad 100644 +index d59872d..0b8007f 100644 --- a/lib/tasks/gitlab/check.rake +++ b/lib/tasks/gitlab/check.rake @@ -223,7 +223,7 @@ namespace :gitlab do @@ -95,8 +94,8 @@ index 81099cb..a40b1ad 100644 + unless File.directory?(uploads_dir) puts "no".red try_fixing_it( -- "sudo -u #{gitlab_user} mkdir -m 750 #{Rails.root}/public/uploads" -+ "sudo -u #{gitlab_user} mkdir -m 750 #{uploads_dir}" +- "sudo -u #{gitlab_user} mkdir #{Rails.root}/public/uploads" ++ "sudo -u #{gitlab_user} mkdir #{uploads_dir}" ) for_more_information( see_installation_guide_section "GitLab" @@ -108,4 +107,4 @@ index 81099cb..a40b1ad 100644 + upload_path = File.realpath(Rails.root.join(uploads_dir)) upload_path_tmp = File.join(upload_path, 'tmp') - if File.stat(upload_path).mode == 040750 + if File.stat(upload_path).mode == 040700 From e9393bd42607d1a6c7c10a835398437b906c008a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 26 Feb 2016 08:55:25 +0100 Subject: [PATCH 258/291] fixup! gitlab: 8.0.5 -> 8.5.0, service improvements Make the gitlab packages and components overrideable. --- nixos/modules/services/misc/gitlab.nix | 52 +++++++++++++++++--------- 1 file changed, 35 insertions(+), 17 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 132b4348854..cc50bfbea53 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -7,10 +7,10 @@ with lib; let cfg = config.services.gitlab; - ruby = pkgs.gitlab.ruby; + ruby = cfg.packages.gitlab.ruby; bundler = pkgs.bundler; - gemHome = "${pkgs.gitlab.env}/${ruby.gemPath}"; + gemHome = "${cfg.packages.gitlab.env}/${ruby.gemPath}"; gitlabSocket = "${cfg.statePath}/tmp/sockets/gitlab.socket"; pathUrlQuote = url: replaceStrings ["/"] ["%2F"] url; @@ -91,7 +91,7 @@ let path = "${cfg.backupPath}"; }; gitlab_shell = { - path = "${pkgs.gitlab-shell}"; + path = "${cfg.packages.gitlab-shell}"; repos_path = "${cfg.statePath}/repositories"; hooks_path = "${cfg.statePath}/shell/hooks"; secret_file = "${cfg.statePath}/config/gitlab_shell_secret"; @@ -110,13 +110,13 @@ let gitlabEnv = { HOME = "${cfg.statePath}/home"; GEM_HOME = gemHome; - BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; + BUNDLE_GEMFILE = "${cfg.packages.gitlab}/share/gitlab/Gemfile"; UNICORN_PATH = "${cfg.statePath}/"; - GITLAB_PATH = "${pkgs.gitlab}/share/gitlab/"; + GITLAB_PATH = "${cfg.packages.gitlab}/share/gitlab/"; GITLAB_STATE_PATH = "${cfg.statePath}"; GITLAB_UPLOADS_PATH = "${cfg.statePath}/uploads"; GITLAB_LOG_PATH = "${cfg.statePath}/log"; - GITLAB_SHELL_PATH = "${pkgs.gitlab-shell}"; + GITLAB_SHELL_PATH = "${cfg.packages.gitlab-shell}"; GITLAB_SHELL_CONFIG_PATH = "${cfg.statePath}/shell/config.yml"; GITLAB_SHELL_SECRET_PATH = "${cfg.statePath}/config/gitlab_shell_secret"; GITLAB_SHELL_HOOKS_PATH = "${cfg.statePath}/shell/hooks"; @@ -127,7 +127,7 @@ let gitlab-runner = pkgs.stdenv.mkDerivation rec { name = "gitlab-runner"; - buildInputs = with pkgs; [ gitlab bundler makeWrapper ]; + buildInputs = [ cfg.packages.gitlab bundler pkgs.makeWrapper ]; phases = "installPhase fixupPhase"; buildPhase = ""; installPhase = '' @@ -136,7 +136,7 @@ let ${concatStrings (mapAttrsToList (name: value: "--set ${name} '\"${value}\"' ") gitlabEnv)} \ --set GITLAB_CONFIG_PATH '"${cfg.statePath}/config"' \ --set PATH '"${pkgs.nodejs}/bin:${pkgs.gzip}/bin:${config.services.postgresql.package}/bin:$PATH"' \ - --set RAKEOPT '"-f ${pkgs.gitlab}/share/gitlab/Rakefile"' + --set RAKEOPT '"-f ${cfg.packages.gitlab}/share/gitlab/Rakefile"' ''; }; @@ -152,6 +152,24 @@ in { ''; }; + packages.gitlab = mkOption { + type = types.package; + default = pkgs.gitlab; + description = "Reference to the gitlab package"; + }; + + packages.gitlab-shell = mkOption { + type = types.package; + default = pkgs.gitlab-shell; + description = "Reference to the gitlab-shell package"; + }; + + packages.gitlab-workhorse = mkOption { + type = types.package; + default = pkgs.gitlab-workhorse; + description = "Reference to the gitlab-workhorse package"; + }; + statePath = mkOption { type = types.str; default = "/var/gitlab/state"; @@ -263,7 +281,7 @@ in { config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.git gitlab-runner pkgs.gitlab-shell ]; + environment.systemPackages = [ pkgs.git gitlab-runner cfg.packages.gitlab-shell ]; assertions = [ { assertion = cfg.databasePassword != ""; @@ -309,7 +327,7 @@ in { User = cfg.user; Group = cfg.group; TimeoutSec = "300"; - WorkingDirectory = "${pkgs.gitlab}/share/gitlab"; + WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab"; ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\""; }; }; @@ -334,12 +352,12 @@ in { Group = cfg.group; TimeoutSec = "300"; ExecStart = - "${pkgs.gitlab-workhorse}/bin/gitlab-workhorse " + "${cfg.packages.gitlab-workhorse}/bin/gitlab-workhorse " + "-listenUmask 0 " + "-listenNetwork unix " + "-listenAddr /run/gitlab/gitlab-workhorse.socket " + "-authSocket ${gitlabSocket} " - + "-documentRoot ${pkgs.gitlab}/share/gitlab/public"; + + "-documentRoot ${cfg.packages.gitlab}/share/gitlab/public"; }; }; @@ -384,9 +402,9 @@ in { chown -R ${cfg.user}:${cfg.group} ${gitlabEnv.HOME}/ chmod -R u+rwX,go-rwx+X ${gitlabEnv.HOME}/ - cp -rf ${pkgs.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config + cp -rf ${cfg.packages.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config ln -sf ${cfg.statePath}/config /run/gitlab/config - cp ${pkgs.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION + cp ${cfg.packages.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION # JSON is a subset of YAML ln -fs ${pkgs.writeText "gitlab.yml" (builtins.toJSON gitlabConfig)} ${cfg.statePath}/config/gitlab.yml @@ -398,8 +416,8 @@ in { # Install the shell required to push repositories ln -fs ${pkgs.writeText "config.yml" gitlabShellYml} "$GITLAB_SHELL_CONFIG_PATH" - ln -fs ${pkgs.gitlab-shell}/hooks "$GITLAB_SHELL_HOOKS_PATH" - ${pkgs.gitlab-shell}/bin/install + ln -fs ${cfg.packages.gitlab-shell}/hooks "$GITLAB_SHELL_HOOKS_PATH" + ${cfg.packages.gitlab-shell}/bin/install if [ "${cfg.databaseHost}" = "127.0.0.1" ]; then if ! test -e "${cfg.statePath}/db-created"; then @@ -429,7 +447,7 @@ in { User = cfg.user; Group = cfg.group; TimeoutSec = "300"; - WorkingDirectory = "${pkgs.gitlab}/share/gitlab"; + WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab"; ExecStart="${bundler}/bin/bundle exec \"unicorn -c ${cfg.statePath}/config/unicorn.rb -E production\""; }; From cd0f14f23e9dd4eb36465c341cdc856457ac5bf0 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 26 Feb 2016 08:31:58 +0100 Subject: [PATCH 259/291] gitlab: Add documentation Fixes #13303. --- .../manual/configuration/configuration.xml | 1 + nixos/doc/manual/default.nix | 1 + .../doc/manual/release-notes/rl-unstable.xml | 8 ++ nixos/modules/services/misc/gitlab.xml | 103 ++++++++++++++++++ 4 files changed, 113 insertions(+) create mode 100644 nixos/modules/services/misc/gitlab.xml diff --git a/nixos/doc/manual/configuration/configuration.xml b/nixos/doc/manual/configuration/configuration.xml index 1e488b59343..ff00c4feb31 100644 --- a/nixos/doc/manual/configuration/configuration.xml +++ b/nixos/doc/manual/configuration/configuration.xml @@ -26,6 +26,7 @@ effect after you run nixos-rebuild. + diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index b4eb3cde81b..4eda7f94ab4 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -56,6 +56,7 @@ let cp -prd $sources/* . # */ chmod -R u+w . cp ${../../modules/services/databases/postgresql.xml} configuration/postgresql.xml + cp ${../../modules/services/misc/gitlab.xml} configuration/gitlab.xml cp ${../../modules/security/acme.xml} configuration/acme.xml cp ${../../modules/misc/nixos.xml} configuration/nixos.xml ln -s ${optionsDocBook} options-db.xml diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index 22e605718e3..5bad7f63b61 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -231,6 +231,14 @@ programs.ibus.plugins = with pkgs; [ ibus-anthy mozc ]; overriden by anything else. + + Large parts of the services.gitlab module has been + been rewritten. There are new configuration options available. The + stateDir option was renamned to + statePath and the satellitesDir option + was removed. Please review the currently available options. + + diff --git a/nixos/modules/services/misc/gitlab.xml b/nixos/modules/services/misc/gitlab.xml new file mode 100644 index 00000000000..b630fe42113 --- /dev/null +++ b/nixos/modules/services/misc/gitlab.xml @@ -0,0 +1,103 @@ + + +Gitlab + +Gitlab is a feature-rich git hosting service. + +
Prerequisites + +The gitlab service exposes only an Unix socket at +/run/gitlab/gitlab-workhorse.socket. You need to configure a +webserver to proxy HTTP requests to the socket. + +For instance, this could be used for Nginx: + + +services.nginx.httpConfig = '' + server { + server_name git.example.com; + listen 443 ssl spdy; + listen [::]:443 ssl spdy; + + ssl_certificate /var/lib/acme/git.example.com/fullchain.pem; + ssl_certificate_key /var/lib/acme/git.example.com/key.pem; + + location / { + proxy_http_version 1.1; + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-Ssl on; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + + proxy_pass http://unix:/run/gitlab/gitlab-workhorse.socket; + } + } +''; + + + +
+ +
Configuring + +Gitlab depends on both PostgreSQL and Redis and will automatically enable +both services. In the case of PostgreSQL, a database and a role will be created. + + +The default state dir is /var/gitlab/state. This is where all data like +the repositories and uploads will be stored. + +A basic configuration could look like this: + + +services.gitlab = { + enable = true; + databasePassword = "eXaMpl3"; + initialRootPassword = "UseNixOS!"; + https = true; + host = "git.example.com"; + port = 443; + user = "git"; + group = "git"; + extraConfig = { + gitlab = { + default_projects_features = { builds = false; }; + }; + }; +}; + + + +Refer to for all available configuration +options for the services.gitlab module. + +
+ +
Maintenance + +You can run all Gitlab related commands like rake tasks with +gitlab-runner which will be available on the system +when gitlab is enabled. You will have to run the commands as the user that +you configured to run gitlab. + +For instance, to backup a Gitlab instance: + + +$ sudo -u git -H gitlab-runner exec rake gitlab:backup:create + + +A list of all availabe rake tasks can be obtained by running: + + +$ sudo -u git -H gitlab-runner exec rake -T + + + +
+ +
From bd5e2d723c773da0f0828f20e56d46ffdadf3c5b Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Fri, 26 Feb 2016 10:21:31 +0100 Subject: [PATCH 260/291] pcsx2: init at 1.4.0 --- pkgs/misc/emulators/pcsx2/default.nix | 71 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 73 insertions(+) create mode 100644 pkgs/misc/emulators/pcsx2/default.nix diff --git a/pkgs/misc/emulators/pcsx2/default.nix b/pkgs/misc/emulators/pcsx2/default.nix new file mode 100644 index 00000000000..63b221c9a3d --- /dev/null +++ b/pkgs/misc/emulators/pcsx2/default.nix @@ -0,0 +1,71 @@ +{ alsaLib, cmake, fetchFromGitHub, glib, gtk2, gettext, libaio, libpng +, makeWrapper, perl, pkgconfig, portaudio, SDL2, soundtouch, stdenv +, wxGTK30, zlib }: + +assert stdenv.isi686; + +stdenv.mkDerivation rec { + name = "pcsx2-${version}"; + version = "1.4.0"; + + src = fetchFromGitHub { + owner = "PCSX2"; + repo = "pcsx2"; + rev = "v${version}"; + sha256 = "0s7mxq2cgzwjfsq0vhpz6ljk7wr725nxg48128iyirf85585l691"; + }; + + configurePhase = '' + mkdir -p build + cd build + + cmake \ + -DBIN_DIR="$out/bin" \ + -DCMAKE_BUILD_PO=TRUE \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX="$out" \ + -DDISABLE_PCSX2_WRAPPER=TRUE \ + -DDOC_DIR="$out/share/doc/pcsx2" \ + -DGAMEINDEX_DIR="$out/share/pcsx2" \ + -DGLSL_SHADER_DIR="$out/share/pcsx2" \ + -DGTK2_GLIBCONFIG_INCLUDE_DIR='${glib}/lib/glib-2.0/include' \ + -DGTK2_GDKCONFIG_INCLUDE_DIR='${gtk2}/lib/gtk-2.0/include' \ + -DGTK2_INCLUDE_DIRS='${gtk2}/include/gtk-2.0' \ + -DPACKAGE_MODE=TRUE \ + -DPLUGIN_DIR="$out/lib/pcsx2" \ + -DREBUILD_SHADER=TRUE \ + .. + ''; + + postFixup = '' + wrapProgram $out/bin/PCSX2 \ + --set __GL_THREADED_OPTIMIZATIONS 1 + ''; + + nativeBuildInputs = [ cmake perl pkgconfig ]; + + buildInputs = [ + alsaLib glib gettext gtk2 libaio libpng makeWrapper portaudio SDL2 + soundtouch wxGTK30 zlib + ]; + + meta = with stdenv.lib; { + description = "Playstation 2 emulator"; + longDescription= '' + PCSX2 is an open-source PlayStation 2 (AKA PS2) emulator. Its purpose + is to emulate the PS2 hardware, using a combination of MIPS CPU + Interpreters, Recompilers and a Virtual Machine which manages hardware + states and PS2 system memory. This allows you to play PS2 games on your + PC, with many additional features and benefits. + ''; + homepage = http://pcsx2.net; + maintainers = with maintainers; [ hrdinka ]; + + # PCSX2's source code is released under LGPLv3+. It However ships + # additional data files and code that are licensed differently. + # This might be solved in future, for now we should stick with + # license.free + license = licenses.free; + platforms = platforms.i686; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0ec1c1c0e78..7d18cc29130 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13154,6 +13154,8 @@ let paraview = callPackage ../applications/graphics/paraview { }; + pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { }; + pencil = callPackage ../applications/graphics/pencil { }; perseus = callPackage ../applications/science/math/perseus {}; From ef11f77c8f5f5b91f0a35c425554836b9ce52a2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sun, 21 Feb 2016 12:20:10 -0300 Subject: [PATCH 261/291] eclipse-plugins-cup: fix plugin file names --- pkgs/applications/editors/eclipse/plugins.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 40aa6b8385e..40585f95013 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -240,7 +240,8 @@ rec { mkdir -p $dropinDir/features unzip ${srcFeature} -d $dropinDir/features/ mkdir -p $dropinDir/plugins - cp -v ${srcPlugin1} ${srcPlugin2} $dropinDir/plugins/ + cp -v ${srcPlugin1} $dropinDir/plugins/''${srcPlugin1#*-} + cp -v ${srcPlugin2} $dropinDir/plugins/''${srcPlugin2#*-} ''; meta = with stdenv.lib; { From 205398c42792d89d7127a635207f38744c4e854b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 25 Feb 2016 17:51:45 -0300 Subject: [PATCH 262/291] eclipse-plugin-zest: init at 3.9.101 eclipse-plugins-cup: remove plugins.nix.orig that was wrongly added. --- pkgs/applications/editors/eclipse/plugins.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 40585f95013..ee484e55778 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -396,4 +396,21 @@ rec { }; }; + zest = buildEclipseUpdateSite rec { + name = "zest-${version}"; + version = "3.9.101"; + + src = fetchurl { + url = "http://archive.eclipse.org/tools/gef/downloads/drops/${version}/R201408150207/GEF-${name}.zip"; + sha256 = "01scn7cmcrjcp387spjm8ifgwrwwi77ypildandbisfvhj3qqs7m"; + }; + + meta = with stdenv.lib; { + homepage = https://www.eclipse.org/gef/zest/; + description = "The Eclipse Visualization Toolkit"; + platforms = platforms.all; + maintainers = [ maintainers.romildo ]; + }; + }; + } From 0e94a1be40bb4475b5fbdda73ddef76bb2e07444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 26 Feb 2016 06:36:14 -0300 Subject: [PATCH 263/291] eclipse-plugins-cup: add dependency on the zest plugin --- pkgs/applications/editors/eclipse/plugins.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index ee484e55778..50975d061eb 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -233,6 +233,8 @@ rec { srcs = [ srcFeature srcPlugin1 srcPlugin2 ]; + propagatedBuildInputs = [ zest ]; + phases = [ "installPhase" ]; installPhase = '' From 459642b8de0ec77ed545786b1c63fbd8a66e38a7 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 26 Feb 2016 10:47:04 +0100 Subject: [PATCH 264/291] chromium/updater: Allow a single plugin arch Until now, if we have a failure to fetch either the 32bit Debian package or the 64bit Debian package, neither of these will be put into sources.nix. Unfortunately the beta/dev channels do not have a 32bit Debian package, so even though there is a 64bit Debian package available we don't get plugins *at* *all*. This also introduces a nicer error message rather than just failing with an assertion in fetchurl because we did not provide url/urls. Signed-off-by: aszlig --- .../browsers/chromium/source/update.nix | 32 ++++++++++++------- .../networking/browsers/chromium/update.sh | 5 +-- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/update.nix b/pkgs/applications/networking/browsers/chromium/source/update.nix index 49864cf1c7b..77ebb9488e2 100644 --- a/pkgs/applications/networking/browsers/chromium/source/update.nix +++ b/pkgs/applications/networking/browsers/chromium/source/update.nix @@ -62,14 +62,18 @@ in rec { pname = if channel == "dev" then "google-chrome-unstable" else "google-chrome-${channel}"; - arch = if stdenv.is64bit then "amd64" else "i386"; - relpath = "${pname}/${pname}_${chanAttrs.version}-1_${arch}.deb"; - in lib.optionalAttrs (chanAttrs ? sha256bin64) { - urls = map (url: "${url}/${relpath}") ([ debURL ] ++ debMirrors); - sha256 = if stdenv.is64bit - then chanAttrs.sha256bin64 - else chanAttrs.sha256bin32; - }; + + mkUrls = arch: let + relpath = "${pname}/${pname}_${chanAttrs.version}-1_${arch}.deb"; + in map (url: "${url}/${relpath}") ([ debURL ] ++ debMirrors); + + in if stdenv.is64bit && chanAttrs ? sha256bin64 then { + urls = mkUrls "amd64"; + sha256 = chanAttrs.sha256bin64; + } else if stdenv.is32bit && chanAttrs ? sha256bin32 then { + urls = mkUrls "i386"; + sha256 = chanAttrs.sha256bin64; + } else throw "No Chrome plugins are available for your architecture."; }; updateHelpers = writeText "update-helpers.sh" '' @@ -91,11 +95,15 @@ in rec { deb_pre="${debURL}/$pname/$pname"; - deb32=$(nix-prefetch-url "''${deb_pre}_$version-1_i386.deb"); - deb64=$(nix-prefetch-url "''${deb_pre}_$version-1_amd64.deb"); + deb32="$(nix-prefetch-url "''${deb_pre}_$version-1_i386.deb")" || : + deb64="$(nix-prefetch-url "''${deb_pre}_$version-1_amd64.deb")" || : - echo "$deb32.$deb64"; - return 0; + if [ -n "$deb32" -o -n "$deb64" ]; then + echo "$deb32.$deb64"; + return 0 + else + return 1 + fi } prefetch_sha() diff --git a/pkgs/applications/networking/browsers/chromium/update.sh b/pkgs/applications/networking/browsers/chromium/update.sh index e079762420b..975e141e668 100755 --- a/pkgs/applications/networking/browsers/chromium/update.sh +++ b/pkgs/applications/networking/browsers/chromium/update.sh @@ -77,9 +77,10 @@ get_channel_exprs() echo " $channel = {"; echo " version = \"$version\";"; echo " sha256 = \"$main\";"; - if [ "x${deb#*[a-z0-9].[a-z0-9]}" != "x$deb" ]; - then + if [ "x${deb#[a-z0-9]}" != "x$deb" ]; then echo " sha256bin32 = \"$deb32\";"; + fi; + if [ "x${deb#*.[a-z0-9]}" != "x$deb" ]; then echo " sha256bin64 = \"$deb64\";"; fi; echo " };"; From 716b79d3a5f3ee438942f59bfd879f46e66204ac Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 26 Feb 2016 10:53:52 +0100 Subject: [PATCH 265/291] chromium: Provide SHA256s for beta/dev plugins As stated in the parent commit, the 32bit Chrome package is not available upstream, so let's at least provide the SHA256 hash for the 64bit package. Signed-off-by: aszlig --- .../networking/browsers/chromium/source/sources.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 14d55572254..ff3df5923b1 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -3,10 +3,12 @@ dev = { version = "50.0.2657.0"; sha256 = "1xc66zsjd5snydf60di2k2vzwwcqs1p16yn4jbpj2khm9cmxmkmf"; + sha256bin64 = "06v7r76pbc979f7ahmln0hmxzd8ipirh4128i0ygidj71xmg51mm"; }; beta = { version = "49.0.2623.63"; sha256 = "07i4vqswkijnl7wi6r1a0n1jq54ackm01yf8h3hwcik8q10i1aq5"; + sha256bin64 = "16pwimg672qaqb89zdvsr8dr7bz50mz7zf6cl0cf45kz7sn8wwlh"; }; stable = { version = "48.0.2564.116"; From d5a2c4cb05bd4274794fac2c268b2adb1901a749 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 26 Feb 2016 11:03:28 +0100 Subject: [PATCH 266/291] libinput: Add libwacom dependency Fixes #13476 & #13147. --- pkgs/development/libraries/libinput/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 013ebd9b962..4db3913bdd2 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig -, libevdev, mtdev, udev +, libevdev, mtdev, udev, libwacom , documentationSupport ? false, doxygen ? null, graphviz ? null # Documentation , eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support , testsSupport ? false, check ? null, valgrind ? null @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ libevdev mtdev udev ] + buildInputs = [ libevdev mtdev udev libwacom ] ++ optionals eventGUISupport [ cairo glib gtk3 ] ++ optionals documentationSupport [ doxygen graphviz ] ++ optionals testsSupport [ check valgrind ]; From fbd857ab7235676731370f92c31e380b0a6aedff Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Fri, 26 Feb 2016 08:54:33 +0100 Subject: [PATCH 267/291] uhc: 1.1.9.2 -> 1.1.9.3 --- pkgs/development/compilers/uhc/default.nix | 25 ++++++---------------- pkgs/top-level/haskell-packages.nix | 5 +---- 2 files changed, 8 insertions(+), 22 deletions(-) diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index 93aa7811449..df79b0ba70e 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -1,23 +1,17 @@ # Note: The Haskell package set used for building UHC is # determined in the file top-level/haskell-packages.nix. -# We are using Stackage LTS to avoid constant breakage. -# Bump the Stackage LTS release to the last release if possible -# when a new UHC version is released. -{ stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: +{ stdenv, coreutils, m4, libtool, clang, ghcWithPackages, fetchFromGitHub }: let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); in stdenv.mkDerivation rec { - # Important: - # The commits "Fixate/tag v..." are the released versions. - # Ignore the "bumped version to ...." commits, they do not - # correspond to releases. - version = "1.1.9.2"; + version = "1.1.9.3"; name = "uhc-${version}"; - src = fetchgit { - url = "https://github.com/UU-ComputerScience/uhc.git"; - rev = "292d259113b98c32154a5be336875751caa5edbc"; - sha256 = "1f462xq9ilkp9mnxm8hxhh1cdwps5d0hxysyibxryk32l7hh53cz"; + src = fetchFromGitHub { + owner = "UU-ComputerScience"; + repo = "uhc"; + rev = "v${version}"; + sha256 = "1r3mja77dqj2ncgp1d9nnc7dhp3gzrb1b1qvml3rq2321mn3m2ad"; }; postUnpack = "sourceRoot=\${sourceRoot}/EHC"; @@ -55,10 +49,5 @@ in stdenv.mkDerivation rec { # On Darwin, the GNU libtool is used, which does not # support the -static flag and thus breaks the build. platforms = ["x86_64-linux"]; - # Hydra currently doesn't build the Stackage LTS package set, - # and we don't want to build all our haskell dependencies - # from scratch just to build UHC. - hydraPlatforms = stdenv.lib.platforms.none; - }; } diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 404d0968d40..86628cc503f 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -65,10 +65,7 @@ rec { uhc = callPackage ../development/compilers/uhc/default.nix ({ stdenv = pkgs.clangStdenv; - # UHC 1.1.9.2 is incompatible with hashable 1.2.4.0, - # latest LTS with a compatible hashable is LTS 4.1 - # See also https://github.com/UU-ComputerScience/uhc/issues/69 - inherit (pkgs.haskell.packages.lts-4_1) ghcWithPackages; + inherit (pkgs.haskellPackages) ghcWithPackages; }); }; From 66febbdfa79b228e188cd2580a98e9240018dcc5 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 26 Feb 2016 16:26:26 +0100 Subject: [PATCH 268/291] Temporarily revert LibreOffice update --- .../office/libreoffice/default.nix | 32 ++++++++----------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 7c73e7b808c..30a4a47896a 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pam, python3, tcsh, libxslt, perl, ArchiveZip , CompressZlib, zlib, libjpeg, expat, pkgconfigUpstream, freetype, libwpd , libxml2, db, sablotron, curl, fontconfig, libsndfile, neon -, bison, flex, zip, unzip, gtk3, gtk, libmspack, getopt, file, cairo, which +, bison, flex, zip, unzip, gtk, libmspack, getopt, file, cairo, which , icu, boost, jdk, ant, cups, xorg, libcmis , openssl, gperf, cppunit, GConf, ORBit2, poppler , librsvg, gnome_vfs, mesa, bsh, CoinMP, libwps, libabw @@ -11,7 +11,7 @@ , fontsConf, pkgconfig, libzip, bluez5, libtool, maven , libatomic_ops, graphite2, harfbuzz, libodfgen , librevenge, libe-book, libmwaw, glm, glew, gst_all_1 -, gdb, commonsLogging, librdf_rasqal +, gdb, commonsLogging , langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" "pl" ] , withHelp ? true }: @@ -19,9 +19,9 @@ let langsSpaces = stdenv.lib.concatStringsSep " " langs; major = "5"; - minor = "1"; - patch = "0"; - tweak = "3"; + minor = "0"; + patch = "4"; + tweak = "2"; subdir = "${major}.${minor}.${patch}"; version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; @@ -47,14 +47,14 @@ let translations = fetchSrc { name = "translations"; - sha256 = "1qqffq7646yh7rskzd1wvy0zgkdnkpdbyhvsny424lxqjglyw3px"; + sha256 = "1kdrs49agqhb2b687hqh6sq7328z2sf04dmhb3xv5zy4rjvv5pha"; }; # TODO: dictionaries help = fetchSrc { name = "help"; - sha256 = "0ixlq6yzn6z8hsih24l934sa05vvz2vk3p03nalpqqrhm7vdzsf2"; + sha256 = "005jwny8xmsnvvh0xkk9csnqv2jkaslr2n9xm82bqalcg81j0g2x"; }; }; @@ -63,17 +63,12 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; - sha256 = "1csphxpbpc7bxrwnl5i9nvm3bh3p0j7r3h9ivsdl7cys13q066xl"; + sha256 = "1j3dmk5xifcgmd6dgqqifzh8wmc7daqfbkvk6cxa94611yvl0x34"; }; # Openoffice will open libcups dynamically, so we link it directly # to make its dlopen work. - # It also seems not to mention libdl explicitly in some places. - NIX_LDFLAGS = "-lcups -ldl"; - - # For some reason librdf_redland sometimes refers to rasqal.h instead - # of rasqal/rasqal.h - NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal"; + NIX_LDFLAGS = "-lcups"; # If we call 'configure', 'make' will then call configure again without parameters. # It's their system. @@ -117,8 +112,6 @@ in stdenv.mkDerivation rec { # http://nabble.documentfoundation.org/libreoffice-5-0-failure-in-CUT-libreofficekit-tiledrendering-td4150319.html echo > ./sd/CppunitTest_sd_tiledrendering.mk sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk - # one more fragile test? - sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx ''; makeFlags = "SHELL=${bash}/bin/bash"; @@ -188,6 +181,7 @@ in stdenv.mkDerivation rec { # I imagine this helps. Copied from go-oo. # Modified on every upgrade, though + "--disable-kde" "--disable-odk" "--disable-postgresql-sdbc" "--disable-firebird-sdbc" @@ -219,18 +213,18 @@ in stdenv.mkDerivation rec { buildInputs = with xorg; [ ant ArchiveZip autoconf automake bison boost cairo clucene_core CompressZlib cppunit cups curl db dbus_glib expat file flex fontconfig - freetype GConf getopt gnome_vfs gperf gtk3 gtk + freetype GConf getopt gnome_vfs gperf gtk hunspell icu jdk kde4.kdelibs lcms libcdr libexttextcat unixODBC libjpeg libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11 libXaw libXext libXi libXinerama libxml2 libxslt libXtst libXdmcp libpthreadstubs mesa mythes gst_all_1.gstreamer gst_all_1.gst-plugins-base - neon nspr nss openldap openssl ORBit2 pam perl pkgconfig poppler + neon nspr nss openldap openssl ORBit2 pam perl pkgconfigUpstream poppler python3 sablotron sane-backends tcsh unzip vigra which zip zlib mdds bluez5 glibc libcmis libwps libabw libxshmfence libatomic_ops graphite2 harfbuzz librevenge libe-book libmwaw glm glew - libodfgen CoinMP librdf_rasqal + libodfgen CoinMP ]; meta = with stdenv.lib; { From d9c10d6f56ab07c9387efe74a6202c19bb744f6c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 26 Feb 2016 17:14:21 +0300 Subject: [PATCH 269/291] gutenprint: fix cups and gimp paths Also disable GIMP support by default to reduce closure --- pkgs/misc/drivers/gutenprint/default.nix | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/drivers/gutenprint/default.nix b/pkgs/misc/drivers/gutenprint/default.nix index 5be7f5ecff4..e53ddf7143b 100644 --- a/pkgs/misc/drivers/gutenprint/default.nix +++ b/pkgs/misc/drivers/gutenprint/default.nix @@ -1,7 +1,7 @@ # this package was called gimp-print in the past { stdenv, lib, fetchurl, pkgconfig , ijs, makeWrapper -, gimp2Support ? true, gimp +, gimp2Support ? false, gimp , cupsSupport ? true, cups, libusb, perl }: @@ -23,15 +23,25 @@ stdenv.mkDerivation rec { "--disable-static-genppd" # should be harmless on NixOS ]; + # FIXME: hacky because we modify generated configure, but I haven't found a better way. + # makeFlags doesn't change this everywhere (e.g. in cups-genppdupdate). + preConfigure = lib.optionalString cupsSupport '' + sed -i \ + -e "s,cups_conf_datadir=.*,cups_conf_datadir=\"$out/share/cups\",g" \ + -e "s,cups_conf_serverbin=.*,cups_conf_serverbin=\"$out/lib/cups\",g" \ + -e "s,cups_conf_serverroot=.*,cups_conf_serverroot=\"$out/etc/cups\",g" \ + configure + '' + lib.optionalString gimp2Support '' + sed -i \ + -e "s,gimp2_plug_indir=.*,gimp2_plug_indir=\"$out/lib/gimp/${gimp.majorVersion}\",g" \ + configure + ''; + enableParallelBuilding = true; # Testing is very, very long. # doCheck = true; - installFlags = - lib.optionals cupsSupport [ "cups_conf_datadir=$(out)/share/cups" "cups_conf_serverbin=$(out)/lib/cups" "cups_conf_serverroot=$(out)/etc/cups" ] - ++ lib.optionals gimp2Support [ "gimp2_plug_indir=$(out)/${gimp.name}-plugins" ]; - meta = with stdenv.lib; { description = "Ghostscript and cups printer drivers"; homepage = http://sourceforge.net/projects/gimp-print/; From c88a06a860c9e2ee6a54824626d5a1041ddaf8d7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 26 Feb 2016 17:40:52 +0300 Subject: [PATCH 270/291] cups service: set path for cups-genppdupdate --- nixos/modules/services/printing/cupsd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 98fb33e3256..80d11565e47 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -310,7 +310,7 @@ in [ ! -e "/var/lib/cups/$i" ] && ln -s "${rootdir}/etc/cups/$i" "/var/lib/cups/$i" done ${optionalString cfg.gutenprint '' - ${gutenprint}/bin/cups-genppdupdate + ${gutenprint}/bin/cups-genppdupdate -p /etc/cups/ppd ''} ''; }; From 32e954db64c0c0118fbc1c542374a20ba57fccca Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 26 Feb 2016 16:28:00 +0100 Subject: [PATCH 271/291] Reverting dependency src for revert --- .../office/libreoffice/libreoffice-srcs.nix | 117 +++++++++--------- 1 file changed, 56 insertions(+), 61 deletions(-) diff --git a/pkgs/applications/office/libreoffice/libreoffice-srcs.nix b/pkgs/applications/office/libreoffice/libreoffice-srcs.nix index 21a16a5fc69..a70d5a7c77c 100644 --- a/pkgs/applications/office/libreoffice/libreoffice-srcs.nix +++ b/pkgs/applications/office/libreoffice/libreoffice-srcs.nix @@ -4,6 +4,21 @@ md5 = "7a3815b506d064313ba309617b6f5a0b"; brief = true; } +{ + name = "commons-codec-1.6-src.tar.gz"; + md5 = "2e482c7567908d334785ce7d69ddfff7"; + brief = false; +} +{ + name = "commons-httpclient-3.1-src.tar.gz"; + md5 = "2c9b0f83ed5890af02c0df1c1776f39b"; + brief = false; +} +{ + name = "commons-lang-2.4-src.tar.gz"; + md5 = "625ff5f2f968dd908bca43c9469d6e6b"; + brief = false; +} { name = "commons-logging-1.2-src.tar.gz"; md5 = "ce977548f1cbf46918e93cd38ac35163"; @@ -20,28 +35,23 @@ brief = true; } { - name = "boost_1_59_0.tar.bz2"; - md5 = "6aa9a5c6a4ca1016edd0ed1178e3cb87"; - brief = true; + name = "boost_1_55_0.tar.bz2"; + md5 = "d6eef4b4cacb2183f2bf265a5a03a354"; + brief = false; } { name = "bsh-2.0b5-src.zip"; md5 = "ec1941a74d3ef513c4ce57a9092b74e1"; brief = false; } -{ - name = "bzip2-1.0.6.tar.gz"; - md5 = "00b516f4704d4a7cb50a1d97e6e8e15b"; - brief = false; -} { name = "cairo-1.10.2.tar.gz"; md5 = "f101a9e88b783337b20b2e26dfd26d5f"; brief = false; } { - name = "libcdr-0.1.2.tar.bz2"; - md5 = "6e3062b55b149d7b3c6aedb3bb5b86e2"; + name = "libcdr-0.1.1.tar.bz2"; + md5 = "b33fd0be3befdd1b37777e08ce058bd9"; brief = true; } { @@ -90,8 +100,8 @@ brief = false; } { - name = "libetonyek-0.1.6.tar.bz2"; - md5 = "77ff46936dcc83670557274e7dd2aa33"; + name = "libetonyek-0.1.3.tar.bz2"; + md5 = "e5947373dd7834f27e93f1636faa419f"; brief = true; } { @@ -100,8 +110,8 @@ brief = false; } { - name = "Firebird-2.5.4.26856-0.tar.bz2"; - md5 = "7a17ec9889424b98baa29e001a054434"; + name = "Firebird-2.5.2.26540-0.tar.bz2"; + md5 = "21154d2004e025c8a3666625b0357bb5"; brief = true; } { @@ -120,8 +130,8 @@ brief = false; } { - name = "dejavu-fonts-ttf-2.35.zip"; - md5 = "d8b5214d35bcd2bfcb2cffa7795b351d"; + name = "dejavu-fonts-ttf-2.34.zip"; + md5 = "a4e565e220b5de082c23995e256e3c12"; brief = false; } { @@ -175,8 +185,8 @@ brief = false; } { - name = "glew-1.12.0.zip"; - md5 = "3941e9cab2f4f9d8faee3e8d57ae7664"; + name = "glew-1.10.0.zip"; + md5 = "594eb47b4b1210e25438d51825404d5a"; brief = false; } { @@ -185,14 +195,9 @@ brief = false; } { - name = "glyphy-0.2.0.tar.bz2"; - md5 = "5d303fb955beb9bf112267316ca9d021"; - brief = false; -} -{ - name = "graphite2-minimal-1.3.4.tgz"; - md5 = "5c0c9ac0996fbb4a0e17780ff5441959"; - brief = false; + name = "graphite2-1.2.4.tgz"; + md5 = "2ef839348fe28e3b923bf8cced440227"; + brief = true; } { name = "harfbuzz-0.9.40.tar.bz2"; @@ -215,8 +220,8 @@ brief = false; } { - name = "icu4c-56_1-src.tgz"; - md5 = "c4a2d71ff56aec5ebfab2a3f059be99d"; + name = "icu4c-54_1-src.tgz"; + md5 = "e844caed8f2ca24c088505b0d6271bc0"; brief = false; } { @@ -280,8 +285,8 @@ brief = true; } { - name = "libjpeg-turbo-1.4.2.tar.gz"; - md5 = "86b0d5f7507c2e6c21c00219162c3c44"; + name = "libjpeg-turbo-1.3.1.tar.gz"; + md5 = "2c3a68129dac443a72815ff5bb374b05"; brief = true; } { @@ -321,8 +326,8 @@ subDir = "libgltf/"; } { - name = "liblangtag-0.5.8.tar.bz2"; - md5 = "aa899eff126216dafe721149fbdb511b"; + name = "liblangtag-0.5.1.tar.bz2"; + md5 = "36271d3fa0d9dec1632029b6d7aac925"; brief = false; } { @@ -361,8 +366,8 @@ brief = true; } { - name = "libmwaw-0.3.7.tar.bz2"; - md5 = "4a8a53a9d997cf0e2bd208178797dbfb"; + name = "libmwaw-0.3.5.tar.bz2"; + md5 = "bdc58bbf89aaaf6d29b3516d96830a06"; brief = true; } { @@ -386,8 +391,8 @@ brief = false; } { - name = "libodfgen-0.1.6.tar.bz2"; - md5 = "32572ea48d9021bbd6fa317ddb697abc"; + name = "libodfgen-0.1.4.tar.bz2"; + md5 = "8716be5c22ae8353f9aaa380d74840dc"; brief = true; } { @@ -406,14 +411,9 @@ brief = true; } { - name = "liborcus-0.9.2.tar.gz"; - md5 = "e6efcbe50a5fd4d50d513c9a7a4139b0"; - brief = true; -} -{ - name = "owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; - md5 = "593f0aa47bf2efc0efda2d28fae063b2"; - brief = true; + name = "liborcus-0.7.0.tar.bz2"; + md5 = "7681383be6ce489d84c1c74f4e7f9643"; + brief = false; } { name = "libpagemaker-0.0.2.tar.bz2"; @@ -426,8 +426,8 @@ brief = false; } { - name = "libpng-1.6.19.tar.gz"; - md5 = "3121bdc77c365a87e054b9f859f421fe"; + name = "libpng-1.5.24.tar.gz"; + md5 = "6652e428d1d3fc3c6cb1362159b1cf3b"; brief = true; } { @@ -445,11 +445,6 @@ md5 = "803a75927f8f241ca78633890c798021"; brief = true; } -{ - name = "Python-3.5.0.tgz"; - md5 = "a56c0c0b45d75a0ec9c6dee933c41c36"; - brief = true; -} { name = "raptor2-2.0.9.tar.gz"; md5 = "4ceb9316488b0ea01acf011023cf7fff"; @@ -466,8 +461,8 @@ brief = false; } { - name = "librevenge-0.0.4.tar.bz2"; - md5 = "5b9ac52ec77d4d19157cf5962ebc0aea"; + name = "librevenge-0.0.2.tar.bz2"; + md5 = "2d4183bf17aea1a71842468a71a68c47"; brief = true; } { @@ -496,23 +491,23 @@ brief = false; } { - name = "libvisio-0.1.5.tar.bz2"; - md5 = "cbee198a78b842b2087f32d33c522818"; + name = "libvisio-0.1.1.tar.bz2"; + md5 = "726c1f5be65eb7d649e0d48b63d920e7"; brief = true; } { - name = "libwpd-0.10.1.tar.bz2"; - md5 = "79b56bcc349264d686a67994506ad199"; + name = "libwpd-0.10.0.tar.bz2"; + md5 = "0773d79a1f240ef9f4f20242b13c5bb7"; brief = true; } { - name = "libwpg-0.3.1.tar.bz2"; - md5 = "dfd066658ec9d2fb2262417039a8a1c3"; + name = "libwpg-0.3.0.tar.bz2"; + md5 = "17da9770cb8b317b7633f9807b32b71a"; brief = true; } { - name = "libwps-0.4.2.tar.bz2"; - md5 = "8a6c55542ce80203dd6d3b1cba99d4e5"; + name = "libwps-0.4.0.tar.bz2"; + md5 = "e9162d2566421d9d71b3ad2377a68fd5"; brief = true; } { From 53ea7dee75b90181683c59869940db85cabc2d78 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Fri, 26 Feb 2016 12:27:04 -0500 Subject: [PATCH 272/291] emacs: fix priority for ctags This fixes the previous attempt (in commit 46d1dd5) to make ctags' ctags override emacs' ctags. The higher the value of the priority attribute, the higher the priority (see the definition of `buildEnv`). --- pkgs/applications/editors/emacs-24/default.nix | 3 --- pkgs/development/tools/misc/ctags/default.nix | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix index 35fcaecb112..ffa280d360c 100644 --- a/pkgs/applications/editors/emacs-24/default.nix +++ b/pkgs/applications/editors/emacs-24/default.nix @@ -86,9 +86,6 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ]; platforms = platforms.all; - # So that Exuberant ctags is preferred - priority = 1; - longDescription = '' GNU Emacs is an extensible, customizable text editor—and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp diff --git a/pkgs/development/tools/misc/ctags/default.nix b/pkgs/development/tools/misc/ctags/default.nix index 26b186c11ea..584095c904d 100644 --- a/pkgs/development/tools/misc/ctags/default.nix +++ b/pkgs/development/tools/misc/ctags/default.nix @@ -29,6 +29,9 @@ stdenv.mkDerivation rec { license = licenses.gpl2Plus; maintainers = with maintainers; [ simons ]; platforms = platforms.unix; + + # So that Exuberant ctags is preferred over emacs's ctags + priority = 1; }; } From 58dbaf69b7abd7a3483d47bd4eede02d68fcdc78 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 20 Feb 2016 00:19:49 +0000 Subject: [PATCH 273/291] go: remove ssl certs patches Those are not needed since we now use a standard location to store our bundles. See bfebc7342e42ebe7a57c9e21b11ab19579189bfd --- pkgs/development/compilers/go/1.4.nix | 1 - pkgs/development/compilers/go/1.5.nix | 1 - pkgs/development/compilers/go/cacert-1.4.patch | 14 -------------- pkgs/development/compilers/go/cacert-1.5.patch | 8 -------- 4 files changed, 24 deletions(-) delete mode 100644 pkgs/development/compilers/go/cacert-1.4.patch delete mode 100644 pkgs/development/compilers/go/cacert-1.5.patch diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index d2500169744..77349a81084 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -84,7 +84,6 @@ stdenv.mkDerivation rec { ''; patches = [ - ./cacert-1.4.patch ./remove-tools-1.4.patch ]; diff --git a/pkgs/development/compilers/go/1.5.nix b/pkgs/development/compilers/go/1.5.nix index 54c8cf219d5..b5bfac85028 100644 --- a/pkgs/development/compilers/go/1.5.nix +++ b/pkgs/development/compilers/go/1.5.nix @@ -89,7 +89,6 @@ stdenv.mkDerivation rec { ''; patches = [ - ./cacert-1.5.patch ./remove-tools-1.5.patch ] # -ldflags=-s is required to compile on Darwin, see diff --git a/pkgs/development/compilers/go/cacert-1.4.patch b/pkgs/development/compilers/go/cacert-1.4.patch deleted file mode 100644 index 5346d3f3950..00000000000 --- a/pkgs/development/compilers/go/cacert-1.4.patch +++ /dev/null @@ -1,14 +0,0 @@ -Go comes with hardcoded cacert. We add the usual in NixOS, -for easier NixOS life. - -diff -r 14854533dcc7 src/crypto/x509/root_unix.go ---- a/src/crypto/x509/root_unix.go Thu Dec 11 11:27:56 2014 +1100 -+++ b/src/crypto/x509/root_unix.go Tue Jan 06 00:41:31 2015 -0600 -@@ -17,6 +17,7 @@ - "/usr/local/share/certs/ca-root-nss.crt", // FreeBSD/DragonFly - "/etc/pki/tls/cacert.pem", // OpenELEC - "/etc/certs/ca-certificates.crt", // Solaris 11.2+ -+ "/etc/ssl/certs/ca-bundle.crt", // NixOS - } - - // Possible directories with certificate files; stop after successfully diff --git a/pkgs/development/compilers/go/cacert-1.5.patch b/pkgs/development/compilers/go/cacert-1.5.patch deleted file mode 100644 index 32c322a104e..00000000000 --- a/pkgs/development/compilers/go/cacert-1.5.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- a/src/crypto/x509/root_linux.go 2015-08-19 23:06:11.115133174 +0200 -+++ b/src/crypto/x509/root_linux.go 2015-08-19 23:07:04.238507161 +0200 -@@ -10,4 +10,5 @@ - "/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL - "/etc/ssl/ca-bundle.pem", // OpenSUSE - "/etc/pki/tls/cacert.pem", // OpenELEC -+ "/etc/ssl/certs/ca-bundle.crt", // NixOS - } From accc1f1484ad6721d03063d148ea46c85dc76a68 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 20 Feb 2016 01:04:42 +0000 Subject: [PATCH 274/291] go: 1.4: disable failing test in sandbox --- pkgs/development/compilers/go/1.4.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 77349a81084..9c6bbba24d5 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -46,6 +46,8 @@ stdenv.mkDerivation rec { sed -i 's,/bin/pwd,'"`type -P pwd`", src/os/os_test.go # Disable the unix socket test sed -i '/TestShutdownUnix/areturn' src/net/net_test.go + # Disable network timeout test + sed -i '/TestDialTimeout/areturn' src/net/dial_test.go # Disable the hostname test sed -i '/TestHostname/areturn' src/os/os_test.go # ParseInLocation fails the test From 8132a5ae76106dc8425a58d8a611e0cc804b3070 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 26 Feb 2016 12:32:33 -0600 Subject: [PATCH 275/291] go-1.6: remove the cacert 1.5 patch Removed in https://github.com/NixOS/nixpkgs/commit/58dbaf69b7abd7a3483d47bd4eede02d68fcdc78 --- pkgs/development/compilers/go/1.6.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index cb1d396f50a..122f0d336f7 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -90,7 +90,6 @@ stdenv.mkDerivation rec { ''; patches = [ - ./cacert-1.5.patch ./remove-tools-1.5.patch ] # -ldflags=-s is required to compile on Darwin, see From f6c3b13c7c4468f1064ccf3b7e98935bd9c9b662 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Fri, 26 Feb 2016 11:27:41 -0800 Subject: [PATCH 276/291] ghcjs: pull in ghcjsi branch --- pkgs/development/compilers/ghcjs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix index 808768f74b8..7401a23ddae 100644 --- a/pkgs/development/compilers/ghcjs/default.nix +++ b/pkgs/development/compilers/ghcjs/default.nix @@ -60,8 +60,8 @@ in mkDerivation (rec { src = fetchFromGitHub { owner = "ghcjs"; repo = "ghcjs"; - rev = "561365ba1667053b5dc5846e2a8edb33eaa3f6dd"; - sha256 = "1vfa7j0ql3sng29m944iznjw9hcmyl57nfkgxa33dvi2ival8dl2"; + rev = "13a99c6da40e3700e070e430d4c0f2ea96217b24"; + sha256 = "01yg6babmhn2bfbmgkddisfj9ai7fc4r08s6acd49s9amcw7g5ld"; }; isLibrary = true; isExecutable = true; From 28b289efa642261d7a5078cfa3a05ef1d6fa2826 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 26 Feb 2016 20:02:41 +0100 Subject: [PATCH 277/291] chromium: Refactor updater entirely in Nix The update.sh shell script now is only a call to nix-build, which does all the hard work of updating the Chromium source channels and the plugins. It results in a store path with the new sources.nix that replaces the already existing sources.nix. Along the way, this has led to a quite massive workaround, which abuses MD5 collisions to detect whether an URL is existing, because something like builtins.tryEval (builtins.fetchurl url) unfortunately doesn't work. Further explanations and implementation details are documented in the actual implementation. The drawback of this is that we don't have nice status messages anymore, but on the upside we have a more robust generation of the sources.nix file, which now also should work properly on missing upstream sources/binaries. This also makes it much easier to implement fetching non-GNU/Linux versions of Chromium and we have all values from omahaproxy available as an attribute set (see the csv2nix and channels attributes in the update attribute). Signed-off-by: aszlig --- .../browsers/chromium/source/update.nix | 255 ++++++++++++------ .../networking/browsers/chromium/update.sh | 104 +------ 2 files changed, 180 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/update.nix b/pkgs/applications/networking/browsers/chromium/source/update.nix index 77ebb9488e2..3c489b7523e 100644 --- a/pkgs/applications/networking/browsers/chromium/source/update.nix +++ b/pkgs/applications/networking/browsers/chromium/source/update.nix @@ -3,17 +3,24 @@ let inherit (import ../../../../../../. { inherit system; - }) lib writeText stdenv; + }) lib runCommand writeText stdenv curl cacert nix; sources = if builtins.pathExists ./sources.nix then import ./sources.nix - else null; + else {}; bucketURL = "https://commondatastorage.googleapis.com/" + "chromium-browser-official"; + mkVerURL = version: "${bucketURL}/chromium-${version}.tar.xz"; + debURL = "https://dl.google.com/linux/chrome/deb/pool/main/g"; + getDebURL = channelName: version: arch: mirror: let + packageSuffix = if channelName == "dev" then "unstable" else channelName; + packageName = "google-chrome-${packageSuffix}"; + in "${mirror}/${packageName}/${packageName}_${version}-1_${arch}.deb"; + # Untrusted mirrors, don't try to update from them! debMirrors = [ "http://95.31.35.30/chrome/pool/main/g" @@ -21,32 +28,6 @@ let "http://repo.fdzh.org/chrome/deb/pool/main/g" ]; - tryChannel = channel: let - chan = builtins.getAttr channel sources; - in if sources != null then '' - oldver="${chan.version}"; - echo -n "Checking if $oldver ($channel) is up to date..." >&2; - if [ "x$(get_newest_ver "$version" "$oldver")" != "x$oldver" ]; - then - echo " no, getting sha256 for new version $version:" >&2; - sha256="$(prefetch_sha "$channel" "$version")" || return 1; - else - echo " yes, keeping old sha256." >&2; - sha256="${chan.sha256}"; - ${if (chan ? sha256bin32 && chan ? sha256bin64) then '' - sha256="$sha256.${chan.sha256bin32}.${chan.sha256bin64}"; - '' else '' - sha256="$sha256.$(prefetch_deb_sha "$channel" "$version")"; - ''} - fi; - '' else '' - sha256="$(prefetch_sha "$channel" "$version")" || return 1; - ''; - - caseChannel = channel: '' - ${channel}) ${tryChannel channel};; - ''; - in rec { getChannel = channel: let chanAttrs = builtins.getAttr channel sources; @@ -54,78 +35,196 @@ in rec { inherit (chanAttrs) version; main = { - url = "${bucketURL}/chromium-${chanAttrs.version}.tar.xz"; + url = mkVerURL chanAttrs.version; inherit (chanAttrs) sha256; }; binary = let - pname = if channel == "dev" - then "google-chrome-unstable" - else "google-chrome-${channel}"; - mkUrls = arch: let - relpath = "${pname}/${pname}_${chanAttrs.version}-1_${arch}.deb"; - in map (url: "${url}/${relpath}") ([ debURL ] ++ debMirrors); - + mkURLForMirror = getDebURL channel chanAttrs.version arch; + in map mkURLForMirror ([ debURL ] ++ debMirrors); in if stdenv.is64bit && chanAttrs ? sha256bin64 then { urls = mkUrls "amd64"; sha256 = chanAttrs.sha256bin64; } else if stdenv.is32bit && chanAttrs ? sha256bin32 then { urls = mkUrls "i386"; - sha256 = chanAttrs.sha256bin64; + sha256 = chanAttrs.sha256bin32; } else throw "No Chrome plugins are available for your architecture."; }; - updateHelpers = writeText "update-helpers.sh" '' + update = let + csv2nix = name: src: import (runCommand "${name}.nix" { + src = builtins.fetchurl src; + } '' + esc() { echo "\"$(echo "$1" | sed -e 's/"\\$/\\&/')\""; } + IFS=, read -r -a headings <<< "$(head -n1 "$src")" + echo "[" > "$out" + tail -n +2 "$src" | while IFS=, read -r -a line; do + echo " {" + for idx in "''${!headings[@]}"; do + echo " $(esc "''${headings[idx]}") = $(esc ''${line[$idx]});" + done + echo " }" + done >> "$out" + echo "]" >> "$out" + ''); - prefetch_main_sha() - { - nix-prefetch-url "${bucketURL}/chromium-$2.tar.xz"; - } + channels = lib.fold lib.recursiveUpdate {} (map (attrs: { + ${attrs.os}.${attrs.channel} = attrs // { + history = let + drvName = "omahaproxy-${attrs.os}.${attrs.channel}-info"; + history = csv2nix drvName "http://omahaproxy.appspot.com/history"; + cond = h: attrs.os == h.os && attrs.channel == h.channel + && lib.versionOlder h.version attrs.current_version; + # Note that this is a *reverse* sort! + sorter = a: b: lib.versionOlder b.version a.version; + sorted = builtins.sort sorter (lib.filter cond history); + in map (lib.flip removeAttrs ["os" "channel"]) sorted; + version = attrs.current_version; + }; + }) (csv2nix "omahaproxy-info" "http://omahaproxy.appspot.com/all?csv=1")); - prefetch_deb_sha() - { - channel="$1"; - version="$2"; + /* + XXX: This is essentially the same as: - case "$1" in - dev) pname="google-chrome-unstable";; - *) pname="google-chrome-$channel";; - esac; + builtins.tryEval (builtins.fetchurl url) - deb_pre="${debURL}/$pname/$pname"; + ... except that tryEval on fetchurl isn't working and doesn't catch errors + for fetchurl, so we go for a different approach. - deb32="$(nix-prefetch-url "''${deb_pre}_$version-1_i386.deb")" || : - deb64="$(nix-prefetch-url "''${deb_pre}_$version-1_amd64.deb")" || : + We only have fixed-output derivations that can have networking access, so + we abuse MD5 and its weaknesses to forge a fixed-output derivation which + is not so fixed, because it emits different contents that have the same + MD5 hash. - if [ -n "$deb32" -o -n "$deb64" ]; then - echo "$deb32.$deb64"; - return 0 - else - return 1 - fi - } + Using this method, we can distinguish whether the URL is available or + whether it's not based on the actual content. - prefetch_sha() - { - main_sha="$(prefetch_main_sha "$@")" || return 1; - deb_sha="$(prefetch_deb_sha "$@")" || return 1; - echo "$main_sha.$deb_sha"; - return 0; - } + So let's use tryEval as soon as it's working with fetchurl in Nix. + */ + tryFetch = url: let + mkBin = b: runCommand "binary-blurb" { inherit b; } '' + h="$(echo "$b" | sed -e ':r;N;$!br;s/[^ \n][^ \n]/\\x&/g;s/[ \n]//g')" + echo -ne "$h" > "$out" + ''; - get_sha256() - { - channel="$1"; - version="$2"; + # Both MD5 hash collision examples are from: + # https://en.wikipedia.org/wiki/MD5#Collision_vulnerabilities + hashCollTrue = mkBin '' + d131dd02c5e6eec4 693d9a0698aff95c 2fcab58712467eab 4004583eb8fb7f89 + 55ad340609f4b302 83e488832571415a 085125e8f7cdc99f d91dbdf280373c5b + d8823e3156348f5b ae6dacd436c919c6 dd53e2b487da03fd 02396306d248cda0 + e99f33420f577ee8 ce54b67080a80d1e c69821bcb6a88393 96f9652b6ff72a70 + ''; - case "$channel" in - ${lib.concatMapStrings caseChannel [ "stable" "dev" "beta" ]} - esac; + hashCollFalse = mkBin '' + d131dd02c5e6eec4 693d9a0698aff95c 2fcab50712467eab 4004583eb8fb7f89 + 55ad340609f4b302 83e4888325f1415a 085125e8f7cdc99f d91dbd7280373c5b + d8823e3156348f5b ae6dacd436c919c6 dd53e23487da03fd 02396306d248cda0 + e99f33420f577ee8 ce54b67080280d1e c69821bcb6a88393 96f965ab6ff72a70 + ''; - sha_insert "$version" "$sha256"; - echo "$sha256"; - return 0; - } + cacheVal = let + urlHash = builtins.hashString "sha256" url; + timeSlice = builtins.currentTime / 600; + in "${urlHash}-${toString timeSlice}"; + + successBin = stdenv.mkDerivation { + name = "tryfetch-${cacheVal}"; + inherit url; + + outputHash = "79054025255fb1a26e4bc422aef54eb4"; + outputHashMode = "flat"; + outputHashAlgo = "md5"; + + buildInputs = [ curl ]; + preferLocalBuild = true; + + buildCommand = '' + if SSL_CERT_FILE="${cacert}/etc/ssl/certs/ca-bundle.crt" \ + curl -s -L -f -I "$url" > /dev/null; then + cat "${hashCollTrue}" > "$out" + else + cat "${hashCollFalse}" > "$out" + fi + ''; + + impureEnvVars = [ + "http_proxy" "https_proxy" "ftp_proxy" "all_proxy" "no_proxy" + ]; + }; + + in { + success = builtins.readFile successBin == builtins.readFile hashCollTrue; + value = builtins.fetchurl url; + }; + + fetchLatest = channel: let + result = tryFetch (mkVerURL channel.version); + in if result.success then result.value else fetchLatest (channel // { + version = if channel.history != [] + then (lib.head channel.history).version + else throw "Unfortunately there's no older version than " + + "${channel.version} available for channel " + + "${channel.channel} on ${channel.os}."; + history = lib.tail channel.history; + }); + + getHash = path: import (runCommand "gethash.nix" { + inherit path; + buildInputs = [ nix ]; + } '' + sha256="$(nix-hash --flat --base32 --type sha256 "$path")" + echo "\"$sha256\"" > "$out" + ''); + + isLatest = channel: version: let + ourVersion = sources.${channel}.version or null; + in if ourVersion == null then false + else lib.versionAtLeast version sources.${channel}.version; + + # We only support GNU/Linux right now. + linuxChannels = let + genLatest = channelName: channel: let + newUpstream = { + inherit (channel) version; + sha256 = getHash (fetchLatest channel); + }; + keepOld = let + oldChannel = sources.${channelName}; + in { + inherit (oldChannel) version sha256; + } // lib.optionalAttrs (oldChannel ? sha256bin32) { + inherit (oldChannel) sha256bin32; + } // lib.optionalAttrs (oldChannel ? sha256bin64) { + inherit (oldChannel) sha256bin64; + }; + in if isLatest channelName channel.version then keepOld else newUpstream; + in lib.mapAttrs genLatest channels.linux; + + getLinuxFlash = channelName: channel: let + inherit (channel) version; + fetchArch = arch: tryFetch (getDebURL channelName version arch debURL); + packages = lib.genAttrs ["i386" "amd64"] fetchArch; + isNew = arch: attr: !(builtins.hasAttr attr channel) + && packages.${arch}.success; + in channel // lib.optionalAttrs (isNew "i386" "sha256bin32") { + sha256bin32 = getHash (packages.i386.value); + } // lib.optionalAttrs (isNew "amd64" "sha256bin64") { + sha256bin64 = getHash (packages.amd64.value); + }; + + newChannels = lib.mapAttrs getLinuxFlash linuxChannels; + + dumpAttrs = indent: attrs: let + mkVal = val: if lib.isAttrs val then dumpAttrs (indent + 1) val + else "\"${lib.escape ["$" "\\" "\""] (toString val)}\""; + mkIndent = level: lib.concatStrings (builtins.genList (_: " ") level); + mkAttr = key: val: "${mkIndent (indent + 1)}${key} = ${mkVal val};\n"; + attrLines = lib.mapAttrsToList mkAttr attrs; + in "{\n" + (lib.concatStrings attrLines) + (mkIndent indent) + "}"; + in writeText "chromium-new-sources.nix" '' + # This file is autogenerated from update.sh in the parent directory. + ${dumpAttrs 0 newChannels} ''; } diff --git a/pkgs/applications/networking/browsers/chromium/update.sh b/pkgs/applications/networking/browsers/chromium/update.sh index 975e141e668..05cc671d31c 100755 --- a/pkgs/applications/networking/browsers/chromium/update.sh +++ b/pkgs/applications/networking/browsers/chromium/update.sh @@ -1,101 +1,3 @@ -#!/bin/sh - -channels_url="http://omahaproxy.appspot.com/all?csv=1"; -history_url="http://omahaproxy.appspot.com/history"; -bucket_url="http://commondatastorage.googleapis.com/chromium-browser-official/"; -base_path="$(cd "$(dirname "$0")" && pwd)/source"; - -source "$(nix-build --no-out-link "$base_path/update.nix" -A updateHelpers)"; - -### poor mans key/value-store :-) ### - -ver_sha_table=""; # list of version:sha256 - -sha_insert() -{ - version="$1"; - sha256="$2"; - - ver_sha_table="$ver_sha_table $version:$sha256"; -} - -get_newest_ver() -{ - versions="$(for v in $@; do echo "$v"; done)"; - if oldest="$(echo "$versions" | sort -V 2> /dev/null | tail -n1)"; - then - echo "$oldest"; - else - echo "$versions" | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n | tail -n1; - fi; -} - -fetch_filtered_history() -{ - curl -s "$history_url" | sed -nr 's/^'"linux,$1"',([^,]+).*$/\1/p'; -} - -get_prev_sha256() -{ - channel="$1"; - current_version="$2"; - - for version in $(fetch_filtered_history "$channel"); - do - [ "x$version" = "x$current_version" ] && continue; - sha256="$(get_sha256 "$channel" "$version")" || continue; - echo "$sha256:$version"; - return 0; - done; -} - -get_channel_exprs() -{ - for chline in $1; - do - channel="${chline%%,*}"; - version="${chline##*,}"; - - sha256="$(get_sha256 "$channel" "$version")"; - if [ $? -ne 0 ]; - then - echo "Whoops, failed to fetch $version, trying previous" \ - "versions:" >&2; - - sha_ver="$(get_prev_sha256 "$channel" "$version")"; - sha256="${sha_ver%:*}"; - version="${sha_ver#*:}"; - fi; - - sha_insert "$version" "$sha256"; - - main="${sha256%%.*}"; - deb="${sha256#*.}"; - deb32="${deb%.*}"; - deb64="${deb#*.}"; - - echo " $channel = {"; - echo " version = \"$version\";"; - echo " sha256 = \"$main\";"; - if [ "x${deb#[a-z0-9]}" != "x$deb" ]; then - echo " sha256bin32 = \"$deb32\";"; - fi; - if [ "x${deb#*.[a-z0-9]}" != "x$deb" ]; then - echo " sha256bin64 = \"$deb64\";"; - fi; - echo " };"; - done; -} - -cd "$(dirname "$0")"; - -omaha="$(curl -s "$channels_url")"; -versions="$(echo "$omaha" | sed -nr -e 's/^linux,([^,]+,[^,]+).*$/\1/p')"; -channel_exprs="$(get_channel_exprs "$versions")"; - -cat > "$base_path/sources.nix" <<-EOF -# This file is autogenerated from update.sh in the parent directory. -{ -$channel_exprs -} -EOF +#!/bin/sh -e +sp="$(nix-build -Q --no-out-link source/update.nix -A update)" +cat "$sp" > source/sources.nix From 54b49125664adb1f7cf054bbf8a09aeecc88b574 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 26 Feb 2016 20:53:26 +0100 Subject: [PATCH 278/291] chromium: Regenerate sources.nix with new updater No changes in functionality, but to make future source updates a bit easier on the eyes when viewing the diff. Signed-off-by: aszlig --- .../browsers/chromium/source/sources.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index ff3df5923b1..ffb9ff11068 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -1,19 +1,19 @@ # This file is autogenerated from update.sh in the parent directory. { - dev = { - version = "50.0.2657.0"; - sha256 = "1xc66zsjd5snydf60di2k2vzwwcqs1p16yn4jbpj2khm9cmxmkmf"; - sha256bin64 = "06v7r76pbc979f7ahmln0hmxzd8ipirh4128i0ygidj71xmg51mm"; - }; beta = { - version = "49.0.2623.63"; sha256 = "07i4vqswkijnl7wi6r1a0n1jq54ackm01yf8h3hwcik8q10i1aq5"; sha256bin64 = "16pwimg672qaqb89zdvsr8dr7bz50mz7zf6cl0cf45kz7sn8wwlh"; + version = "49.0.2623.63"; + }; + dev = { + sha256 = "1xc66zsjd5snydf60di2k2vzwwcqs1p16yn4jbpj2khm9cmxmkmf"; + sha256bin64 = "06v7r76pbc979f7ahmln0hmxzd8ipirh4128i0ygidj71xmg51mm"; + version = "50.0.2657.0"; }; stable = { - version = "48.0.2564.116"; sha256 = "03sdm09cnwq8a056rfljql7mz0s17fngfnm5q3p5xwakr2sbj7ka"; sha256bin32 = "157m88nafb8svpkv11rzpcfvak6486wx43rmbssg52x2k0vas0bl"; sha256bin64 = "036pcma8qczja803h9r1nlm0ypm4zblmy6q7pkwlgmn3r4r3n7i0"; + version = "48.0.2564.116"; }; } From 3386d73d0618a00a6aca32c45f06646f39dae976 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Fri, 26 Feb 2016 21:01:41 +0100 Subject: [PATCH 279/291] Add galen to all-packages.nix --- pkgs/top-level/all-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 98405112dde..8c648452056 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1659,6 +1659,8 @@ let gtk = gtk3; }; + galen = callPackage ../development/tools/galen {}; + garmin-plugin = callPackage ../applications/misc/garmin-plugin {}; garmintools = callPackage ../development/libraries/garmintools {}; @@ -3346,7 +3348,7 @@ let stricat = callPackage ../tools/security/stricat { }; staruml = callPackage ../tools/misc/staruml { inherit (gnome) GConf; libgcrypt = libgcrypt_1_5; }; - + privoxy = callPackage ../tools/networking/privoxy { w3m = w3m-batch; }; @@ -6574,8 +6576,8 @@ let eigen = callPackage ../development/libraries/eigen {}; eigen2 = callPackage ../development/libraries/eigen/2.0.nix {}; - - vmmlib = callPackage ../development/libraries/vmmlib {}; + + vmmlib = callPackage ../development/libraries/vmmlib {}; enchant = callPackage ../development/libraries/enchant { }; From 728b1ce55766778b996cf3d5a8ff8b3161cfbda9 Mon Sep 17 00:00:00 2001 From: = Date: Fri, 26 Feb 2016 12:32:11 +0100 Subject: [PATCH 280/291] qnotero: init at 1.0.0 --- pkgs/applications/office/qnotero/default.nix | 39 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/applications/office/qnotero/default.nix diff --git a/pkgs/applications/office/qnotero/default.nix b/pkgs/applications/office/qnotero/default.nix new file mode 100644 index 00000000000..695db93d4de --- /dev/null +++ b/pkgs/applications/office/qnotero/default.nix @@ -0,0 +1,39 @@ +{ stdenv, fetchFromGitHub, buildPythonPackage, python3, python3Packages +}: + +python3Packages.buildPythonPackage rec { + name = "qnotero-${version}"; + + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "smathot"; + repo = "qnotero"; + rev = "release/${version}"; + name = "qnotero-${version}-src"; + sha256 = "1d5a9k1llzn9q1qv1bfwc7gfflabh4riplz9jj0hf04b279y1bj0"; + }; + + propagatedBuildInputs = [ python3 python3Packages.pyqt4 ]; + + patchPhase = '' + substituteInPlace ./setup.py \ + --replace "/usr/share" "$out/usr/share" + + substituteInPlace ./libqnotero/_themes/default.py \ + --replace "/usr/share" "$out/usr/share" + ''; + + postInstall = '' + mkdir -p "$out/usr/share/qnotero" + mv resources "$out/usr/share/qnotero" + ''; + + meta = { + description = "Quick access to Zotero references"; + homepage = http://www.cogsci.nl/software/qnotero; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.nico202 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0ec1c1c0e78..50884cde028 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13299,6 +13299,8 @@ let qmmp = callPackage ../applications/audio/qmmp { }; + qnotero = callPackage ../applications/office/qnotero { }; + qrcode = callPackage ../tools/graphics/qrcode {}; qsampler = callPackage ../applications/audio/qsampler { }; From 4806cddda30a840f7add609d54d692b2e4d813f1 Mon Sep 17 00:00:00 2001 From: Tony White Date: Fri, 26 Feb 2016 21:32:00 +0000 Subject: [PATCH 281/291] fetchurl: use kernel.org cdn by default - use http://cdn.kernel.org/pub/ as the default mirror for kernel source requests. Discovered by browsing : https://www.kernel.org/introducing-fastly-cdn.html --- pkgs/build-support/fetchurl/mirrors.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix index c5107781c33..148a72f5d84 100644 --- a/pkgs/build-support/fetchurl/mirrors.nix +++ b/pkgs/build-support/fetchurl/mirrors.nix @@ -61,6 +61,7 @@ rec { # kernel.org's /pub (/pub/{linux,software}) tree. kernel = [ + http://cdn.kernel.org/pub/ http://www.all.kernel.org/pub/ http://ramses.wh2.tu-dresden.de/pub/mirrors/kernel.org/ http://linux-kernel.uio.no/pub/ From 483a130f894505917c00cb6d4eca50225fde4c38 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 26 Feb 2016 09:50:24 -0600 Subject: [PATCH 282/291] cpio: patch CVE-2016-2037, out of bounds write (close #13489) --- .../CVE-2016-2037-out-of-bounds-write.patch | 29 +++++++++++++++++++ pkgs/tools/archivers/cpio/default.nix | 4 +++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/tools/archivers/cpio/CVE-2016-2037-out-of-bounds-write.patch diff --git a/pkgs/tools/archivers/cpio/CVE-2016-2037-out-of-bounds-write.patch b/pkgs/tools/archivers/cpio/CVE-2016-2037-out-of-bounds-write.patch new file mode 100644 index 00000000000..90ddeff9790 --- /dev/null +++ b/pkgs/tools/archivers/cpio/CVE-2016-2037-out-of-bounds-write.patch @@ -0,0 +1,29 @@ +diff --git a/src/copyin.c b/src/copyin.c +index cde911e..032d35f 100644 +--- a/src/copyin.c ++++ b/src/copyin.c +@@ -1385,6 +1385,8 @@ process_copy_in () + break; + } + ++ if (file_hdr.c_namesize <= 1) ++ file_hdr.c_name = xrealloc(file_hdr.c_name, 2); + cpio_safer_name_suffix (file_hdr.c_name, false, !no_abs_paths_flag, + false); + +diff --git a/src/util.c b/src/util.c +index 6ff6032..2763ac1 100644 +--- a/src/util.c ++++ b/src/util.c +@@ -1411,7 +1411,10 @@ set_file_times (int fd, + } + + /* Do we have to ignore absolute paths, and if so, does the filename +- have an absolute path? */ ++ have an absolute path? ++ Before calling this function make sure that the allocated NAME buffer has ++ capacity at least 2 bytes to allow us to store the "." string inside. */ ++ + void + cpio_safer_name_suffix (char *name, bool link_target, bool absolute_names, + bool strip_leading_dots) diff --git a/pkgs/tools/archivers/cpio/default.nix b/pkgs/tools/archivers/cpio/default.nix index 570f1904ee2..2313f27f2e5 100644 --- a/pkgs/tools/archivers/cpio/default.nix +++ b/pkgs/tools/archivers/cpio/default.nix @@ -19,6 +19,10 @@ in stdenv.mkDerivation { + "CVE-2015-1197-cpio-2.12.patch"; sha256 = "0ph43m4lavwkc4gnl5h9p3da4kb1pnhwk5l2qsky70dqri8pcr8v"; }) + + # Report: http://www.openwall.com/lists/oss-security/2016/01/19/4 + # Patch from https://lists.gnu.org/archive/html/bug-cpio/2016-01/msg00005.html + ./CVE-2016-2037-out-of-bounds-write.patch ]; preConfigure = if stdenv.isCygwin then '' From a94e43393658fd6048e36956dd84a2686c72d1f1 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 26 Feb 2016 22:57:49 +0100 Subject: [PATCH 283/291] libreoffice: 5.0.4.2 -> 5.1.0.3 (a new attempt); set XDG_DATA_DIRS for access to GSettings schemas --- .../office/libreoffice/default.nix | 41 +++--- .../office/libreoffice/libreoffice-srcs.nix | 117 +++++++++--------- pkgs/top-level/all-packages.nix | 7 +- 3 files changed, 92 insertions(+), 73 deletions(-) diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 30a4a47896a..43c5e0fb627 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pam, python3, tcsh, libxslt, perl, ArchiveZip , CompressZlib, zlib, libjpeg, expat, pkgconfigUpstream, freetype, libwpd , libxml2, db, sablotron, curl, fontconfig, libsndfile, neon -, bison, flex, zip, unzip, gtk, libmspack, getopt, file, cairo, which +, bison, flex, zip, unzip, gtk3, gtk, libmspack, getopt, file, cairo, which , icu, boost, jdk, ant, cups, xorg, libcmis , openssl, gperf, cppunit, GConf, ORBit2, poppler , librsvg, gnome_vfs, mesa, bsh, CoinMP, libwps, libabw @@ -11,7 +11,8 @@ , fontsConf, pkgconfig, libzip, bluez5, libtool, maven , libatomic_ops, graphite2, harfbuzz, libodfgen , librevenge, libe-book, libmwaw, glm, glew, gst_all_1 -, gdb, commonsLogging +, gdb, commonsLogging, librdf_rasqal, makeWrapper, gsettings_desktop_schemas +, defaultIconTheme, glib , langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" "pl" ] , withHelp ? true }: @@ -19,9 +20,9 @@ let langsSpaces = stdenv.lib.concatStringsSep " " langs; major = "5"; - minor = "0"; - patch = "4"; - tweak = "2"; + minor = "1"; + patch = "0"; + tweak = "3"; subdir = "${major}.${minor}.${patch}"; version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; @@ -47,14 +48,14 @@ let translations = fetchSrc { name = "translations"; - sha256 = "1kdrs49agqhb2b687hqh6sq7328z2sf04dmhb3xv5zy4rjvv5pha"; + sha256 = "1qqffq7646yh7rskzd1wvy0zgkdnkpdbyhvsny424lxqjglyw3px"; }; # TODO: dictionaries help = fetchSrc { name = "help"; - sha256 = "005jwny8xmsnvvh0xkk9csnqv2jkaslr2n9xm82bqalcg81j0g2x"; + sha256 = "0ixlq6yzn6z8hsih24l934sa05vvz2vk3p03nalpqqrhm7vdzsf2"; }; }; @@ -63,12 +64,17 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; - sha256 = "1j3dmk5xifcgmd6dgqqifzh8wmc7daqfbkvk6cxa94611yvl0x34"; + sha256 = "1csphxpbpc7bxrwnl5i9nvm3bh3p0j7r3h9ivsdl7cys13q066xl"; }; # Openoffice will open libcups dynamically, so we link it directly # to make its dlopen work. - NIX_LDFLAGS = "-lcups"; + # It also seems not to mention libdl explicitly in some places. + NIX_LDFLAGS = "-lcups -ldl"; + + # For some reason librdf_redland sometimes refers to rasqal.h instead + # of rasqal/rasqal.h + NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal"; # If we call 'configure', 'make' will then call configure again without parameters. # It's their system. @@ -112,6 +118,8 @@ in stdenv.mkDerivation rec { # http://nabble.documentfoundation.org/libreoffice-5-0-failure-in-CUT-libreofficekit-tiledrendering-td4150319.html echo > ./sd/CppunitTest_sd_tiledrendering.mk sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk + # one more fragile test? + sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx ''; makeFlags = "SHELL=${bash}/bin/bash"; @@ -134,8 +142,14 @@ in stdenv.mkDerivation rec { postInstall = '' mkdir -p $out/bin $out/share/desktop + mkdir -p "$out/share/gsettings-schemas/collected-for-libreoffice/glib-2.0/schemas/" + for a in sbase scalc sdraw smath swriter spadmin simpress soffice; do ln -s $out/lib/libreoffice/program/$a $out/bin/$a + wrapProgram "$out/bin/$a" \ + --prefix XDG_DATA_DIRS : \ + "$out/share:$GSETTINGS_SCHEMAS_PATH" \ + ; done ln -s $out/bin/soffice $out/bin/libreoffice @@ -181,7 +195,6 @@ in stdenv.mkDerivation rec { # I imagine this helps. Copied from go-oo. # Modified on every upgrade, though - "--disable-kde" "--disable-odk" "--disable-postgresql-sdbc" "--disable-firebird-sdbc" @@ -213,18 +226,18 @@ in stdenv.mkDerivation rec { buildInputs = with xorg; [ ant ArchiveZip autoconf automake bison boost cairo clucene_core CompressZlib cppunit cups curl db dbus_glib expat file flex fontconfig - freetype GConf getopt gnome_vfs gperf gtk + freetype GConf getopt gnome_vfs gperf gtk3 gtk hunspell icu jdk kde4.kdelibs lcms libcdr libexttextcat unixODBC libjpeg libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11 libXaw libXext libXi libXinerama libxml2 libxslt libXtst libXdmcp libpthreadstubs mesa mythes gst_all_1.gstreamer - gst_all_1.gst-plugins-base - neon nspr nss openldap openssl ORBit2 pam perl pkgconfigUpstream poppler + gst_all_1.gst-plugins-base gsettings_desktop_schemas glib + neon nspr nss openldap openssl ORBit2 pam perl pkgconfig poppler python3 sablotron sane-backends tcsh unzip vigra which zip zlib mdds bluez5 glibc libcmis libwps libabw libxshmfence libatomic_ops graphite2 harfbuzz librevenge libe-book libmwaw glm glew - libodfgen CoinMP + libodfgen CoinMP librdf_rasqal defaultIconTheme makeWrapper ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/office/libreoffice/libreoffice-srcs.nix b/pkgs/applications/office/libreoffice/libreoffice-srcs.nix index a70d5a7c77c..21a16a5fc69 100644 --- a/pkgs/applications/office/libreoffice/libreoffice-srcs.nix +++ b/pkgs/applications/office/libreoffice/libreoffice-srcs.nix @@ -4,21 +4,6 @@ md5 = "7a3815b506d064313ba309617b6f5a0b"; brief = true; } -{ - name = "commons-codec-1.6-src.tar.gz"; - md5 = "2e482c7567908d334785ce7d69ddfff7"; - brief = false; -} -{ - name = "commons-httpclient-3.1-src.tar.gz"; - md5 = "2c9b0f83ed5890af02c0df1c1776f39b"; - brief = false; -} -{ - name = "commons-lang-2.4-src.tar.gz"; - md5 = "625ff5f2f968dd908bca43c9469d6e6b"; - brief = false; -} { name = "commons-logging-1.2-src.tar.gz"; md5 = "ce977548f1cbf46918e93cd38ac35163"; @@ -35,23 +20,28 @@ brief = true; } { - name = "boost_1_55_0.tar.bz2"; - md5 = "d6eef4b4cacb2183f2bf265a5a03a354"; - brief = false; + name = "boost_1_59_0.tar.bz2"; + md5 = "6aa9a5c6a4ca1016edd0ed1178e3cb87"; + brief = true; } { name = "bsh-2.0b5-src.zip"; md5 = "ec1941a74d3ef513c4ce57a9092b74e1"; brief = false; } +{ + name = "bzip2-1.0.6.tar.gz"; + md5 = "00b516f4704d4a7cb50a1d97e6e8e15b"; + brief = false; +} { name = "cairo-1.10.2.tar.gz"; md5 = "f101a9e88b783337b20b2e26dfd26d5f"; brief = false; } { - name = "libcdr-0.1.1.tar.bz2"; - md5 = "b33fd0be3befdd1b37777e08ce058bd9"; + name = "libcdr-0.1.2.tar.bz2"; + md5 = "6e3062b55b149d7b3c6aedb3bb5b86e2"; brief = true; } { @@ -100,8 +90,8 @@ brief = false; } { - name = "libetonyek-0.1.3.tar.bz2"; - md5 = "e5947373dd7834f27e93f1636faa419f"; + name = "libetonyek-0.1.6.tar.bz2"; + md5 = "77ff46936dcc83670557274e7dd2aa33"; brief = true; } { @@ -110,8 +100,8 @@ brief = false; } { - name = "Firebird-2.5.2.26540-0.tar.bz2"; - md5 = "21154d2004e025c8a3666625b0357bb5"; + name = "Firebird-2.5.4.26856-0.tar.bz2"; + md5 = "7a17ec9889424b98baa29e001a054434"; brief = true; } { @@ -130,8 +120,8 @@ brief = false; } { - name = "dejavu-fonts-ttf-2.34.zip"; - md5 = "a4e565e220b5de082c23995e256e3c12"; + name = "dejavu-fonts-ttf-2.35.zip"; + md5 = "d8b5214d35bcd2bfcb2cffa7795b351d"; brief = false; } { @@ -185,8 +175,8 @@ brief = false; } { - name = "glew-1.10.0.zip"; - md5 = "594eb47b4b1210e25438d51825404d5a"; + name = "glew-1.12.0.zip"; + md5 = "3941e9cab2f4f9d8faee3e8d57ae7664"; brief = false; } { @@ -195,9 +185,14 @@ brief = false; } { - name = "graphite2-1.2.4.tgz"; - md5 = "2ef839348fe28e3b923bf8cced440227"; - brief = true; + name = "glyphy-0.2.0.tar.bz2"; + md5 = "5d303fb955beb9bf112267316ca9d021"; + brief = false; +} +{ + name = "graphite2-minimal-1.3.4.tgz"; + md5 = "5c0c9ac0996fbb4a0e17780ff5441959"; + brief = false; } { name = "harfbuzz-0.9.40.tar.bz2"; @@ -220,8 +215,8 @@ brief = false; } { - name = "icu4c-54_1-src.tgz"; - md5 = "e844caed8f2ca24c088505b0d6271bc0"; + name = "icu4c-56_1-src.tgz"; + md5 = "c4a2d71ff56aec5ebfab2a3f059be99d"; brief = false; } { @@ -285,8 +280,8 @@ brief = true; } { - name = "libjpeg-turbo-1.3.1.tar.gz"; - md5 = "2c3a68129dac443a72815ff5bb374b05"; + name = "libjpeg-turbo-1.4.2.tar.gz"; + md5 = "86b0d5f7507c2e6c21c00219162c3c44"; brief = true; } { @@ -326,8 +321,8 @@ subDir = "libgltf/"; } { - name = "liblangtag-0.5.1.tar.bz2"; - md5 = "36271d3fa0d9dec1632029b6d7aac925"; + name = "liblangtag-0.5.8.tar.bz2"; + md5 = "aa899eff126216dafe721149fbdb511b"; brief = false; } { @@ -366,8 +361,8 @@ brief = true; } { - name = "libmwaw-0.3.5.tar.bz2"; - md5 = "bdc58bbf89aaaf6d29b3516d96830a06"; + name = "libmwaw-0.3.7.tar.bz2"; + md5 = "4a8a53a9d997cf0e2bd208178797dbfb"; brief = true; } { @@ -391,8 +386,8 @@ brief = false; } { - name = "libodfgen-0.1.4.tar.bz2"; - md5 = "8716be5c22ae8353f9aaa380d74840dc"; + name = "libodfgen-0.1.6.tar.bz2"; + md5 = "32572ea48d9021bbd6fa317ddb697abc"; brief = true; } { @@ -411,9 +406,14 @@ brief = true; } { - name = "liborcus-0.7.0.tar.bz2"; - md5 = "7681383be6ce489d84c1c74f4e7f9643"; - brief = false; + name = "liborcus-0.9.2.tar.gz"; + md5 = "e6efcbe50a5fd4d50d513c9a7a4139b0"; + brief = true; +} +{ + name = "owncloud-android-library-0.9.4-no-binary-deps.tar.gz"; + md5 = "593f0aa47bf2efc0efda2d28fae063b2"; + brief = true; } { name = "libpagemaker-0.0.2.tar.bz2"; @@ -426,8 +426,8 @@ brief = false; } { - name = "libpng-1.5.24.tar.gz"; - md5 = "6652e428d1d3fc3c6cb1362159b1cf3b"; + name = "libpng-1.6.19.tar.gz"; + md5 = "3121bdc77c365a87e054b9f859f421fe"; brief = true; } { @@ -445,6 +445,11 @@ md5 = "803a75927f8f241ca78633890c798021"; brief = true; } +{ + name = "Python-3.5.0.tgz"; + md5 = "a56c0c0b45d75a0ec9c6dee933c41c36"; + brief = true; +} { name = "raptor2-2.0.9.tar.gz"; md5 = "4ceb9316488b0ea01acf011023cf7fff"; @@ -461,8 +466,8 @@ brief = false; } { - name = "librevenge-0.0.2.tar.bz2"; - md5 = "2d4183bf17aea1a71842468a71a68c47"; + name = "librevenge-0.0.4.tar.bz2"; + md5 = "5b9ac52ec77d4d19157cf5962ebc0aea"; brief = true; } { @@ -491,23 +496,23 @@ brief = false; } { - name = "libvisio-0.1.1.tar.bz2"; - md5 = "726c1f5be65eb7d649e0d48b63d920e7"; + name = "libvisio-0.1.5.tar.bz2"; + md5 = "cbee198a78b842b2087f32d33c522818"; brief = true; } { - name = "libwpd-0.10.0.tar.bz2"; - md5 = "0773d79a1f240ef9f4f20242b13c5bb7"; + name = "libwpd-0.10.1.tar.bz2"; + md5 = "79b56bcc349264d686a67994506ad199"; brief = true; } { - name = "libwpg-0.3.0.tar.bz2"; - md5 = "17da9770cb8b317b7633f9807b32b71a"; + name = "libwpg-0.3.1.tar.bz2"; + md5 = "dfd066658ec9d2fb2262417039a8a1c3"; brief = true; } { - name = "libwps-0.4.0.tar.bz2"; - md5 = "e9162d2566421d9d71b3ad2377a68fd5"; + name = "libwps-0.4.2.tar.bz2"; + md5 = "8a6c55542ce80203dd6d3b1cba99d4e5"; brief = true; } { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 91454a07b47..26f38aaf965 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1705,14 +1705,14 @@ let gitinspector = callPackage ../applications/version-management/gitinspector { }; gitlab = callPackage ../applications/version-management/gitlab { - ruby = ruby_2_2; + ruby = ruby_2_2_2; }; gitlab-shell = callPackage ../applications/version-management/gitlab-shell { - ruby = ruby_2_2; + ruby = ruby_2_2_2; }; - gitlab-workhorse = callPackage ../applications/version-management/gitlab-workhorse { }; + gitlab-git-http-server = callPackage ../applications/version-management/gitlab-git-http-server { }; git-latexdiff = callPackage ../tools/typesetting/git-latexdiff { }; @@ -12692,6 +12692,7 @@ let libreoffice = callPackage ../applications/office/libreoffice { inherit (perlPackages) ArchiveZip CompressZlib; inherit (gnome) GConf ORBit2 gnome_vfs; + inherit (gnome3) gsettings_desktop_schemas defaultIconTheme; zip = zip.override { enableNLS = false; }; #glm = glm_0954; bluez5 = bluez5_28; From 89f0e251899850109f25391836472ba6892b7d15 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 26 Feb 2016 15:03:53 +0000 Subject: [PATCH 284/291] vim: provide a default vimrc Minimal sane defaults imported from ArchLinux. This is basically `set :nocompatible` with some other small changes. --- pkgs/applications/editors/vim/default.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index a09eb846e50..1249b0b9564 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -1,5 +1,10 @@ -{ stdenv, fetchFromGitHub, ncurses, gettext, pkgconfig - +{ stdenv, fetchFromGitHub, fetchurl, ncurses, gettext, pkgconfig +# default vimrc +, vimrc ? fetchurl { + name = "default-vimrc"; + url = https://projects.archlinux.org/svntogit/packages.git/plain/trunk/archlinux.vim?h=packages/vim?id=68f6d131750aa778807119e03eed70286a17b1cb; + sha256 = "18ifhv5q9prd175q3vxbqf6qyvkk6bc7d2lhqdk0q78i68kv9y0c"; + } # apple frameworks , Carbon, Cocoa }: @@ -25,7 +30,11 @@ stdenv.mkDerivation rec { "--enable-nls" ]; - postInstall = "ln -s $out/bin/vim $out/bin/vi"; + postInstall = '' + ln -s $out/bin/vim $out/bin/vi + mkdir -p $out/share/vim + cp "${vimrc}" $out/share/vim/vimrc + ''; crossAttrs = { configureFlags = [ From 73a9cd8aee12e32b2317ff223217ec27bcc372a0 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 26 Feb 2016 23:12:01 +0100 Subject: [PATCH 285/291] Revert accidental revert of all-packages.nix gitlab changes during revert of revert of libreoffice update --- pkgs/top-level/all-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 26f38aaf965..c8848c922ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1705,14 +1705,14 @@ let gitinspector = callPackage ../applications/version-management/gitinspector { }; gitlab = callPackage ../applications/version-management/gitlab { - ruby = ruby_2_2_2; + ruby = ruby_2_2; }; gitlab-shell = callPackage ../applications/version-management/gitlab-shell { - ruby = ruby_2_2_2; + ruby = ruby_2_2; }; - gitlab-git-http-server = callPackage ../applications/version-management/gitlab-git-http-server { }; + gitlab-workhorse = callPackage ../applications/version-management/gitlab-workhorse { }; git-latexdiff = callPackage ../tools/typesetting/git-latexdiff { }; From dea3279593753f0dee2966cd3f0f1f84be5bfbe2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 26 Feb 2016 18:52:37 +0000 Subject: [PATCH 286/291] lib.maintainers: alphabetize --- lib/maintainers.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 226c41d4806..a512b48c54d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -7,14 +7,14 @@ so it's easy to ping a package @maintainer. */ - aaronschif = "Aaron Schif "; a1russell = "Adam Russell "; + aaronschif = "Aaron Schif "; abaldeau = "Andreas Baldeau "; abbradar = "Nikolay Amiantov "; - adev = "Adrien Devresse "; + adev = "Adrien Devresse "; aespinosa = "Allan Espinosa "; - aforemny = "Alexander Foremny "; aflatter = "Alexander Flatter "; + aforemny = "Alexander Foremny "; aherrmann = "Andreas Herrmann "; ak = "Alexander Kjeldaas "; akaWolf = "Artjom Vejsel "; @@ -46,8 +46,8 @@ bcarrell = "Brandon Carrell "; bcdarwin = "Ben Darwin "; bdimcheff = "Brandon Dimcheff "; - bennofs = "Benno Fünfstück "; benley = "Benjamin Staffin "; + bennofs = "Benno Fünfstück "; berdario = "Dario Bertini "; bergey = "Daniel Bergey "; bjg = "Brian Gough "; @@ -82,9 +82,9 @@ davidak = "David Kleuker "; davidrusu = "David Rusu "; dbohdan = "Danyil Bohdan "; - DerGuteMoritz = "Moritz Heidkamp "; deepfire = "Kosyrev Serge <_deepfire@feelingofgreen.ru>"; demin-dmitriy = "Dmitriy Demin "; + DerGuteMoritz = "Moritz Heidkamp "; desiderius = "Didier J. Devroye "; devhell = "devhell <\"^\"@regexmail.net>"; dezgeg = "Tuomas Tynkkynen "; @@ -135,6 +135,7 @@ gleber = "Gleb Peregud "; globin = "Robin Gloster "; goibhniu = "Cillian de Róiste "; + Gonzih = "Max Gonzih "; gridaphobe = "Eric Seidel "; guibert = "David Guibert "; havvy = "Ryan Scheel "; @@ -191,9 +192,9 @@ lowfatcomputing = "Andreas Wagner "; lsix = "Lancelot SIX "; ludo = "Ludovic Courtès "; + luispedro = "Luis Pedro Coelho "; lukasepple = "Lukas Epple "; lukego = "Luke Gorrie "; - luispedro = "Luis Pedro Coelho "; lw = "Sergey Sofeychuk "; madjar = "Georges Dubus "; magnetophon = "Bart Brouns "; @@ -203,25 +204,25 @@ manveru = "Michael Fellinger "; marcweber = "Marc Weber "; markWot = "Markus Wotringer "; - maurer = "Matthew Maurer "; matejc = "Matej Cotman "; mathnerd314 = "Mathnerd314 "; matthiasbeyer = "Matthias Beyer "; + maurer = "Matthew Maurer "; mbakke = "Marius Bakke "; mbe = "Brandon Edens "; mcmtroffaes = "Matthias C. M. Troffaes "; meditans = "Carlo Nucera "; meisternu = "Matt Miemiec "; - michelk = "Michel Kuhlmann "; michaelpj = "Michael Peyton Jones "; + michelk = "Michel Kuhlmann "; mingchuan = "Ming Chuan "; mirdhyn = "Merlin Gaillard "; - mschristiansen = "Mikkel Christiansen "; modulistic = "Pablo Costa "; mog = "Matthew O'Gorman "; mornfall = "Petr Ročkai "; MP2E = "Cray Elliott "; msackman = "Matthew Sackman "; + mschristiansen = "Mikkel Christiansen "; msteen = "Matthijs Steen "; mtreskin = "Max Treskin "; mudri = "James Wood "; @@ -248,8 +249,9 @@ palo = "Ingolf Wanger "; pashev = "Igor Pashev "; pesterhazy = "Paulus Esterhazy "; - phile314 = "Philipp Hausmann "; philandstuff = "Philip Potter "; + phile314 = "Philipp Hausmann "; + Phlogistique = "Noé Rubinstein "; phreedom = "Evgeny Egorochkin "; phunehehe = "Hoang Xuan Phu "; pierron = "Nicolas B. Pierron "; @@ -258,7 +260,6 @@ pjones = "Peter Jones "; pkmx = "Chih-Mao Chen "; plcplc = "Philip Lykke Carlsen "; - Phlogistique = "Noé Rubinstein "; pmahoney = "Patrick Mahoney "; pmiddend = "Philipp Middendorf "; prikhi = "Pavan Rikhi "; @@ -350,9 +351,9 @@ winden = "Antonio Vargas Gonzalez "; wizeman = "Ricardo M. Correia "; wjlroe = "William Roe "; - womfoo = "Kranium Gikos Mendoza "; wkennington = "William A. Kennington III "; wmertens = "Wout Mertens "; + womfoo = "Kranium Gikos Mendoza "; wscott = "Wayne Scott "; wyvie = "Elijah Rum "; yarr = "Dmitry V. "; @@ -362,5 +363,4 @@ zimbatm = "zimbatm "; zohl = "Al Zohali "; zoomulator = "Kim Simmons "; - Gonzih = "Max Gonzih "; } From 6e5a748224009c5f9ccf2be4f48ee2bf06b67fdc Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 26 Feb 2016 18:53:03 +0000 Subject: [PATCH 287/291] lib.platforms: alphabetize --- lib/platforms.nix | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/lib/platforms.nix b/lib/platforms.nix index 5ac0b528714..b068d080e75 100644 --- a/lib/platforms.nix +++ b/lib/platforms.nix @@ -1,21 +1,24 @@ let lists = import ./lists.nix; in rec { - gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */ - linux = ["i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "mips64el-linux"]; + all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd ++ netbsd ++ illumos; + allBut = platforms: lists.filter (x: !(builtins.elem x platforms)) all; + none = []; + + arm = ["armv5tel-linux" "armv6l-linux" "armv7l-linux" ]; + i686 = ["i686-linux" "i686-freebsd" "i686-netbsd" "i686-cygwin"]; + mips = [ "mips64el-linux" ]; + x86_64 = ["x86_64-linux" "x86_64-darwin" "x86_64-freebsd" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin"]; + + cygwin = ["i686-cygwin" "x86_64-cygwin"]; darwin = ["x86_64-darwin"]; freebsd = ["i686-freebsd" "x86_64-freebsd"]; - openbsd = ["i686-openbsd" "x86_64-openbsd"]; - netbsd = ["i686-netbsd" "x86_64-netbsd"]; - cygwin = ["i686-cygwin" "x86_64-cygwin"]; + gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */ illumos = ["x86_64-solaris"]; + linux = ["i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "mips64el-linux"]; + netbsd = ["i686-netbsd" "x86_64-netbsd"]; + openbsd = ["i686-openbsd" "x86_64-openbsd"]; unix = linux ++ darwin ++ freebsd ++ openbsd ++ netbsd ++ illumos; - all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd ++ netbsd ++ illumos; - none = []; - allBut = platforms: lists.filter (x: !(builtins.elem x platforms)) all; + mesaPlatforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "armv5tel-linux" "armv6l-linux" "armv7l-linux"]; - x86_64 = ["x86_64-linux" "x86_64-darwin" "x86_64-freebsd" "x86_64-openbsd" "x86_64-netbsd" "x86_64-cygwin"]; - i686 = ["i686-linux" "i686-freebsd" "i686-netbsd" "i686-cygwin"]; - arm = ["armv5tel-linux" "armv6l-linux" "armv7l-linux" ]; - mips = [ "mips64el-linux" ]; } From 07b1f78b948e3a3504ea8ac4107a8490d8ff97df Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 26 Feb 2016 18:53:47 +0000 Subject: [PATCH 288/291] lib: alphabetize things --- lib/systems.nix | 6 +++--- lib/tests/release.nix | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/systems.nix b/lib/systems.nix index 25a83e9d14f..92d8bdf892b 100644 --- a/lib/systems.nix +++ b/lib/systems.nix @@ -84,10 +84,10 @@ rec { }; - isDarwin = matchAttrs { kernel = kernels.darwin; }; - isLinux = matchAttrs { kernel = kernels.linux; }; - isi686 = matchAttrs { cpu = cpuTypes.i686; }; is64Bit = matchAttrs { cpu = { bits = 64; }; }; + isDarwin = matchAttrs { kernel = kernels.darwin; }; + isi686 = matchAttrs { cpu = cpuTypes.i686; }; + isLinux = matchAttrs { kernel = kernels.linux; }; # This should revert the job done by config.guess from the gcc compiler. diff --git a/lib/tests/release.nix b/lib/tests/release.nix index e7fb52f6766..093e9bcbf10 100644 --- a/lib/tests/release.nix +++ b/lib/tests/release.nix @@ -11,14 +11,14 @@ stdenv.mkDerivation { buildCommand = '' datadir="${nix}/share" export TEST_ROOT=$(pwd)/test-tmp - export NIX_STORE_DIR=$TEST_ROOT/store + export NIX_BUILD_HOOK= + export NIX_CONF_DIR=$TEST_ROOT/etc + export NIX_DB_DIR=$TEST_ROOT/db export NIX_LOCALSTATE_DIR=$TEST_ROOT/var export NIX_LOG_DIR=$TEST_ROOT/var/log/nix - export NIX_STATE_DIR=$TEST_ROOT/var/nix - export NIX_DB_DIR=$TEST_ROOT/db - export NIX_CONF_DIR=$TEST_ROOT/etc export NIX_MANIFESTS_DIR=$TEST_ROOT/var/nix/manifests - export NIX_BUILD_HOOK= + export NIX_STATE_DIR=$TEST_ROOT/var/nix + export NIX_STORE_DIR=$TEST_ROOT/store export PAGER=cat cacheDir=$TEST_ROOT/binary-cache nix-store --init From 9f57b24b0101b5ebcdc33a92fa9ac80201cd95b0 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 26 Feb 2016 18:54:22 +0000 Subject: [PATCH 289/291] all-packages: alphabetize deprecated packages --- pkgs/top-level/all-packages.nix | 42 ++++++++++++++++----------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 98405112dde..cadcb7a2ff3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16175,11 +16175,13 @@ let aliases = with pkgs; { accounts-qt = qt5.accounts-qt; # added 2015-12-19 adobeReader = adobe-reader; + aircrackng = aircrack-ng; # added 2016-01-14 arduino_core = arduino-core; # added 2015-02-04 asciidocFull = asciidoc-full; # added 2014-06-22 bar = lemonbar; # added 2015-01-16 bar-xft = lemonbar-xft; # added 2015-01-16 bridge_utils = bridge-utils; # added 2015-02-20 + btrfsProgs = btrfs-progs; # added 2016-01-03 buildbotSlave = buildbot-slave; # added 2014-12-09 cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 clangAnalyzer = clang-analyzer; # added 2015-02-20 @@ -16187,12 +16189,13 @@ aliases = with pkgs; { cool-old-term = cool-retro-term; # added 2015-01-31 cupsBjnp = cups-bjnp; # added 2016-01-02 cv = progress; # added 2015-09-06 + dwarf_fortress = dwarf-fortress; # added 2016-01-23 dwbWrapper = dwb; # added 2015-01 enblendenfuse = enblend-enfuse; # 2015-09-30 exfat-utils = exfat; # 2015-09-11 - firefoxWrapper = firefox; # 2015-09 - firefox-wrapper = firefox; # 2016-01 firefox-esr-wrapper = firefox-esr; # 2016-01 + firefox-wrapper = firefox; # 2016-01 + firefoxWrapper = firefox; # 2015-09 fuse_exfat = exfat; # 2015-09-11 grantlee5 = qt5.grantlee; # added 2015-12-19 gupnptools = gupnp-tools; # added 2015-12-19 @@ -16205,53 +16208,50 @@ aliases = with pkgs; { links = links2; # added 2016-01-31 lttngTools = lttng-tools; # added 2014-07-31 lttngUst = lttng-ust; # added 2014-07-31 + manpages = man-pages; # added 2015-12-06 midoriWrapper = midori; # added 2015-01 mlt-qt5 = qt5.mlt; # added 2015-12-19 + mssys = ms-sys; # added 2015-12-13 multipath_tools = multipath-tools; # added 2016-01-21 mupen64plus1_5 = mupen64plus; # added 2016-02-12 ncat = nmap; # added 2016-01-26 nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 + pidginlatexSF = pidginlatex; # added 2014-11-02 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 qtcreator = qt5.qtcreator; # added 2015-12-19 + quake3game = ioquake3; # added 2016-01-14 + quassel_kf5 = kde5.quassel; # added 2015-09-30 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 + quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 - quassel_kf5 = kde5.quassel; # added 2015-09-30 - quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 qwt6 = qt5.qwt; # added 2015-12-19 rdiff_backup = rdiff-backup; # added 2014-11-23 rekonqWrapper = rekonq; # added 2015-01 rssglx = rss-glx; #added 2015-03-25 rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 + samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 + saneBackends = sane-backends; # added 2016-01-02 + saneBackendsGit = sane-backends-git; # added 2016-01-02 + saneFrontends = sane-frontends; # added 2016-01-02 + scim = sc-im; # added 2016-01-22 signon = qt5.signon; # added 2015-12-19 speedtest_cli = speedtest-cli; # added 2015-02-17 sqliteInteractive = sqlite-interactive; # added 2014-12-06 system_config_printer = system-config-printer; # added 2016-01-03 telepathy_qt5 = qt5.telepathy; # added 2015-12-19 + tftp_hpa = tftp-hpa; # added 2015-04-03 + vimbWrapper = vimb; # added 2015-01 + vimprobable2Wrapper = vimprobable2; # added 2015-01 + virtviewer = virt-viewer; # added 2015-12-24 + vorbisTools = vorbis-tools; # added 2016-01-26 x11 = xlibsWrapper; # added 2015-09 xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 xlibs = xorg; # added 2015-09 youtubeDL = youtube-dl; # added 2014-10-26 - vimbWrapper = vimb; # added 2015-01 - vimprobable2Wrapper = vimprobable2; # added 2015-01 - pidginlatexSF = pidginlatex; # added 2014-11-02 - tftp_hpa = tftp-hpa; # added 2015-04-03 - manpages = man-pages; # added 2015-12-06 - mssys = ms-sys; # added 2015-12-13 - virtviewer = virt-viewer; # added 2015-12-24 - saneBackends = sane-backends; # added 2016-01-02 - saneBackendsGit = sane-backends-git; # added 2016-01-02 - saneFrontends = sane-frontends; # added 2016-01-02 - btrfsProgs = btrfs-progs; # added 2016-01-03 - aircrackng = aircrack-ng; # added 2016-01-14 - quake3game = ioquake3; # added 2016-01-14 - scim = sc-im; # added 2016-01-22 - dwarf_fortress = dwarf-fortress; # added 2016-01-23 - samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 - vorbisTools = vorbis-tools; # added 2016-01-26 }; tweakAlias = _n: alias: with lib; From c3ed0a249401b6006768bfd62cbb628121d2209e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 26 Feb 2016 23:09:50 +0100 Subject: [PATCH 290/291] btrfs-progs: 4.4 -> 4.4.1 Bugfix release. Changes: https://btrfs.wiki.kernel.org/index.php/Changelog#By_version_.28btrfs-progs.29 --- pkgs/tools/filesystems/btrfs-progs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix index 536cc26779b..3435a8c1432 100644 --- a/pkgs/tools/filesystems/btrfs-progs/default.nix +++ b/pkgs/tools/filesystems/btrfs-progs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.4"; in +let version = "4.4.1"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "0jssv1ys4nw2jf7mkp58c19yspaa8ybf48fxsrhhp0683mzpr73p"; + sha256 = "1z5882zx9jx02vyg067siws0irsl8pg37myx17hr4imn9ypf6r4r"; }; buildInputs = [ From 6d111b353f9fd0f4a504988a3da57ee42808c201 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 27 Feb 2016 00:17:18 +0100 Subject: [PATCH 291/291] Make explicit that maintainers should use a real name --- lib/maintainers.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index a512b48c54d..3d9fc00ea55 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -1,12 +1,11 @@ -/* -*- coding: utf-8; -*- */ +/* List of NixOS maintainers. The format is: + handle = "Real Name "; + + where is preferred to be your GitHub username (so it's easy + to ping a package @), and is your real name, not + a pseudonym. Please keep the list alphabetically sorted. */ { - /* Add your name and email address here. - Keep the list alphabetically sorted. - Prefer the same attrname as your github username, please, - so it's easy to ping a package @maintainer. - */ - a1russell = "Adam Russell "; aaronschif = "Aaron Schif "; abaldeau = "Andreas Baldeau ";