lol

Merge remote-tracking branch 'upstream/master' into HEAD

+1727 -731
+6
.travis.yml
··· 12 12 script: 13 13 - ./maintainers/scripts/travis-nox-review-pr.sh nixpkgs-verify nixpkgs-manual nixpkgs-tarball nixpkgs-unstable 14 14 - ./maintainers/scripts/travis-nox-review-pr.sh nixos-options nixos-manual 15 + env: 16 + - BUILD_TYPE="Test Nixpkgs evaluation & NixOS manual build" 15 17 - os: linux 16 18 sudo: required 17 19 dist: trusty 18 20 before_script: 19 21 - sudo mount -o remount,exec,size=2G,mode=755 /run/user 20 22 script: ./maintainers/scripts/travis-nox-review-pr.sh nox pr 23 + env: 24 + - BUILD_TYPE="Build affected packages (Linux)" 21 25 - os: osx 22 26 osx_image: xcode7.3 23 27 script: ./maintainers/scripts/travis-nox-review-pr.sh nox pr 28 + env: 29 + - BUILD_TYPE="Build affected packages (macOS)" 24 30 env: 25 31 global: 26 32 - GITHUB_TOKEN=5edaaf1017f691ed34e7f80878f8f5fbd071603f
+2 -1
doc/languages-frameworks/ruby.xml
··· 20 20 $ cat > Gemfile 21 21 source 'https://rubygems.org' 22 22 gem 'sensu' 23 - $ $(nix-build '<nixpkgs>' -A bundix)/bin/bundix --magic 23 + $ $(nix-build '<nixpkgs>' -A bundix --no-out-link)/bin/bundix --magic 24 24 $ cat > default.nix 25 25 { lib, bundlerEnv, ruby }: 26 26 ··· 114 114 script = ./my-script.rb; 115 115 buildCommand = '' 116 116 install -D -m755 $script $out/bin/my-script 117 + patchShebangs $out/bin/my-script 117 118 ''; 118 119 }]]> 119 120 </programlisting>
+1
lib/maintainers.nix
··· 602 602 vdemeester = "Vincent Demeester <vincent@sbr.pm>"; 603 603 veprbl = "Dmitry Kalinkin <veprbl@gmail.com>"; 604 604 vifino = "Adrian Pistol <vifino@tty.sh>"; 605 + vinymeuh = "VinyMeuh <vinymeuh@gmail.com>"; 605 606 viric = "Lluís Batlle i Rossell <viric@viric.name>"; 606 607 vizanto = "Danny Wilson <danny@prime.vc>"; 607 608 vklquevs = "vklquevs <vklquevs@gmail.com>";
+2 -2
maintainers/scripts/travis-nox-review-pr.sh
··· 53 53 nox) 54 54 echo "=== Fetching Nox from binary cache" 55 55 56 - # build nox silently so it's not in the log 57 - nix-build "<nixpkgs>" -A nox -A stdenv 56 + # build nox (+ a basic nix-shell env) silently so it's not in the log 57 + nix-shell -p nox stdenv --command true 58 58 ;; 59 59 60 60 pr)
+36 -3
nixos/modules/services/network-filesystems/ipfs.nix
··· 49 49 description = "The data dir for IPFS"; 50 50 }; 51 51 52 + defaultMode = mkOption { 53 + description = "systemd service that is enabled by default"; 54 + type = types.enum [ "online" "offline" "norouting" ]; 55 + default = "online"; 56 + }; 57 + 52 58 autoMigrate = mkOption { 53 59 type = types.bool; 54 60 default = false; ··· 147 153 systemd.services.ipfs = { 148 154 description = "IPFS Daemon"; 149 155 150 - wantedBy = [ "multi-user.target" ]; 156 + wantedBy = mkIf (cfg.defaultMode == "online") [ "multi-user.target" ]; 157 + 151 158 after = [ "network.target" "local-fs.target" "ipfs-init.service" ]; 152 159 153 - conflicts = [ "ipfs-offline.service" ]; 160 + conflicts = [ "ipfs-offline.service" "ipfs-norouting.service"]; 154 161 wants = [ "ipfs-init.service" ]; 155 162 156 163 environment.IPFS_PATH = cfg.dataDir; ··· 169 176 systemd.services.ipfs-offline = { 170 177 description = "IPFS Daemon (offline mode)"; 171 178 179 + wantedBy = mkIf (cfg.defaultMode == "offline") [ "multi-user.target" ]; 180 + 172 181 after = [ "local-fs.target" "ipfs-init.service" ]; 173 182 174 - conflicts = [ "ipfs.service" ]; 183 + conflicts = [ "ipfs.service" "ipfs-norouting.service"]; 175 184 wants = [ "ipfs-init.service" ]; 176 185 177 186 environment.IPFS_PATH = cfg.dataDir; ··· 186 195 RestartSec = 1; 187 196 }; 188 197 }; 198 + 199 + systemd.services.ipfs-norouting = { 200 + description = "IPFS Daemon (no routing mode)"; 201 + 202 + wantedBy = mkIf (cfg.defaultMode == "norouting") [ "multi-user.target" ]; 203 + 204 + after = [ "local-fs.target" "ipfs-init.service" ]; 205 + 206 + conflicts = [ "ipfs.service" "ipfs-offline.service"]; 207 + wants = [ "ipfs-init.service" ]; 208 + 209 + environment.IPFS_PATH = cfg.dataDir; 210 + 211 + path = [ pkgs.ipfs ]; 212 + 213 + serviceConfig = { 214 + ExecStart = "${ipfs}/bin/ipfs daemon ${ipfsFlags} --routing=none"; 215 + User = cfg.user; 216 + Group = cfg.group; 217 + Restart = "on-failure"; 218 + RestartSec = 1; 219 + }; 220 + }; 221 + 189 222 }; 190 223 }
+1 -1
nixos/modules/virtualisation/vmware-guest.nix
··· 33 33 serviceConfig.ExecStart = "${open-vm-tools}/bin/vmtoolsd"; 34 34 }; 35 35 36 - environment.etc."vmware-tools".source = "${pkgs.open-vm-tools}/etc/vmware-tools/*"; 36 + environment.etc."vmware-tools".source = "${open-vm-tools}/etc/vmware-tools/*"; 37 37 38 38 services.xserver = mkIf (!cfg.headless) { 39 39 videoDrivers = mkOverride 50 [ "vmware" ];
+2 -2
pkgs/applications/audio/google-play-music-desktop-player/default.nix
··· 4 4 }: 5 5 6 6 let 7 - version = "4.3.0"; 7 + version = "4.4.0"; 8 8 9 9 deps = [ 10 10 alsaLib ··· 46 46 47 47 src = fetchurl { 48 48 url = "https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-/releases/download/v${version}/google-play-music-desktop-player_${version}_amd64.deb"; 49 - sha256 = "0mbrfnsnajmpwyqyrjmcv84ywzimjmm2b8faxqiwfcikdgpm9amb"; 49 + sha256 = "01a52rsp0a9k47mm3wqnhnmlnd7fw6xmdrn882msldijjgwsq5cc"; 50 50 }; 51 51 52 52 dontBuild = true;
+6 -6
pkgs/applications/editors/emacs-modes/elpa-generated.nix
··· 822 822 gited = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: 823 823 elpaBuild { 824 824 pname = "gited"; 825 - version = "0.3.2"; 825 + version = "0.3.3"; 826 826 src = fetchurl { 827 - url = "https://elpa.gnu.org/packages/gited-0.3.2.tar"; 828 - sha256 = "1y40zn1w5m2srrqffkpvvzk3j5zzq21smsqychyx2diggn4c0hgi"; 827 + url = "https://elpa.gnu.org/packages/gited-0.3.3.tar"; 828 + sha256 = "0h3ps26sy4wp1s9vpsj066fpqjqacjlprz3kb09macgsg88k2c1p"; 829 829 }; 830 830 packageRequires = [ cl-lib emacs ]; 831 831 meta = { ··· 1446 1446 }) {}; 1447 1447 org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1448 1448 pname = "org"; 1449 - version = "20170807"; 1449 + version = "20170814"; 1450 1450 src = fetchurl { 1451 - url = "https://elpa.gnu.org/packages/org-20170807.tar"; 1452 - sha256 = "185pyc0v4vwzvkygqhpld14lk62ygvfb9ycz609n99m0wqlamwz3"; 1451 + url = "https://elpa.gnu.org/packages/org-20170814.tar"; 1452 + sha256 = "1rk3y4ns5f7f22vv0pg1x5mpn3vpm1123sxpd1ilbzajw3hfgwwn"; 1453 1453 }; 1454 1454 packageRequires = []; 1455 1455 meta = {
+592 -444
pkgs/applications/editors/emacs-modes/melpa-generated.nix
··· 822 822 src = fetchFromGitHub { 823 823 owner = "Andersbakken"; 824 824 repo = "rtags"; 825 - rev = "2f287dc3240acf3b6b17abd26b98d471e2f66638"; 826 - sha256 = "0n29iqnxfm3pnj4w8ihwh3wpfwznspvcmv3vr7kaxfgyc7pimp7m"; 825 + rev = "de1f11e68f6752b3ee6738287d4dadb11bca8f8a"; 826 + sha256 = "1jsx08pgwrz6n47a0zs05m0h6knpp9sgg8lrdwg792a93nrcqc5c"; 827 827 }; 828 828 recipeFile = fetchurl { 829 829 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags"; ··· 1784 1784 packageRequires = []; 1785 1785 meta = { 1786 1786 homepage = "https://melpa.org/#/ample-zen-theme"; 1787 + license = lib.licenses.free; 1788 + }; 1789 + }) {}; 1790 + amx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1791 + melpaBuild { 1792 + pname = "amx"; 1793 + version = "20170810.1842"; 1794 + src = fetchFromGitHub { 1795 + owner = "DarwinAwardWinner"; 1796 + repo = "amx"; 1797 + rev = "7a51b7854036cf6c5ecce8ff09ace2a9595c002f"; 1798 + sha256 = "1x0f5wqyg56xw3byg18wlb16d5m6pn63axvdfiwibyqm9y1ljqm6"; 1799 + }; 1800 + recipeFile = fetchurl { 1801 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c55bfad05343b2b0f3150fd2b4adb07a1768c1c0/recipes/amx"; 1802 + sha256 = "1ikhjvkca0lsb9j719yf6spg6nwc0qaydkd8aax162sis7kp9fap"; 1803 + name = "amx"; 1804 + }; 1805 + packageRequires = [ emacs ]; 1806 + meta = { 1807 + homepage = "https://melpa.org/#/amx"; 1787 1808 license = lib.licenses.free; 1788 1809 }; 1789 1810 }) {}; ··· 4023 4044 avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4024 4045 melpaBuild { 4025 4046 pname = "avy"; 4026 - version = "20170804.1135"; 4047 + version = "20170813.254"; 4027 4048 src = fetchFromGitHub { 4028 4049 owner = "abo-abo"; 4029 4050 repo = "avy"; 4030 - rev = "0ed6408f18bf13840f6f57638f86c3b9dfe4a07a"; 4031 - sha256 = "0pjxjgk39n6spman4grqgw2r82idld7agmc4q2j4f2gp9a0k2bll"; 4051 + rev = "8556274978be5ca2947777dc5e28f5487e069449"; 4052 + sha256 = "0k0yw5vnv0f8xqly9s3ja90gcywnyg2b0pp3yxyk6r7qqns63pkj"; 4032 4053 }; 4033 4054 recipeFile = fetchurl { 4034 4055 url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy"; ··· 4424 4445 bash-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 4425 4446 melpaBuild { 4426 4447 pname = "bash-completion"; 4427 - version = "20170716.629"; 4448 + version = "20170812.623"; 4428 4449 src = fetchFromGitHub { 4429 4450 owner = "szermatt"; 4430 4451 repo = "emacs-bash-completion"; 4431 - rev = "d673bf1ed020cf1378fe3d90e1308f555cb0d1af"; 4432 - sha256 = "18ql2k8zh2znl4lnks5r0k1b5l7x0hl1w9mhkp0anld2p2bv9f14"; 4452 + rev = "8ca917f4287c133e27f02fc7f3eda47e16d9ab12"; 4453 + sha256 = "0bv0a3d6yk880zfql39xvjhpvw8x61qma57r4vgqk0lk0vqjcwq2"; 4433 4454 }; 4434 4455 recipeFile = fetchurl { 4435 4456 url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/bash-completion"; ··· 4672 4693 bbyac = callPackage ({ browse-kill-ring, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4673 4694 melpaBuild { 4674 4695 pname = "bbyac"; 4675 - version = "20170809.444"; 4696 + version = "20170814.222"; 4676 4697 src = fetchFromGitHub { 4677 4698 owner = "baohaojun"; 4678 4699 repo = "bbyac"; 4679 - rev = "3957374b970901ebd4a48509e97a8f78307cf1a5"; 4680 - sha256 = "1psrrw1770v9bb3i8kgc2fjqm8r48fxfys13raww2pcl9fy2j199"; 4700 + rev = "591b4668e80998c4aed85b55623a8f127e77792b"; 4701 + sha256 = "1w3x74ca5gkjqzdj4sxy9syy55p1bw2r00hqw423bvv0jr20m6av"; 4681 4702 }; 4682 4703 recipeFile = fetchurl { 4683 4704 url = "https://raw.githubusercontent.com/milkypostman/melpa/92c10c13a1bd19c8bdbca128852d1c91b76f7002/recipes/bbyac"; ··· 4756 4777 beginend = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4757 4778 melpaBuild { 4758 4779 pname = "beginend"; 4759 - version = "20170801.2308"; 4780 + version = "20170810.624"; 4760 4781 src = fetchFromGitHub { 4761 4782 owner = "DamienCassou"; 4762 4783 repo = "beginend"; 4763 - rev = "f8357cb7516ff9d7f86c1e7306a74f812a72dcb4"; 4764 - sha256 = "09n0810r00nli0jg1z3rcw8hpybsa5jxrh0gcg9n12hz5vyy3a36"; 4784 + rev = "bc608ef0735e5b7e34b320b899fd2b3ce2156d1b"; 4785 + sha256 = "1vb9505lkzkl9ipczs3q0vmf70mzf9l1wk703g9b5aiss81r5w4i"; 4765 4786 }; 4766 4787 recipeFile = fetchurl { 4767 4788 url = "https://raw.githubusercontent.com/milkypostman/melpa/31c1157d4fd9e47a780bbd91075252acdc7899dd/recipes/beginend"; ··· 5094 5115 src = fetchFromGitHub { 5095 5116 owner = "jwiegley"; 5096 5117 repo = "use-package"; 5097 - rev = "7b055494e39efba8b237202b7c97f40aa19e2579"; 5098 - sha256 = "0dzvnz8s60gsrmhfrdr121ji7xw67bmfdwfd8vhffa87wyibrh2n"; 5118 + rev = "360df30683a711c443f87e495ba14cdd125a505d"; 5119 + sha256 = "0nz0gk6gf9060hbyqr5vgzwr620k6l5sk9n6jbhfyrwmcscnmilc"; 5099 5120 }; 5100 5121 recipeFile = fetchurl { 5101 5122 url = "https://raw.githubusercontent.com/milkypostman/melpa/d39d33af6b6c9af9fe49bda319ea05c711a1b16e/recipes/bind-key"; ··· 6382 6403 buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 6383 6404 melpaBuild { 6384 6405 pname = "buttercup"; 6385 - version = "20170729.609"; 6406 + version = "20170812.128"; 6386 6407 src = fetchFromGitHub { 6387 6408 owner = "jorgenschaefer"; 6388 6409 repo = "emacs-buttercup"; 6389 - rev = "ca090405d92d28bc9552ef4d5eab00e3d18a7d3c"; 6390 - sha256 = "1ghpcz22i8dzdnxr8m5cl4g4l4bqc5z2h4f9chwhkc0csxlrvkal"; 6410 + rev = "6ad9565cd7adc195f81bdbbc1115a6bd96802a72"; 6411 + sha256 = "1qlfr09k39wmhr6lngsq1c7gdw4c8smvmn2vj6r2jlhnfav54ig5"; 6391 6412 }; 6392 6413 recipeFile = fetchurl { 6393 6414 url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup"; ··· 7324 7345 cfml-mode = callPackage ({ cftag-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }: 7325 7346 melpaBuild { 7326 7347 pname = "cfml-mode"; 7327 - version = "20170808.1635"; 7348 + version = "20170811.2240"; 7328 7349 src = fetchFromGitHub { 7329 7350 owner = "am2605"; 7330 7351 repo = "cfml-mode"; 7331 - rev = "5f97dd05d73d33975503d52daafb83af41b152ae"; 7332 - sha256 = "04dwxznm723arh9yrn1cvbaj6rnng5a5dk6ic9nw5ndmpqi3fnj8"; 7352 + rev = "395c5a9422f7bda619fd67875a8a2173aaf9c807"; 7353 + sha256 = "1q0hy0baf8vcnnbanpl3za4q5ykxm33fyq2n863jp9v6b6wbc71d"; 7333 7354 }; 7334 7355 recipeFile = fetchurl { 7335 7356 url = "https://raw.githubusercontent.com/milkypostman/melpa/0d28507e1109195004a371fa201d914b995c2b4e/recipes/cfml-mode"; ··· 7345 7366 cftag-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7346 7367 melpaBuild { 7347 7368 pname = "cftag-mode"; 7348 - version = "20170808.1635"; 7369 + version = "20170811.2240"; 7349 7370 src = fetchFromGitHub { 7350 7371 owner = "am2605"; 7351 7372 repo = "cfml-mode"; 7352 - rev = "5f97dd05d73d33975503d52daafb83af41b152ae"; 7353 - sha256 = "04dwxznm723arh9yrn1cvbaj6rnng5a5dk6ic9nw5ndmpqi3fnj8"; 7373 + rev = "395c5a9422f7bda619fd67875a8a2173aaf9c807"; 7374 + sha256 = "1q0hy0baf8vcnnbanpl3za4q5ykxm33fyq2n863jp9v6b6wbc71d"; 7354 7375 }; 7355 7376 recipeFile = fetchurl { 7356 7377 url = "https://raw.githubusercontent.com/milkypostman/melpa/0914d33ebf58847fa3906b1f0d53e97ac335b334/recipes/cftag-mode"; ··· 7368 7389 version = "20170201.347"; 7369 7390 src = fetchsvn { 7370 7391 url = "https://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; 7371 - rev = "12293"; 7392 + rev = "12304"; 7372 7393 sha256 = "0lv9lsh1dnsmida4hhj04ysq48v4m12nj9yq621xn3i6s2qz7s1k"; 7373 7394 }; 7374 7395 recipeFile = fetchurl { ··· 7784 7805 chinese-word-at-point = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7785 7806 melpaBuild { 7786 7807 pname = "chinese-word-at-point"; 7787 - version = "20150618.1838"; 7808 + version = "20170811.241"; 7788 7809 src = fetchFromGitHub { 7789 7810 owner = "xuchunyang"; 7790 7811 repo = "chinese-word-at-point.el"; 7791 - rev = "36a03cce32fe059d2b581cb2e029715c0be81074"; 7792 - sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; 7812 + rev = "8223d7439e005555b86995a005b225ae042f0538"; 7813 + sha256 = "13gva1ld4f9wwb2m4fpk6bd9342qvvmaf5i1r3x3h84czmk0nq1r"; 7793 7814 }; 7794 7815 recipeFile = fetchurl { 7795 7816 url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b7785eca577218feade982c979694389f37ec3/recipes/chinese-word-at-point"; ··· 7912 7933 src = fetchFromGitHub { 7913 7934 owner = "clojure-emacs"; 7914 7935 repo = "cider"; 7915 - rev = "9c3b1863a9e80cce672762fbbfeee98842da2a49"; 7916 - sha256 = "0pn8hrwq5ahzj3gckhczs1q7nblsfhvg6vdd8c5y1ak4hhygp563"; 7936 + rev = "f2b198ed926b9c4deea63cc6a169a748d81c551f"; 7937 + sha256 = "1flxbf19k048as38vr3vjcrf3xz2f41y4wfig1sbb7aiag63ahcm"; 7917 7938 }; 7918 7939 recipeFile = fetchurl { 7919 7940 url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider"; ··· 8184 8205 version = "20170120.137"; 8185 8206 src = fetchsvn { 8186 8207 url = "https://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; 8187 - rev = "310509"; 8188 - sha256 = "0qyhvjb3pf0qp7ag2wav4wxrxfgk1zga0dy4kzw8lm32ajzjjavk"; 8208 + rev = "310836"; 8209 + sha256 = "135p8ag315sh9zwssb6f9widiqh6xrcnry1r1v0ij8r94n7bw6la"; 8189 8210 }; 8190 8211 recipeFile = fetchurl { 8191 8212 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/clang-format"; ··· 8826 8847 src = fetchFromGitHub { 8827 8848 owner = "Kitware"; 8828 8849 repo = "CMake"; 8829 - rev = "92d16be9e6578600a273b338d003eb8908e5ed4e"; 8830 - sha256 = "0qrji1wc2alj5x6saj1kz96x0m50qd4b6yhb1ks7fpdy977r4paa"; 8850 + rev = "ce2750817b768cee6ae119747cdf806401f09332"; 8851 + sha256 = "1kc7308y4y1684dl8nv8s6dy7p5m39dgyyvb3amd6cmfqka9010l"; 8831 8852 }; 8832 8853 recipeFile = fetchurl { 8833 8854 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 9343 9364 color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 9344 9365 melpaBuild { 9345 9366 pname = "color-theme-sanityinc-tomorrow"; 9346 - version = "20170807.1724"; 9367 + version = "20170813.237"; 9347 9368 src = fetchFromGitHub { 9348 9369 owner = "purcell"; 9349 9370 repo = "color-theme-sanityinc-tomorrow"; 9350 - rev = "12da490d95bf2e64b62a2db27b88af6e6c823d6e"; 9351 - sha256 = "1py4y6dgd2vygwyn5zcxfw0hbg4bsd4yi6dyas30649s868s3b3i"; 9371 + rev = "8faa5d0153166e44416d59324dc39e43469d684c"; 9372 + sha256 = "137rn1k1hlaz4k47mrh358k5kpc29n87281sq3sd8gq3rdm8hs7a"; 9352 9373 }; 9353 9374 recipeFile = fetchurl { 9354 9375 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow"; ··· 9530 9551 comment-dwim-2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 9531 9552 melpaBuild { 9532 9553 pname = "comment-dwim-2"; 9533 - version = "20150825.1549"; 9554 + version = "20170809.1354"; 9534 9555 src = fetchFromGitHub { 9535 9556 owner = "remyferre"; 9536 9557 repo = "comment-dwim-2"; 9537 - rev = "8cedecde018b5872195bfead6511af822776a430"; 9538 - sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; 9558 + rev = "8da8aba4cab4a0a1eef3aea2de219227526876e4"; 9559 + sha256 = "1bvgdm52bp39gdcqxb02bnxssmih887jgr82m3c09yfwkpnr2qry"; 9539 9560 }; 9540 9561 recipeFile = fetchurl { 9541 9562 url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac6ac97875117013515a36c9a4452fbd6c0d74c/recipes/comment-dwim-2"; ··· 10395 10416 src = fetchFromGitHub { 10396 10417 owner = "Andersbakken"; 10397 10418 repo = "rtags"; 10398 - rev = "2f287dc3240acf3b6b17abd26b98d471e2f66638"; 10399 - sha256 = "0n29iqnxfm3pnj4w8ihwh3wpfwznspvcmv3vr7kaxfgyc7pimp7m"; 10419 + rev = "de1f11e68f6752b3ee6738287d4dadb11bca8f8a"; 10420 + sha256 = "1jsx08pgwrz6n47a0zs05m0h6knpp9sgg8lrdwg792a93nrcqc5c"; 10400 10421 }; 10401 10422 recipeFile = fetchurl { 10402 10423 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags"; ··· 10490 10511 packageRequires = [ cl-lib company dash dash-functional s tern ]; 10491 10512 meta = { 10492 10513 homepage = "https://melpa.org/#/company-tern"; 10514 + license = lib.licenses.free; 10515 + }; 10516 + }) {}; 10517 + company-terraform = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, terraform-mode }: 10518 + melpaBuild { 10519 + pname = "company-terraform"; 10520 + version = "20170812.722"; 10521 + src = fetchFromGitHub { 10522 + owner = "rafalcieslak"; 10523 + repo = "emacs-company-terraform"; 10524 + rev = "bd97342fa1b3b77bd19a3ff202a5ce5cbead36d4"; 10525 + sha256 = "0yv0hiskdxx2653g5crmb9yq6c8azrvdja56wnhm8i9kvhnhkggh"; 10526 + }; 10527 + recipeFile = fetchurl { 10528 + url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9732da975dcf59d3b311b19e20abbb29c33656/recipes/company-terraform"; 10529 + sha256 = "198ppqn6f7y9bg582z5s4cl9gg1q9ibsr7mmn68b50zvma7ankzh"; 10530 + name = "company-terraform"; 10531 + }; 10532 + packageRequires = [ company emacs terraform-mode ]; 10533 + meta = { 10534 + homepage = "https://melpa.org/#/company-terraform"; 10493 10535 license = lib.licenses.free; 10494 10536 }; 10495 10537 }) {}; ··· 10936 10978 counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: 10937 10979 melpaBuild { 10938 10980 pname = "counsel"; 10939 - version = "20170728.855"; 10981 + version = "20170813.351"; 10940 10982 src = fetchFromGitHub { 10941 10983 owner = "abo-abo"; 10942 10984 repo = "swiper"; 10943 - rev = "9b071a8fb130fe8391d445706711bcc4de2b3998"; 10944 - sha256 = "1yvnw0cf45wgly9ywryv0j93qrfch8adnjprnhf3yg140pavbzpz"; 10985 + rev = "a5cd13b9487007ba6cb3eb64575800ee14589691"; 10986 + sha256 = "00rmcd72hxcsvrkwqsqy9b0jr1rxh3ny3q1fh33zp61s82n1dkn0"; 10945 10987 }; 10946 10988 recipeFile = fetchurl { 10947 10989 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel"; ··· 11041 11083 counsel-projectile = callPackage ({ counsel, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 11042 11084 melpaBuild { 11043 11085 pname = "counsel-projectile"; 11044 - version = "20170216.1426"; 11086 + version = "20170814.341"; 11045 11087 src = fetchFromGitHub { 11046 11088 owner = "ericdanan"; 11047 11089 repo = "counsel-projectile"; 11048 - rev = "aefd25c74718e66f180127c0d273eade887325b0"; 11049 - sha256 = "10d29mpvsav19m9x51w8bjv0r9agxdwsvhk1ql62lj7rcy4256jq"; 11090 + rev = "280ead0e511904c67a9cb1686206efb65ba9c064"; 11091 + sha256 = "1wybb8lh6cbkx9mqhs2nrfjab6p6mfj36c2n6pxps6jsgzb9syi5"; 11050 11092 }; 11051 11093 recipeFile = fetchurl { 11052 11094 url = "https://raw.githubusercontent.com/milkypostman/melpa/389f16f886a385b02f466540f042a16eea8ba792/recipes/counsel-projectile"; ··· 11756 11798 src = fetchFromGitHub { 11757 11799 owner = "mortberg"; 11758 11800 repo = "cubicaltt"; 11759 - rev = "e1e158d2103f0b441ed27ad4b2c0c123d7d710d7"; 11760 - sha256 = "0mbqdnbd6rqhsfdn5rijp9siyp5720s1gj6sadpqp55qi9r1hnpx"; 11801 + rev = "a331f1d355c5d2fc608a59c1cbbf016ea09d6deb"; 11802 + sha256 = "1anwj210gini3p98wy3fj1gbn5ijkbd5vnfc3526h4vppsb4vili"; 11761 11803 }; 11762 11804 recipeFile = fetchurl { 11763 11805 url = "https://raw.githubusercontent.com/milkypostman/melpa/1be42b49c206fc4f0df6fb50fed80b3d9b76710b/recipes/cubicaltt"; ··· 12023 12065 src = fetchFromGitHub { 12024 12066 owner = "cython"; 12025 12067 repo = "cython"; 12026 - rev = "878cc63ece3d9721f36f15aeca74a270d496adf0"; 12027 - sha256 = "094gss26440gikiq7d9bh7rmdy4bhnwq1bjdy7d8rr8d282x6ivm"; 12068 + rev = "91f2ad9f1285311058dfee641616053bc8d64eca"; 12069 + sha256 = "0mb4kcvrwsvflywh5lnq20irmlgzgyqcjsmbmbhs21s3p6l9fh68"; 12028 12070 }; 12029 12071 recipeFile = fetchurl { 12030 12072 url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; ··· 12187 12229 dante = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild, s }: 12188 12230 melpaBuild { 12189 12231 pname = "dante"; 12190 - version = "20170809.19"; 12232 + version = "20170809.1326"; 12191 12233 src = fetchFromGitHub { 12192 12234 owner = "jyp"; 12193 12235 repo = "dante"; 12194 - rev = "57c66e4741505b1f1c8147d413064d05cabfa69e"; 12195 - sha256 = "07g5x1shx6l1wn12jna4qr7ikn1d0whmksvgc5g2rj7p7j021yv9"; 12236 + rev = "ccb16d240504951ccd3fa71c533d3d7a06769562"; 12237 + sha256 = "04gypz2i57zjhpj9khrfj0sr1c4hdf8yqxhlb9rwjknq3a807rr9"; 12196 12238 }; 12197 12239 recipeFile = fetchurl { 12198 12240 url = "https://raw.githubusercontent.com/milkypostman/melpa/5afa8226077cbda4b76f52734cf8e0b745ab88e8/recipes/dante"; ··· 12418 12460 dash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 12419 12461 melpaBuild { 12420 12462 pname = "dash"; 12421 - version = "20170727.212"; 12463 + version = "20170810.137"; 12422 12464 src = fetchFromGitHub { 12423 12465 owner = "magnars"; 12424 12466 repo = "dash.el"; 12425 - rev = "b4faa9397e06206b646f684a603e320f962674d1"; 12426 - sha256 = "0cjh9g8xfzf2rb6dy313rpxwd40yl7n3hdl9a2k8fdwyaww97p6a"; 12467 + rev = "0df0ff1a65d54377381e50c08d88b247db44c3dd"; 12468 + sha256 = "01v75zavzb476cn3c43h9m2wa7vxrsipaja6y1wib07bfbh6i5gm"; 12427 12469 }; 12428 12470 recipeFile = fetchurl { 12429 12471 url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash"; ··· 12464 12506 src = fetchFromGitHub { 12465 12507 owner = "magnars"; 12466 12508 repo = "dash.el"; 12467 - rev = "b4faa9397e06206b646f684a603e320f962674d1"; 12468 - sha256 = "0cjh9g8xfzf2rb6dy313rpxwd40yl7n3hdl9a2k8fdwyaww97p6a"; 12509 + rev = "0df0ff1a65d54377381e50c08d88b247db44c3dd"; 12510 + sha256 = "01v75zavzb476cn3c43h9m2wa7vxrsipaja6y1wib07bfbh6i5gm"; 12469 12511 }; 12470 12512 recipeFile = fetchurl { 12471 12513 url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash-functional"; ··· 12481 12523 dashboard = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, page-break-lines }: 12482 12524 melpaBuild { 12483 12525 pname = "dashboard"; 12484 - version = "20170419.2358"; 12526 + version = "20170810.1025"; 12485 12527 src = fetchFromGitHub { 12486 12528 owner = "rakanalh"; 12487 12529 repo = "emacs-dashboard"; 12488 - rev = "27c559952483301cc92539f68a89a047a0cc69ad"; 12489 - sha256 = "0hl97zc5wvxnpizp29rri7nbpklgx7fvb3idmghckinpgg3gnz2x"; 12530 + rev = "f435fd394edc5ad9cf82065ef73b5821e3f93c58"; 12531 + sha256 = "0f0ipnij69z90qv9lzl6x9id3f6nayrgqxppbcf4gkxh25pi5nkw"; 12490 12532 }; 12491 12533 recipeFile = fetchurl { 12492 12534 url = "https://raw.githubusercontent.com/milkypostman/melpa/e9a79341ccaa82a8c065e71c02fe6aee22007c66/recipes/dashboard"; ··· 14782 14824 docker-compose-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yaml-mode }: 14783 14825 melpaBuild { 14784 14826 pname = "docker-compose-mode"; 14785 - version = "20170808.58"; 14827 + version = "20170812.1551"; 14786 14828 src = fetchFromGitHub { 14787 14829 owner = "meqif"; 14788 14830 repo = "docker-compose-mode"; 14789 - rev = "e4cce60d4e6c6b517cb786c14fbf9ed8a13f530c"; 14790 - sha256 = "0fn8b9dmz911sqqlq2f6vd84qg39j2ban3ixh0wblcxbrd5wli2v"; 14831 + rev = "37d8afb6a72f829fdbc77e76f18587530ff319b4"; 14832 + sha256 = "11283gl19iqm03a5l635qq36fpxlj05j7a6hlnv7v15n3h7d5512"; 14791 14833 }; 14792 14834 recipeFile = fetchurl { 14793 14835 url = "https://raw.githubusercontent.com/milkypostman/melpa/37dd4c1fc11d22598c6faf03ccc860503a68b950/recipes/docker-compose-mode"; ··· 14929 14971 doom-themes = callPackage ({ all-the-icons, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 14930 14972 melpaBuild { 14931 14973 pname = "doom-themes"; 14932 - version = "20170809.734"; 14974 + version = "20170809.1218"; 14933 14975 src = fetchFromGitHub { 14934 14976 owner = "hlissner"; 14935 14977 repo = "emacs-doom-themes"; 14936 - rev = "1cc44b94bfe960de7c5fbae0bd18ef33433f4e00"; 14937 - sha256 = "1axcyfwxxq0c2kixkmzw2lfhfcq97bgfajgawikk58p0hahdhxs9"; 14978 + rev = "af5f703b6b63a7823fe5eec9864222c794a05566"; 14979 + sha256 = "0c6sr2n795cjbvvlgiqb6a6lixbwdag5p4l3iw4knikdp31gk55w"; 14938 14980 }; 14939 14981 recipeFile = fetchurl { 14940 14982 url = "https://raw.githubusercontent.com/milkypostman/melpa/c5084bc2c3fe378af6ff39d65e40649c6359b7b5/recipes/doom-themes"; ··· 15385 15427 version = "20130120.1257"; 15386 15428 src = fetchsvn { 15387 15429 url = "https://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; 15388 - rev = "1804597"; 15430 + rev = "1804990"; 15389 15431 sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; 15390 15432 }; 15391 15433 recipeFile = fetchurl { ··· 15486 15528 dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: 15487 15529 melpaBuild { 15488 15530 pname = "dumb-jump"; 15489 - version = "20170725.1803"; 15531 + version = "20170812.1308"; 15490 15532 src = fetchFromGitHub { 15491 15533 owner = "jacktasia"; 15492 15534 repo = "dumb-jump"; 15493 - rev = "8fae9be1b630c57d5d40586bddda70024006701f"; 15494 - sha256 = "18mq9anbw6l0d13lfbnghbc2iszibi36ds14zd1jvmfq2nbxq3bb"; 15535 + rev = "7b6c37a2e4e5a4c3ad9fbcd89c8eba1b32709b6b"; 15536 + sha256 = "0z4hgg7ya1x89gplk0hx4gi7div1bnqyi18hcj0zmgl9db0z333w"; 15495 15537 }; 15496 15538 recipeFile = fetchurl { 15497 15539 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump"; ··· 15884 15926 easy-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15885 15927 melpaBuild { 15886 15928 pname = "easy-hugo"; 15887 - version = "20170807.501"; 15929 + version = "20170812.1030"; 15888 15930 src = fetchFromGitHub { 15889 15931 owner = "masasam"; 15890 15932 repo = "emacs-easy-hugo"; 15891 - rev = "55bac7a4ede3e14ac38a8dc4249df0a0d3ee6c1c"; 15892 - sha256 = "0j0vi3c6r8jqn4ijmg9xy55yccmjf3mza9ps8iz2s1d8qv8f2y3s"; 15933 + rev = "69c7c0df9c3d8b97b5a779c41460f6fb4f65ac75"; 15934 + sha256 = "1rd7ssa3v3plpglqvpm03dlqfk8yyfwv0f8wqk1kr97yz7zxrp40"; 15893 15935 }; 15894 15936 recipeFile = fetchurl { 15895 15937 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo"; ··· 15968 16010 ebal = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15969 16011 melpaBuild { 15970 16012 pname = "ebal"; 15971 - version = "20170802.113"; 16013 + version = "20170810.631"; 15972 16014 src = fetchFromGitHub { 15973 16015 owner = "mrkkrp"; 15974 16016 repo = "ebal"; 15975 - rev = "7bc6c5a5e504353282848cd2d0f7c73b4bccda83"; 15976 - sha256 = "06pn4srx00l63lkk6kyd68svlyajxkpxd9mpjlvdpgbydzh914xl"; 16017 + rev = "4d19565516785348894c4911e757e33a270b3efd"; 16018 + sha256 = "1wj9h8ypi70az387c7pcrpc59lpf89dkp2q4df2ighxw3l648mb7"; 15977 16019 }; 15978 16020 recipeFile = fetchurl { 15979 16021 url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal"; ··· 16113 16155 ecukes = callPackage ({ ansi, commander, dash, espuds, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 16114 16156 melpaBuild { 16115 16157 pname = "ecukes"; 16116 - version = "20170104.1041"; 16158 + version = "20170810.305"; 16117 16159 src = fetchFromGitHub { 16118 16160 owner = "ecukes"; 16119 16161 repo = "ecukes"; 16120 - rev = "277d25cf8fc9548239599244ab15a2268a55b31b"; 16121 - sha256 = "0jh7l4lhbjd7qxqdi8d8mk5j3qxx70x3jdzpw2xw6szcx67lvd3s"; 16162 + rev = "65f29ff764c3742cc1190371b1ac91f0812535f3"; 16163 + sha256 = "16dypiczds89kpwqj7p29n5qcqpc1d7faci2f4glw1m60gnkgvqq"; 16122 16164 }; 16123 16165 recipeFile = fetchurl { 16124 16166 url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/ecukes"; ··· 16646 16688 eg = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 16647 16689 melpaBuild { 16648 16690 pname = "eg"; 16649 - version = "20170801.617"; 16691 + version = "20170812.407"; 16650 16692 src = fetchFromGitHub { 16651 16693 owner = "davep"; 16652 16694 repo = "eg.el"; 16653 - rev = "03177033ebaecd4e9888cad35951cf4c2addfc88"; 16654 - sha256 = "0jf5fvakq6qvd351ad7lsx8j1xd70ygr582abksp3pgd88sn0r2q"; 16695 + rev = "69ba1defaf636452d46b948d22d8fefc6a937f81"; 16696 + sha256 = "13ckp1jbzhq18fpzq670q2mmzka6wfyh8smxvx6msg72nnn740z5"; 16655 16697 }; 16656 16698 recipeFile = fetchurl { 16657 16699 url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2b6b92b2a71486f260571885bf149ad6afc551/recipes/eg"; ··· 16842 16884 ejc-sql = callPackage ({ auto-complete, cider, clomacs, dash, direx, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, spinner }: 16843 16885 melpaBuild { 16844 16886 pname = "ejc-sql"; 16845 - version = "20170728.539"; 16887 + version = "20170810.221"; 16846 16888 src = fetchFromGitHub { 16847 16889 owner = "kostafey"; 16848 16890 repo = "ejc-sql"; 16849 - rev = "c02d2f14e3e803094c47c5d605196af887a5d80f"; 16850 - sha256 = "140s75sqlvgc7a00ankkb7892yc03vznk6gvilgdcccw76dki9l1"; 16891 + rev = "72adcdfb5d12d49429a1c655f0b02fe657445c4f"; 16892 + sha256 = "1y10xzvmxqj61r0sq3hcd6zq6x2ird1z54draaa0wpafgq8610g9"; 16851 16893 }; 16852 16894 recipeFile = fetchurl { 16853 16895 url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2cd74717269ef7f10362077a91546723a72104/recipes/ejc-sql"; ··· 16892 16934 el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 16893 16935 melpaBuild { 16894 16936 pname = "el-get"; 16895 - version = "20170701.1607"; 16937 + version = "20170813.1436"; 16896 16938 src = fetchFromGitHub { 16897 16939 owner = "dimitri"; 16898 16940 repo = "el-get"; 16899 - rev = "4a1dde57e8a4d4c22ed279bac8253f5f16da9197"; 16900 - sha256 = "19570r8y2cs8y51rmihk5hk5sqavck4bf0zanajnplhxw52h0fji"; 16941 + rev = "99bc5e1814ffa302b8413e1d2adddd8c2113f75e"; 16942 + sha256 = "06swrmpwfm6asiz3ggrbaa3l277g0xl43wiw6s8kzmqfh58r6837"; 16901 16943 }; 16902 16944 recipeFile = fetchurl { 16903 16945 url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get"; ··· 18057 18099 elvish-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18058 18100 melpaBuild { 18059 18101 pname = "elvish-mode"; 18060 - version = "20170808.1511"; 18102 + version = "20170813.1301"; 18061 18103 src = fetchFromGitHub { 18062 18104 owner = "ALSchwalm"; 18063 18105 repo = "elvish-mode"; 18064 - rev = "4511171f2d8ee01d8a7b76c64f552fe5258af79f"; 18065 - sha256 = "0h4b6r3qbvcr1hgs2fiv3csq3iw11n0ilsv7dafn427gbadf0krf"; 18106 + rev = "002f663fe01665b819711655aaaef2b891382d32"; 18107 + sha256 = "1y634zc983yfi53q8sb2pp3h0s6ws3ypyqh3b9iw5jax6ia1h4ys"; 18066 18108 }; 18067 18109 recipeFile = fetchurl { 18068 18110 url = "https://raw.githubusercontent.com/milkypostman/melpa/0fc724072702a565af471f9ae523a1e6e48e3f04/recipes/elvish-mode"; ··· 18791 18833 emr = callPackage ({ cl-lib ? null, clang-format, dash, emacs, fetchFromGitHub, fetchurl, iedit, lib, list-utils, melpaBuild, paredit, popup, projectile, redshank, s }: 18792 18834 melpaBuild { 18793 18835 pname = "emr"; 18794 - version = "20170109.1526"; 18836 + version = "20170811.1057"; 18795 18837 src = fetchFromGitHub { 18796 18838 owner = "chrisbarrett"; 18797 18839 repo = "emacs-refactor"; 18798 - rev = "07e0b41fe080536e8a69301ff1c692f2871bee2f"; 18799 - sha256 = "1ckbc2ziw31cqal9hmc6n6gmncwficzw5rwwdcy4wj7f7w3xkr5z"; 18840 + rev = "d7009b30be810af6bb33c7d99a9b320e2aaeb698"; 18841 + sha256 = "1hx5bv1banrnsb9wrnn57b4wj981qpvnx66px7h304yr95x8bls4"; 18800 18842 }; 18801 18843 recipeFile = fetchurl { 18802 18844 url = "https://raw.githubusercontent.com/milkypostman/melpa/2cd2ebec5bd6465bffed284130e1d534f52169a9/recipes/emr"; ··· 18866 18908 engine-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18867 18909 melpaBuild { 18868 18910 pname = "engine-mode"; 18869 - version = "20170731.1304"; 18911 + version = "20170812.2007"; 18870 18912 src = fetchFromGitHub { 18871 18913 owner = "hrs"; 18872 18914 repo = "engine-mode"; 18873 - rev = "feb41a46e3a4cfcdea405db2bc3ea485776eaa7f"; 18874 - sha256 = "0g5sxrbcbf5bv62szw7m9cfxj0lxa090pxj9s6i0v83ljxnra8sn"; 18915 + rev = "408932727bb723017eaf6338e50cb6d1266b8df8"; 18916 + sha256 = "1wl172ldmdw6gcdzbbf7dln7m55112kq42jzs42xbihm0v1x8xlb"; 18875 18917 }; 18876 18918 recipeFile = fetchurl { 18877 18919 url = "https://raw.githubusercontent.com/milkypostman/melpa/ea1b5dfb6628cf17e77369f25341835aad425f54/recipes/engine-mode"; ··· 18887 18929 enh-ruby-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18888 18930 melpaBuild { 18889 18931 pname = "enh-ruby-mode"; 18890 - version = "20170417.2356"; 18932 + version = "20170810.1602"; 18891 18933 src = fetchFromGitHub { 18892 18934 owner = "zenspider"; 18893 18935 repo = "enhanced-ruby-mode"; 18894 - rev = "71ba417baea4c4e1ac814854638cbeb4b0b383fd"; 18895 - sha256 = "1hbmjbk6xs1r0kqh5ci7jfr6905ipa7xz0kgypqrlg0zap52gayz"; 18936 + rev = "23b00cce325453f644e10ea99ca15e9b115ba562"; 18937 + sha256 = "0k5r6bip15lqd1c5fkjajrmjxjds3n4r48f4rljayf2acbf13mxa"; 18896 18938 }; 18897 18939 recipeFile = fetchurl { 18898 18940 url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode"; ··· 19503 19545 ereader = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, xml-plus }: 19504 19546 melpaBuild { 19505 19547 pname = "ereader"; 19506 - version = "20170529.1408"; 19548 + version = "20170809.2201"; 19507 19549 src = fetchFromGitHub { 19508 19550 owner = "bddean"; 19509 19551 repo = "emacs-ereader"; 19510 - rev = "ef3cd7b9ced044bbd9a3e7cce0c78a970a483288"; 19511 - sha256 = "0n0n7600zwa9z8srafq0gp6d17lkr4pkrsql50rl2qa1fr44zi7z"; 19552 + rev = "f3bbd3f13195f8fba3e3c880aab0e4c60430dcf3"; 19553 + sha256 = "18yqqqxsivnq2m8mxz7ifp0bfmn3q9m11w3abryxg2snh4vb5sy6"; 19512 19554 }; 19513 19555 recipeFile = fetchurl { 19514 19556 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ereader"; ··· 19612 19654 src = fetchFromGitHub { 19613 19655 owner = "erlang"; 19614 19656 repo = "otp"; 19615 - rev = "48e35d38d7625a10395b03edb4337668abaa4905"; 19616 - sha256 = "15cq0gzczvin8xkdxrfj37819gx7hzdrcn5hx41q39cn1qzswxm2"; 19657 + rev = "dac724923328ad0fd085a4d4e397dcbb12e30084"; 19658 + sha256 = "0wc84i939819zbxciqkarfgvdipzhd169cykv1y0l40b21p0jlzx"; 19617 19659 }; 19618 19660 recipeFile = fetchurl { 19619 19661 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; ··· 20136 20178 src = fetchFromGitHub { 20137 20179 owner = "ecukes"; 20138 20180 repo = "espuds"; 20139 - rev = "7fc312184348df55d19d06914605356885674354"; 20140 - sha256 = "1vx1b1pyi2xpfl822mskzvh943rxp9pyr915fnx5pjp58hjwwf3h"; 20181 + rev = "8caef13020527956a56b53171057ca1d0e2fb48b"; 20182 + sha256 = "0nj5llf9s59dagwqj4s87ccwaky9pan3dyw1dcf8m8f41s5zia62"; 20141 20183 }; 20142 20184 recipeFile = fetchurl { 20143 20185 url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/espuds"; ··· 21052 21094 evil-lion = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 21053 21095 melpaBuild { 21054 21096 pname = "evil-lion"; 21055 - version = "20170801.2232"; 21097 + version = "20170810.2314"; 21056 21098 src = fetchFromGitHub { 21057 21099 owner = "edkolev"; 21058 21100 repo = "evil-lion"; 21059 - rev = "6667fe9891350b00596a8a335a68261c1f5ab504"; 21060 - sha256 = "1j3xy7b0b0rf1zznqjgd9gw1369w75h7i0kgmwgngn8xg5w9jl9f"; 21101 + rev = "aaa3874ad54c31b4322ac5bbc63e331498b11d61"; 21102 + sha256 = "1aq3ip93sxk05gfgh2zw6zckmkir0viqaqz674fcmsd2rc2051zn"; 21061 21103 }; 21062 21104 recipeFile = fetchurl { 21063 21105 url = "https://raw.githubusercontent.com/milkypostman/melpa/8a7a0691775afec6d2c7be3d6739b55bd1d2053d/recipes/evil-lion"; ··· 21933 21975 exotica-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 21934 21976 melpaBuild { 21935 21977 pname = "exotica-theme"; 21936 - version = "20170809.558"; 21978 + version = "20170814.438"; 21937 21979 src = fetchFromGitHub { 21938 21980 owner = "jbharat"; 21939 21981 repo = "exotica-theme"; 21940 - rev = "fbb34138ec48d505ac64e8141590f87777d82c2b"; 21941 - sha256 = "03k6vj4ckgccfrl906v0fpwxvp5gzkcsd3iy8k7h11jdbyhlbb3m"; 21982 + rev = "c099e700e87638fa8cc45aa35e46952857ccf91d"; 21983 + sha256 = "08i0d5f011wxvkd4njjabi986cjvf7c82i84jwkpdhv1gx67dmnb"; 21942 21984 }; 21943 21985 recipeFile = fetchurl { 21944 21986 url = "https://raw.githubusercontent.com/milkypostman/melpa/9182f92dd62e2f1775a76699a6c8f9c3e71e9030/recipes/exotica-theme"; ··· 22140 22182 license = lib.licenses.free; 22141 22183 }; 22142 22184 }) {}; 22143 - ez-query-replace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 22185 + ez-query-replace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 22144 22186 melpaBuild { 22145 22187 pname = "ez-query-replace"; 22146 - version = "20170311.139"; 22188 + version = "20170814.621"; 22147 22189 src = fetchFromGitHub { 22148 22190 owner = "Wilfred"; 22149 22191 repo = "ez-query-replace.el"; 22150 - rev = "66381226da00cc4a87c7d5962aaabbc0eb325cb7"; 22151 - sha256 = "1p5qg5pz87ym1gd0jmakkpkskmffl69694pkxbhhfxp10pyshzmc"; 22192 + rev = "f5dbd2d3e5e62e6b7e7cc1a98fc4d0cd411e5afa"; 22193 + sha256 = "14mikpxrsmjwdpya45cf47v2gjwxmql10xjk907x27iqqxmfif74"; 22152 22194 }; 22153 22195 recipeFile = fetchurl { 22154 22196 url = "https://raw.githubusercontent.com/milkypostman/melpa/c40808c7687ace84e4c59bf8c25332c94b6fdd76/recipes/ez-query-replace"; 22155 22197 sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx"; 22156 22198 name = "ez-query-replace"; 22157 22199 }; 22158 - packageRequires = [ dash ]; 22200 + packageRequires = [ dash s ]; 22159 22201 meta = { 22160 22202 homepage = "https://melpa.org/#/ez-query-replace"; 22161 22203 license = lib.licenses.free; ··· 22578 22620 fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 22579 22621 melpaBuild { 22580 22622 pname = "fcitx"; 22581 - version = "20170615.1143"; 22623 + version = "20170812.1131"; 22582 22624 src = fetchFromGitHub { 22583 22625 owner = "cute-jumper"; 22584 22626 repo = "fcitx.el"; 22585 - rev = "cddd216402c9a9b4228b5f82afa1bd637b2e0c37"; 22586 - sha256 = "0kvn9ikxnv9ahz0cqal3drxv95slwbf758sp37irih6fqh3ybgbl"; 22627 + rev = "6d552ab44234ed78ce9a50f2412f56197266bc9f"; 22628 + sha256 = "08l859rw1lwj6hdxrlxqlxf1cfxv8yv9h1jsgs5zfis3hp7nq39j"; 22587 22629 }; 22588 22630 recipeFile = fetchurl { 22589 22631 url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx"; ··· 24670 24712 flycheck-popup-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup }: 24671 24713 melpaBuild { 24672 24714 pname = "flycheck-popup-tip"; 24673 - version = "20170730.651"; 24715 + version = "20170812.1651"; 24674 24716 src = fetchFromGitHub { 24675 24717 owner = "flycheck"; 24676 24718 repo = "flycheck-popup-tip"; 24677 - rev = "6a857d43a1fa136e5b6715421d1b44a72170be0c"; 24678 - sha256 = "1hglfhf1vrvrp2vf1p4b226mpab7m2napjw6w0qlw3dj72787pqw"; 24719 + rev = "ef86aad907f27ca076859d8d9416f4f7727619c6"; 24720 + sha256 = "1bi6f9nm4bylsbjv4qnkar35s6xzdf2cc2cxi3g691p9527apdz6"; 24679 24721 }; 24680 24722 recipeFile = fetchurl { 24681 24723 url = "https://raw.githubusercontent.com/milkypostman/melpa/9b2269ee9532bb092756ae0c0693cb44b73820e8/recipes/flycheck-popup-tip"; ··· 24733 24775 flycheck-pycheckers = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 24734 24776 melpaBuild { 24735 24777 pname = "flycheck-pycheckers"; 24736 - version = "20170728.1103"; 24778 + version = "20170810.1143"; 24737 24779 src = fetchFromGitHub { 24738 24780 owner = "msherry"; 24739 24781 repo = "flycheck-pycheckers"; 24740 - rev = "2fd53300525deb3c5ac903cc4cb89e3e5cce7b4e"; 24741 - sha256 = "1nw6vifmpncnkhdbnn95khncdwjahri2l862c97q4ni5ikms7i7q"; 24782 + rev = "220c551df591792d08fc9d149ab3329171743cb9"; 24783 + sha256 = "0q1sz28nlnamcm4l587q94b7cyak9d4wpgpr33a05m9lw4a6z74i"; 24742 24784 }; 24743 24785 recipeFile = fetchurl { 24744 24786 url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers"; ··· 24800 24842 src = fetchFromGitHub { 24801 24843 owner = "Andersbakken"; 24802 24844 repo = "rtags"; 24803 - rev = "2f287dc3240acf3b6b17abd26b98d471e2f66638"; 24804 - sha256 = "0n29iqnxfm3pnj4w8ihwh3wpfwznspvcmv3vr7kaxfgyc7pimp7m"; 24845 + rev = "de1f11e68f6752b3ee6738287d4dadb11bca8f8a"; 24846 + sha256 = "1jsx08pgwrz6n47a0zs05m0h6knpp9sgg8lrdwg792a93nrcqc5c"; 24805 24847 }; 24806 24848 recipeFile = fetchurl { 24807 24849 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags"; ··· 26603 26645 fstar-mode = callPackage ({ company, company-quickhelp, dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, quick-peek, yasnippet }: 26604 26646 melpaBuild { 26605 26647 pname = "fstar-mode"; 26606 - version = "20170809.146"; 26648 + version = "20170809.1039"; 26607 26649 src = fetchFromGitHub { 26608 26650 owner = "FStarLang"; 26609 26651 repo = "fstar-mode.el"; 26610 - rev = "6e21d45c29dd03e6e6ec5d43f95b7a81832c3ca9"; 26611 - sha256 = "0fzc9b87qlp5phr9gxylnfsi2749zgcs5aqabqdc3fpqqhb7hhy1"; 26652 + rev = "e4742d609b4da715bc23f3271cb3393e15c22291"; 26653 + sha256 = "1rp67kpy9d5dkap80b2613kmplh3bbm0s46c4x8pdh8fy42vh2jv"; 26612 26654 }; 26613 26655 recipeFile = fetchurl { 26614 26656 url = "https://raw.githubusercontent.com/milkypostman/melpa/c58ace42342c3d3ff5a56d86a16206f2ecb45f77/recipes/fstar-mode"; ··· 26716 26758 function-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: 26717 26759 melpaBuild { 26718 26760 pname = "function-args"; 26719 - version = "20170809.1011"; 26761 + version = "20170813.455"; 26720 26762 src = fetchFromGitHub { 26721 26763 owner = "abo-abo"; 26722 26764 repo = "function-args"; 26723 - rev = "00a73c8ca4e6fd1eb5ea84e6fc9b277694713ba5"; 26724 - sha256 = "1higgnmrpp307vl9zb4qd40dcch9mwqmln1wv6v0a2kvzhd8nd21"; 26765 + rev = "e803dde6f2f96c4513e6d91af8d1aa859e584c57"; 26766 + sha256 = "1bqkwn2nl8dgky73jxhhll26skiyalwl07337qdl7m8gjc25kcy8"; 26725 26767 }; 26726 26768 recipeFile = fetchurl { 26727 26769 url = "https://raw.githubusercontent.com/milkypostman/melpa/80688d85a34b77783140ad2b8a47ef60c762b084/recipes/function-args"; ··· 26762 26804 src = fetchFromGitHub { 26763 26805 owner = "HIPERFIT"; 26764 26806 repo = "futhark"; 26765 - rev = "0a1ca0538cc8a72f6065140b893001d5ec9d04b3"; 26766 - sha256 = "0i4rm8zkfa0d3arfwvhwbzxkbflhccj5202rqmgmjvkg18skl5l5"; 26807 + rev = "d49c88c9f71f2b3b20779c223d6c0f7e6e0134c8"; 26808 + sha256 = "091p3anl6nqjmy9rlizrg1vmrd2n72gmar6g2hhiw611231z135d"; 26767 26809 }; 26768 26810 recipeFile = fetchurl { 26769 26811 url = "https://raw.githubusercontent.com/milkypostman/melpa/0607f01aad7e77d53595ad8db95d32acfd29b148/recipes/futhark-mode"; ··· 27617 27659 src = fetchFromGitHub { 27618 27660 owner = "magit"; 27619 27661 repo = "magit"; 27620 - rev = "f7c8924ca85fa0671c3c4c54d5e1cbe6106f3e8d"; 27621 - sha256 = "02sayw24f2qc8lg8dm119zprrfn17pc0msq15vj9m9gxwilwnxrd"; 27662 + rev = "5c05bdb9de39872649821ea3c70f3489741bcc66"; 27663 + sha256 = "0g6578fpycfg7f5v3a7q6vaqgvcnxyf90yzg9mkjgis7b3im8jb7"; 27622 27664 }; 27623 27665 recipeFile = fetchurl { 27624 27666 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit"; ··· 29270 29312 google-this = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29271 29313 melpaBuild { 29272 29314 pname = "google-this"; 29273 - version = "20160710.1720"; 29315 + version = "20170810.515"; 29274 29316 src = fetchFromGitHub { 29275 29317 owner = "Malabarba"; 29276 29318 repo = "emacs-google-this"; 29277 - rev = "4713c93d4c45458a7320b5e2af9b1edd43fd5e0b"; 29278 - sha256 = "0q8d10ihvqvnbp7gn19ixgi37cvpgyc5a8ls9nkr6w7valc4c0rz"; 29319 + rev = "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84"; 29320 + sha256 = "1dbra309w8awmi0g0pp7r2dm9nwrj2j9lpl7md8wa89rnzazwahl"; 29279 29321 }; 29280 29322 recipeFile = fetchurl { 29281 29323 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/google-this"; ··· 29375 29417 gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: 29376 29418 melpaBuild { 29377 29419 pname = "gotest"; 29378 - version = "20170522.53"; 29420 + version = "20170811.0"; 29379 29421 src = fetchFromGitHub { 29380 29422 owner = "nlamirault"; 29381 29423 repo = "gotest.el"; 29382 - rev = "c15bdcb78a46167e7a3fbaf5f71cbeddf2f13b78"; 29383 - sha256 = "0pzzcjc41k3by534ii11jxfind4fq1cv3pqa3scisv4pvyj6lha6"; 29424 + rev = "22f54d6c00c48f38a04a74990db501946405c1a8"; 29425 + sha256 = "1p69i0w7gbc3fmgwx5mhb30qp7zfgh7sfk7jdvd7270k0nixs7qr"; 29384 29426 }; 29385 29427 recipeFile = fetchurl { 29386 29428 url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/gotest"; ··· 29608 29650 src = fetchFromGitHub { 29609 29651 owner = "Groovy-Emacs-Modes"; 29610 29652 repo = "groovy-emacs-modes"; 29611 - rev = "5a80ee1f6d026d6bf89320fcbe2b47f253c905a7"; 29612 - sha256 = "1312sfr0nyl8bd2rjjm27l7x2hx9mby70bay0zyhyqznj12hlwpq"; 29653 + rev = "606d6216c291c96f948e04ca481962c326771cf7"; 29654 + sha256 = "0hkxdasgj8jn5dy7yjk3grgvxldic1azclnip24kyrmn36471n6j"; 29613 29655 }; 29614 29656 recipeFile = fetchurl { 29615 29657 url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode"; ··· 29664 29706 license = lib.licenses.free; 29665 29707 }; 29666 29708 }) {}; 29667 - graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: 29709 + graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-completing-read-plus, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: 29668 29710 melpaBuild { 29669 29711 pname = "graphene"; 29670 - version = "20161120.938"; 29712 + version = "20170810.640"; 29671 29713 src = fetchFromGitHub { 29672 29714 owner = "rdallasgray"; 29673 29715 repo = "graphene"; 29674 - rev = "bf77248e49b116a241bd5856df918ed63f89e195"; 29675 - sha256 = "1rn498l25vjy1wg45iskry8hh2afvd09cmg8dxppphjislw9pwch"; 29716 + rev = "89bbdaa465b3440f46f588664eada0f091ed6bfe"; 29717 + sha256 = "1xrk26v9d3njydwab7drqg4p3qd8rw2diicfr7bfwd0d21bs5ykz"; 29676 29718 }; 29677 29719 recipeFile = fetchurl { 29678 29720 url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene"; ··· 29685 29727 exec-path-from-shell 29686 29728 flycheck 29687 29729 graphene-meta-theme 29688 - ido-ubiquitous 29730 + ido-completing-read-plus 29689 29731 ppd-sr-speedbar 29690 29732 smartparens 29691 29733 smex ··· 29968 30010 groovy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 29969 30011 melpaBuild { 29970 30012 pname = "groovy-mode"; 29971 - version = "20170808.1211"; 30013 + version = "20170810.919"; 29972 30014 src = fetchFromGitHub { 29973 30015 owner = "Groovy-Emacs-Modes"; 29974 30016 repo = "groovy-emacs-modes"; 29975 - rev = "5a80ee1f6d026d6bf89320fcbe2b47f253c905a7"; 29976 - sha256 = "1312sfr0nyl8bd2rjjm27l7x2hx9mby70bay0zyhyqznj12hlwpq"; 30017 + rev = "606d6216c291c96f948e04ca481962c326771cf7"; 30018 + sha256 = "0hkxdasgj8jn5dy7yjk3grgvxldic1azclnip24kyrmn36471n6j"; 29977 30019 }; 29978 30020 recipeFile = fetchurl { 29979 30021 url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode"; ··· 30682 30724 haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 30683 30725 melpaBuild { 30684 30726 pname = "haskell-mode"; 30685 - version = "20170731.1629"; 30727 + version = "20170810.1519"; 30686 30728 src = fetchFromGitHub { 30687 30729 owner = "haskell"; 30688 30730 repo = "haskell-mode"; 30689 - rev = "518701c157468659e393e40aed2bdc37bcb408db"; 30690 - sha256 = "0646bk3ky0gv32dqiy7m40va82fcc5jpsbli7rz06zgg4nvh77h6"; 30731 + rev = "783ea06cab61e16b86bb434d3c8a61076f564bb7"; 30732 + sha256 = "0ypb3qilcnphxhsaskib5h8n4m2ivwka116jnjpdjrgwh838aakp"; 30691 30733 }; 30692 30734 recipeFile = fetchurl { 30693 30735 url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode"; ··· 30759 30801 packageRequires = [ avy-menu emacs ]; 30760 30802 meta = { 30761 30803 homepage = "https://melpa.org/#/hasky-extensions"; 30804 + license = lib.licenses.free; 30805 + }; 30806 + }) {}; 30807 + hasky-stack = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: 30808 + melpaBuild { 30809 + pname = "hasky-stack"; 30810 + version = "20170814.417"; 30811 + src = fetchFromGitHub { 30812 + owner = "hasky-mode"; 30813 + repo = "hasky-stack"; 30814 + rev = "bbbe58bf11f0188dfc71d3786a1bef73b9650fba"; 30815 + sha256 = "0x31qljrp83r3c34j0npjw49sy491la894x8g8vh5gbih8xd72jm"; 30816 + }; 30817 + recipeFile = fetchurl { 30818 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c3faf544872478c3bccf2fe7dc51d406031e4d80/recipes/hasky-stack"; 30819 + sha256 = "08ds0v5p829s47lbhibswnbn1aqfnwf6xx7p5bc5062wxdvqahw8"; 30820 + name = "hasky-stack"; 30821 + }; 30822 + packageRequires = [ emacs f magit-popup ]; 30823 + meta = { 30824 + homepage = "https://melpa.org/#/hasky-stack"; 30762 30825 license = lib.licenses.free; 30763 30826 }; 30764 30827 }) {}; ··· 30951 31014 helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: 30952 31015 melpaBuild { 30953 31016 pname = "helm"; 30954 - version = "20170809.345"; 31017 + version = "20170814.46"; 30955 31018 src = fetchFromGitHub { 30956 31019 owner = "emacs-helm"; 30957 31020 repo = "helm"; 30958 - rev = "35149d27981f0d617ee84d05f7e91ced22b43302"; 30959 - sha256 = "0kcdfh9hwkyirfb77hls8xyg1xx5vxxiid921zlxyd42mq2bq0rh"; 31021 + rev = "80dada6a077b29e2f05371b320ac4fcf7ab43b65"; 31022 + sha256 = "10902xi9l4564qm4qv5vnw06xqgwl30i3cs9p6amlwcfcppwfmd4"; 30960 31023 }; 30961 31024 recipeFile = fetchurl { 30962 31025 url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; ··· 31329 31392 helm-charinfo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 31330 31393 melpaBuild { 31331 31394 pname = "helm-charinfo"; 31332 - version = "20170611.1746"; 31395 + version = "20170810.531"; 31333 31396 src = fetchFromGitHub { 31334 31397 owner = "mandoku"; 31335 31398 repo = "helm-charinfo"; 31336 - rev = "a4902a90bd9f012468ad8186e2548c7814847613"; 31337 - sha256 = "024pqnw87whwa7zpld8bcz1izaymqk0vajhbf9m173hlfw6x7wmp"; 31399 + rev = "91798a49dc115342a7e01e48b264e9a0bf5ea414"; 31400 + sha256 = "1ifj6zz5k7qjalg06fvfc7rdmlha0n9hll2hiq7mrcj7lfac6jga"; 31338 31401 }; 31339 31402 recipeFile = fetchurl { 31340 31403 url = "https://raw.githubusercontent.com/milkypostman/melpa/6667774bba495c45703ef75261f1f14d89684e3a/recipes/helm-charinfo"; ··· 31560 31623 helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 31561 31624 melpaBuild { 31562 31625 pname = "helm-core"; 31563 - version = "20170806.2108"; 31626 + version = "20170810.2231"; 31564 31627 src = fetchFromGitHub { 31565 31628 owner = "emacs-helm"; 31566 31629 repo = "helm"; 31567 - rev = "35149d27981f0d617ee84d05f7e91ced22b43302"; 31568 - sha256 = "0kcdfh9hwkyirfb77hls8xyg1xx5vxxiid921zlxyd42mq2bq0rh"; 31630 + rev = "80dada6a077b29e2f05371b320ac4fcf7ab43b65"; 31631 + sha256 = "10902xi9l4564qm4qv5vnw06xqgwl30i3cs9p6amlwcfcppwfmd4"; 31569 31632 }; 31570 31633 recipeFile = fetchurl { 31571 31634 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; ··· 32970 33033 src = fetchFromGitHub { 32971 33034 owner = "alphapapa"; 32972 33035 repo = "helm-org-rifle"; 32973 - rev = "0bba7cdced06a93eefc9b04d05fdbddf08ad377f"; 32974 - sha256 = "0r9l4q7h5zk8i5f5hac54pvlb0y0nyzqy996lv6r8y2a734angay"; 33036 + rev = "1db8ee9b6c1f8341612216e715b048ab225dedec"; 33037 + sha256 = "0z9pcrb4xazv2a2m2kxy26kw0ai1lfnj53y967y40mrkbmsrsa6q"; 32975 33038 }; 32976 33039 recipeFile = fetchurl { 32977 33040 url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle"; ··· 33470 33533 helm-rtags = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, rtags }: 33471 33534 melpaBuild { 33472 33535 pname = "helm-rtags"; 33473 - version = "20170730.1306"; 33536 + version = "20170812.2111"; 33474 33537 src = fetchFromGitHub { 33475 33538 owner = "Andersbakken"; 33476 33539 repo = "rtags"; 33477 - rev = "2f287dc3240acf3b6b17abd26b98d471e2f66638"; 33478 - sha256 = "0n29iqnxfm3pnj4w8ihwh3wpfwznspvcmv3vr7kaxfgyc7pimp7m"; 33540 + rev = "de1f11e68f6752b3ee6738287d4dadb11bca8f8a"; 33541 + sha256 = "1jsx08pgwrz6n47a0zs05m0h6knpp9sgg8lrdwg792a93nrcqc5c"; 33479 33542 }; 33480 33543 recipeFile = fetchurl { 33481 33544 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags"; ··· 34517 34580 license = lib.licenses.free; 34518 34581 }; 34519 34582 }) {}; 34583 + highlight-function-calls = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 34584 + melpaBuild { 34585 + pname = "highlight-function-calls"; 34586 + version = "20170812.1913"; 34587 + src = fetchFromGitHub { 34588 + owner = "alphapapa"; 34589 + repo = "highlight-function-calls"; 34590 + rev = "bbbbb7fdbcd853163a4bc821c56603164d35792e"; 34591 + sha256 = "1a73v78w4ms2lghjai1dvk1kf8jgx7ab87vqk94x4a2xyrfhbf3x"; 34592 + }; 34593 + recipeFile = fetchurl { 34594 + url = "https://raw.githubusercontent.com/milkypostman/melpa/2d1eed3f9af218d21ea8db37ee91888e23e59bd5/recipes/highlight-function-calls"; 34595 + sha256 = "0wmxijkhx74da3ygnvzsdvbh2iii4f7424wmm01b5skbr7qva690"; 34596 + name = "highlight-function-calls"; 34597 + }; 34598 + packageRequires = [ emacs ]; 34599 + meta = { 34600 + homepage = "https://melpa.org/#/highlight-function-calls"; 34601 + license = lib.licenses.free; 34602 + }; 34603 + }) {}; 34520 34604 highlight-indent-guides = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 34521 34605 melpaBuild { 34522 34606 pname = "highlight-indent-guides"; ··· 34811 34895 himp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, vimish-fold }: 34812 34896 melpaBuild { 34813 34897 pname = "himp"; 34814 - version = "20170808.1022"; 34898 + version = "20170810.1117"; 34815 34899 src = fetchFromGitHub { 34816 34900 owner = "mkcms"; 34817 34901 repo = "himp"; 34818 - rev = "dcc116b2509a74a3fab41be1c095e1f6fffc7923"; 34819 - sha256 = "00s4bb19jq48bldlcharym4757mbj0z5rag086p7mfhxa3wazmrm"; 34902 + rev = "687ed90cbb1566fe09f7fb917c131c9f906f521d"; 34903 + sha256 = "08dblmc68q233glpc7chv79a06rwly5nhkzfp3rzjvfphvnlihmq"; 34820 34904 }; 34821 34905 recipeFile = fetchurl { 34822 34906 url = "https://raw.githubusercontent.com/milkypostman/melpa/51b31fb1fa7052d16d659313d249eef01ca3ee88/recipes/himp"; ··· 35101 35185 hl-sentence = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 35102 35186 melpaBuild { 35103 35187 pname = "hl-sentence"; 35104 - version = "20140802.920"; 35188 + version = "20170812.646"; 35105 35189 src = fetchFromGitHub { 35106 35190 owner = "milkypostman"; 35107 35191 repo = "hl-sentence"; 35108 - rev = "45e3cc525ba636c0f22baa6d0938d9808622bc89"; 35109 - sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs"; 35192 + rev = "1235ec94af083c3e43559ce0cac6db485aa938e0"; 35193 + sha256 = "1b58d79pkakfz2l31lg8nfkb1dfzrnbw4p5cs8mlxpfa5j4z13af"; 35110 35194 }; 35111 35195 recipeFile = fetchurl { 35112 35196 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hl-sentence"; ··· 35832 35916 hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 35833 35917 melpaBuild { 35834 35918 pname = "hydra"; 35835 - version = "20170803.1319"; 35919 + version = "20170813.1058"; 35836 35920 src = fetchFromGitHub { 35837 35921 owner = "abo-abo"; 35838 35922 repo = "hydra"; 35839 - rev = "ab67b29835ed550427b75e94784b63d98a00c0e0"; 35840 - sha256 = "0mlzgql5xrjgbk9f269jnf3kxvymlcwnlvak4dfk2gwvi56phjzf"; 35923 + rev = "b4fb3298cd071d56aa9a5fc6be51ae9871ad451e"; 35924 + sha256 = "127l60rm1dhq1l5cwsnc5i2vh7xfzdagwlhy4wmjm22xs1ms6kn2"; 35841 35925 }; 35842 35926 recipeFile = fetchurl { 35843 35927 url = "https://raw.githubusercontent.com/milkypostman/melpa/a4375d8ae519290fd5018626b075c226016f951d/recipes/hydra"; ··· 36018 36102 }) {}; 36019 36103 icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 36020 36104 pname = "icicles"; 36021 - version = "20170726.849"; 36105 + version = "20170811.1012"; 36022 36106 src = fetchurl { 36023 36107 url = "https://www.emacswiki.org/emacs/download/icicles.el?revision=1089"; 36024 36108 sha256 = "10w1lghh9jqxxm5cszi2qyk24vnvazfywmyyz1v7zf6cyiwbndrz"; ··· 36222 36306 license = lib.licenses.free; 36223 36307 }; 36224 36308 }) {}; 36225 - ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 36309 + ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, memoize, s }: 36226 36310 melpaBuild { 36227 36311 pname = "ido-completing-read-plus"; 36228 - version = "20170807.1445"; 36312 + version = "20170813.2325"; 36229 36313 src = fetchFromGitHub { 36230 36314 owner = "DarwinAwardWinner"; 36231 36315 repo = "ido-completing-read-plus"; 36232 - rev = "1a1f695eb8e7d4ae2035e506ea3ff5bd4e2d0533"; 36233 - sha256 = "15m8x3dp9m0brpap4l9hsbc47s4fgax3lppxz5v6rcwm625s0ac9"; 36316 + rev = "e7194753330fb5da295fbb5d1e819b9b4fd926b2"; 36317 + sha256 = "1ll19xlchf4br27yxr2f8jb3q5d0cypjjjj852d8g8pgs565amaw"; 36234 36318 }; 36235 36319 recipeFile = fetchurl { 36236 36320 url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-completing-read+"; 36237 36321 sha256 = "0rxdv3cd0bg0p8c1bck5vichdq941dki934k23qf5p6cfgw8gw4z"; 36238 36322 name = "ido-completing-read-plus"; 36239 36323 }; 36240 - packageRequires = [ cl-lib emacs s ]; 36324 + packageRequires = [ cl-lib emacs memoize s ]; 36241 36325 meta = { 36242 36326 homepage = "https://melpa.org/#/ido-completing-read+"; 36243 36327 license = lib.licenses.free; ··· 36540 36624 ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: 36541 36625 melpaBuild { 36542 36626 pname = "ido-ubiquitous"; 36543 - version = "20170807.1445"; 36627 + version = "20170813.946"; 36544 36628 src = fetchFromGitHub { 36545 36629 owner = "DarwinAwardWinner"; 36546 36630 repo = "ido-completing-read-plus"; 36547 - rev = "1a1f695eb8e7d4ae2035e506ea3ff5bd4e2d0533"; 36548 - sha256 = "15m8x3dp9m0brpap4l9hsbc47s4fgax3lppxz5v6rcwm625s0ac9"; 36631 + rev = "e7194753330fb5da295fbb5d1e819b9b4fd926b2"; 36632 + sha256 = "1ll19xlchf4br27yxr2f8jb3q5d0cypjjjj852d8g8pgs565amaw"; 36549 36633 }; 36550 36634 recipeFile = fetchurl { 36551 36635 url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-ubiquitous"; ··· 37401 37485 }) {}; 37402 37486 info-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 37403 37487 pname = "info-plus"; 37404 - version = "20170807.2112"; 37488 + version = "20170810.1125"; 37405 37489 src = fetchurl { 37406 37490 url = "https://www.emacswiki.org/emacs/download/info+.el"; 37407 - sha256 = "13l62fjq7g79s0ycj506fsvi16mmf1kqiqhbrj6f5n2j962k1qaf"; 37491 + sha256 = "0nr9d2rqipbz2p30f1bmg10mbnndxqx9k6jj1qkmijhzzbk5w36l"; 37408 37492 name = "info+.el"; 37409 37493 }; 37410 37494 recipeFile = fetchurl { ··· 37777 37861 intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: 37778 37862 melpaBuild { 37779 37863 pname = "intero"; 37780 - version = "20170807.2147"; 37864 + version = "20170812.1029"; 37781 37865 src = fetchFromGitHub { 37782 37866 owner = "commercialhaskell"; 37783 37867 repo = "intero"; 37784 - rev = "453d6d64c88df8ada4d6b9e4004c392d219e3799"; 37785 - sha256 = "13wm0kz4ijl2smpw5ws5v97j19df5m9yw2iv4xgpcg4if9aby67y"; 37868 + rev = "1c34f8e858eb11493078ca222fd0f598cf9f1e26"; 37869 + sha256 = "115pqqyhinjpcjh1sigwcbqinwcslk19qmqxwxpwfka62j8c22x1"; 37786 37870 }; 37787 37871 recipeFile = fetchurl { 37788 37872 url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; ··· 38401 38485 ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38402 38486 melpaBuild { 38403 38487 pname = "ivy"; 38404 - version = "20170806.1231"; 38488 + version = "20170813.351"; 38405 38489 src = fetchFromGitHub { 38406 38490 owner = "abo-abo"; 38407 38491 repo = "swiper"; 38408 - rev = "9b071a8fb130fe8391d445706711bcc4de2b3998"; 38409 - sha256 = "1yvnw0cf45wgly9ywryv0j93qrfch8adnjprnhf3yg140pavbzpz"; 38492 + rev = "a5cd13b9487007ba6cb3eb64575800ee14589691"; 38493 + sha256 = "00rmcd72hxcsvrkwqsqy9b0jr1rxh3ny3q1fh33zp61s82n1dkn0"; 38410 38494 }; 38411 38495 recipeFile = fetchurl { 38412 38496 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy"; ··· 38531 38615 src = fetchFromGitHub { 38532 38616 owner = "abo-abo"; 38533 38617 repo = "swiper"; 38534 - rev = "9b071a8fb130fe8391d445706711bcc4de2b3998"; 38535 - sha256 = "1yvnw0cf45wgly9ywryv0j93qrfch8adnjprnhf3yg140pavbzpz"; 38618 + rev = "a5cd13b9487007ba6cb3eb64575800ee14589691"; 38619 + sha256 = "00rmcd72hxcsvrkwqsqy9b0jr1rxh3ny3q1fh33zp61s82n1dkn0"; 38536 38620 }; 38537 38621 recipeFile = fetchurl { 38538 38622 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra"; ··· 38569 38653 ivy-pass = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, password-store }: 38570 38654 melpaBuild { 38571 38655 pname = "ivy-pass"; 38572 - version = "20170730.2153"; 38656 + version = "20170812.1255"; 38573 38657 src = fetchFromGitHub { 38574 38658 owner = "ecraven"; 38575 38659 repo = "ivy-pass"; 38576 - rev = "b2d9b66583107694e8816e4e51809ebe9ee31d81"; 38577 - sha256 = "1jz7bbr94bv4ql3xhxgdlhd0azjmhqiisc6bzcpwsf4q9jq42vwj"; 38660 + rev = "5b523de1151f2109fdd6a8114d0af12eef83d3c5"; 38661 + sha256 = "18crb4zh2pjf0cmv3b913m9vfng27girjwfqc3mk7vqd1r5a49yk"; 38578 38662 }; 38579 38663 recipeFile = fetchurl { 38580 38664 url = "https://raw.githubusercontent.com/milkypostman/melpa/7bfef855e071442d2b9d1e0ce9b5706937bffc53/recipes/ivy-pass"; ··· 38636 38720 src = fetchFromGitHub { 38637 38721 owner = "Andersbakken"; 38638 38722 repo = "rtags"; 38639 - rev = "2f287dc3240acf3b6b17abd26b98d471e2f66638"; 38640 - sha256 = "0n29iqnxfm3pnj4w8ihwh3wpfwznspvcmv3vr7kaxfgyc7pimp7m"; 38723 + rev = "de1f11e68f6752b3ee6738287d4dadb11bca8f8a"; 38724 + sha256 = "1jsx08pgwrz6n47a0zs05m0h6knpp9sgg8lrdwg792a93nrcqc5c"; 38641 38725 }; 38642 38726 recipeFile = fetchurl { 38643 38727 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags"; ··· 39720 39804 js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 39721 39805 melpaBuild { 39722 39806 pname = "js2-mode"; 39723 - version = "20170804.335"; 39807 + version = "20170812.1419"; 39724 39808 src = fetchFromGitHub { 39725 39809 owner = "mooz"; 39726 39810 repo = "js2-mode"; 39727 - rev = "91c745ad062d454834f646dcd16be6856a1db8b3"; 39728 - sha256 = "0qr2pd2zhhwl6jw8mqy25wnig9v9nicc7plan0ni4dlbhljrx3rh"; 39811 + rev = "048da26e17a1011f1466794218ff175acd503c31"; 39812 + sha256 = "17hnal44lcbdb5cma1mlbf1flc73vnsbyjhd56hh4bw2qz47zvz9"; 39729 39813 }; 39730 39814 recipeFile = fetchurl { 39731 39815 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; ··· 40159 40243 jump-tree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 40160 40244 melpaBuild { 40161 40245 pname = "jump-tree"; 40162 - version = "20170809.708"; 40246 + version = "20170812.2310"; 40163 40247 src = fetchFromGitHub { 40164 40248 owner = "yangwen0228"; 40165 40249 repo = "jump-tree"; 40166 - rev = "ff010ee6acfa9bee2486dd7b3384c12a802b0191"; 40167 - sha256 = "1w7sncr5gdlyqk3bvm7zjif5yxp9sa6v82kk5zx04qdbsn9dn308"; 40250 + rev = "d74a10e86dde8f54b9c3c5392735c0e4d2fc26cc"; 40251 + sha256 = "1vqzy9ddmy8jsacxfd94qsdxcx5w310wdnsw115lvm7cl93l8jjl"; 40168 40252 }; 40169 40253 recipeFile = fetchurl { 40170 40254 url = "https://raw.githubusercontent.com/milkypostman/melpa/fe6b08848929c83e3cdea623b331176c0f20cbe9/recipes/jump-tree"; ··· 40896 40980 src = fetchFromGitHub { 40897 40981 owner = "kivy"; 40898 40982 repo = "kivy"; 40899 - rev = "4b77edeaf193c1e7dd2078b9516ce2cd20fe99f9"; 40900 - sha256 = "0s1g1fkq0m68l7ly0i1jhf1jk7abpx0kiwgcv734gb4b2ddc625n"; 40983 + rev = "0cc3a981220c228d68ce371c929808ce328a0b12"; 40984 + sha256 = "1lxgp5isrl6c0zd03gv6r84qlgqqx4gf6b22yshhg333wccfl3h7"; 40901 40985 }; 40902 40986 recipeFile = fetchurl { 40903 40987 url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode"; ··· 40976 41060 kodi-remote = callPackage ({ elnode, fetchFromGitHub, fetchurl, json ? null, let-alist, lib, melpaBuild, request }: 40977 41061 melpaBuild { 40978 41062 pname = "kodi-remote"; 40979 - version = "20170719.1038"; 41063 + version = "20170811.105"; 40980 41064 src = fetchFromGitHub { 40981 41065 owner = "spiderbit"; 40982 41066 repo = "kodi-remote.el"; 40983 - rev = "9a8472df0c89af867495541f1265cceccabb1eba"; 40984 - sha256 = "0cw1lnclawc19ianjq0yhf1cnmcfcfv81158zjg9mnv4mgl6hzjl"; 41067 + rev = "56440a40e0b43e639e0530414940b21cf4c24280"; 41068 + sha256 = "0a1ld6kr244957yh2nlqcr9xf77kzgn9p2b5mhbmwphvfc0r3a1x"; 40985 41069 }; 40986 41070 recipeFile = fetchurl { 40987 41071 url = "https://raw.githubusercontent.com/milkypostman/melpa/08f06dd824e67250afafdecc25128ba794ca971f/recipes/kodi-remote"; ··· 41876 41960 leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 41877 41961 melpaBuild { 41878 41962 pname = "leuven-theme"; 41879 - version = "20170508.1319"; 41963 + version = "20170809.1329"; 41880 41964 src = fetchFromGitHub { 41881 41965 owner = "fniessen"; 41882 41966 repo = "emacs-leuven-theme"; 41883 - rev = "185e19f49ad05e9d813c10d24381f3e35b8c719e"; 41884 - sha256 = "1vxfw5nqvbv12wp0015fg5cm8z1zirya4sbr1xbakc758fq5q8j3"; 41967 + rev = "23d15ff1a54b8f034fa21bc597f680a37310dd8a"; 41968 + sha256 = "1qlympn43shsx44clsgsdc88cdpqlwc1mwvdjkimypvpys5p6swz"; 41885 41969 }; 41886 41970 recipeFile = fetchurl { 41887 41971 url = "https://raw.githubusercontent.com/milkypostman/melpa/b09451f4eb2be820e94d3fecbf4ec7cecd2cabdc/recipes/leuven-theme"; ··· 42258 42342 lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper, zoutline }: 42259 42343 melpaBuild { 42260 42344 pname = "lispy"; 42261 - version = "20170731.842"; 42345 + version = "20170813.913"; 42262 42346 src = fetchFromGitHub { 42263 42347 owner = "abo-abo"; 42264 42348 repo = "lispy"; 42265 - rev = "3f7a041410a16bff68611a06f8d0bba766159f07"; 42266 - sha256 = "165il7rpwwz2xc3cx49xshpkmd0zf8i97zj5p187hi62z7pi2xyn"; 42349 + rev = "15017ccd229644a3b253937f2bb5e1420f197d6f"; 42350 + sha256 = "1lldyv3ixgy3rsxyp6rfz5427vd9bds90rzvjxf747hn5ws6m110"; 42267 42351 }; 42268 42352 recipeFile = fetchurl { 42269 42353 url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy"; ··· 42597 42681 src = fetchFromGitHub { 42598 42682 owner = "donkirkby"; 42599 42683 repo = "live-py-plugin"; 42600 - rev = "c1a2903fbe4c7212960c886143105caceb3faff2"; 42601 - sha256 = "1xv5yid7hzja97lvsfycpw9ss2yd69dzvjp9a54xp79ydvxwcc0m"; 42684 + rev = "467285fa70dc5f349f2deb0d2950df037fb89f2d"; 42685 + sha256 = "0sm2k5988rf0q1zwqsnklx5p7wp4wrma0h11q7jd8j7v8vniqryz"; 42602 42686 }; 42603 42687 recipeFile = fetchurl { 42604 42688 url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode"; ··· 42701 42785 version = "20150910.644"; 42702 42786 src = fetchgit { 42703 42787 url = "https://llvm.org/git/llvm"; 42704 - rev = "c85760a9a3e892fb31ee1fab1e16393c5bb1ff1e"; 42705 - sha256 = "0p7kja62xph1nmmpa4mbi3n8ipp5pjb8xvwbn6rfw3s2m8vmwjqg"; 42788 + rev = "ef4534aee526b0ef3563e578644b0092057089fa"; 42789 + sha256 = "057ag54lav5kv14c18hmf8x5d7fryc64afnn9kzlc260m4qkniw2"; 42706 42790 }; 42707 42791 recipeFile = fetchurl { 42708 42792 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/llvm-mode"; ··· 43554 43638 magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: 43555 43639 melpaBuild { 43556 43640 pname = "magit"; 43557 - version = "20170803.828"; 43641 + version = "20170808.1712"; 43558 43642 src = fetchFromGitHub { 43559 43643 owner = "magit"; 43560 43644 repo = "magit"; 43561 - rev = "f7c8924ca85fa0671c3c4c54d5e1cbe6106f3e8d"; 43562 - sha256 = "02sayw24f2qc8lg8dm119zprrfn17pc0msq15vj9m9gxwilwnxrd"; 43645 + rev = "5c05bdb9de39872649821ea3c70f3489741bcc66"; 43646 + sha256 = "0g6578fpycfg7f5v3a7q6vaqgvcnxyf90yzg9mkjgis7b3im8jb7"; 43563 43647 }; 43564 43648 recipeFile = fetchurl { 43565 43649 url = "https://raw.githubusercontent.com/milkypostman/melpa/68bb049b7c4424345f5c1aea82e950a5e47e9e47/recipes/magit"; ··· 43771 43855 magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 43772 43856 melpaBuild { 43773 43857 pname = "magit-popup"; 43774 - version = "20170730.2139"; 43858 + version = "20170810.917"; 43775 43859 src = fetchFromGitHub { 43776 43860 owner = "magit"; 43777 43861 repo = "magit"; 43778 - rev = "f7c8924ca85fa0671c3c4c54d5e1cbe6106f3e8d"; 43779 - sha256 = "02sayw24f2qc8lg8dm119zprrfn17pc0msq15vj9m9gxwilwnxrd"; 43862 + rev = "5c05bdb9de39872649821ea3c70f3489741bcc66"; 43863 + sha256 = "0g6578fpycfg7f5v3a7q6vaqgvcnxyf90yzg9mkjgis7b3im8jb7"; 43780 43864 }; 43781 43865 recipeFile = fetchurl { 43782 43866 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-popup"; ··· 43897 43981 magithub = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub-plus, lib, magit, melpaBuild, s }: 43898 43982 melpaBuild { 43899 43983 pname = "magithub"; 43900 - version = "20170809.657"; 43984 + version = "20170810.1947"; 43901 43985 src = fetchFromGitHub { 43902 43986 owner = "vermiculus"; 43903 43987 repo = "magithub"; 43904 - rev = "5c3eed698fcbae53399e8c9d7d728943a516adb7"; 43905 - sha256 = "1jgc0w5mwy2pg51yhca4hdhrdqkv7k33pbj1151wgway2zil00yh"; 43988 + rev = "dccda82fff3532ac6af262f3020b4b063a223045"; 43989 + sha256 = "1mn53vqxf8al0a8plx1wv502iglvgnlbi2adlllyh8vjjgfk3w9m"; 43906 43990 }; 43907 43991 recipeFile = fetchurl { 43908 43992 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/magithub"; ··· 44451 44535 markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 44452 44536 melpaBuild { 44453 44537 pname = "markdown-mode"; 44454 - version = "20170803.1101"; 44538 + version = "20170812.1201"; 44455 44539 src = fetchFromGitHub { 44456 44540 owner = "jrblevin"; 44457 44541 repo = "markdown-mode"; 44458 - rev = "40dbc48c0db151b687d3a549df29c60383261089"; 44459 - sha256 = "1jpc4yhiq6m8lyz0s26akbkd0ggnhky6i1c8711f1ci8rqm5ckha"; 44542 + rev = "c79ab7eac618f54c73ffade336e043dc397ca032"; 44543 + sha256 = "12m1hvm918gw5v1xgyc6yhlijsrq0l0875fyv5zbjs88svw52r7i"; 44460 44544 }; 44461 44545 recipeFile = fetchurl { 44462 44546 url = "https://raw.githubusercontent.com/milkypostman/melpa/74610ec93d4478e835f8b3b446279efc0c71d644/recipes/markdown-mode"; ··· 45001 45085 mediawiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 45002 45086 melpaBuild { 45003 45087 pname = "mediawiki"; 45004 - version = "20170418.1035"; 45088 + version = "20170812.2255"; 45005 45089 src = fetchFromGitHub { 45006 45090 owner = "hexmode"; 45007 45091 repo = "mediawiki-el"; 45008 - rev = "e1adf088e621c3446d04cb2222756edcb03eb363"; 45009 - sha256 = "00yh92g9if4vgh2qzgf9ji8k88gj9k2k9ap055r4mlg3fcyf1r4n"; 45092 + rev = "8473e12d1839f5287a4227586bf117dad820f867"; 45093 + sha256 = "03rpj3yrk3i1l9yjnamnx38idn6y4zi9zg53bc83sx3g2b4m5v04"; 45010 45094 }; 45011 45095 recipeFile = fetchurl { 45012 45096 url = "https://raw.githubusercontent.com/milkypostman/melpa/865e0ba1dbace58784181d214000d090478173bd/recipes/mediawiki"; ··· 46039 46123 mocha = callPackage ({ f, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: 46040 46124 melpaBuild { 46041 46125 pname = "mocha"; 46042 - version = "20170712.907"; 46126 + version = "20170813.1957"; 46043 46127 src = fetchFromGitHub { 46044 46128 owner = "scottaj"; 46045 46129 repo = "mocha.el"; 46046 - rev = "60189c67a4800059411f71ca800d911240e8d22e"; 46047 - sha256 = "1hqyy7piaara1hgba2jys923y395kpcf6i312zaw472ksixqhw7y"; 46130 + rev = "ce9e42adf9333c68967597c17272b3a3c7564cea"; 46131 + sha256 = "1cl4ncmynhrvmllbkkwnw3064vw93xalk4zzy4bpb2zf74vwl1gy"; 46048 46132 }; 46049 46133 recipeFile = fetchurl { 46050 46134 url = "https://raw.githubusercontent.com/milkypostman/melpa/39c26134ba95f277a4e9400e506433d96a695aa4/recipes/mocha"; ··· 47141 47225 multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 47142 47226 melpaBuild { 47143 47227 pname = "multiple-cursors"; 47144 - version = "20170713.1847"; 47228 + version = "20170813.38"; 47145 47229 src = fetchFromGitHub { 47146 47230 owner = "magnars"; 47147 47231 repo = "multiple-cursors.el"; 47148 - rev = "e14fdb77a1f65465a61e8f69180505095cc2b7dd"; 47149 - sha256 = "0ahy9sv57wc0djaxi9740z37pnwjk3a436zgmabj85ib6ykmla1y"; 47232 + rev = "18f992bff596609091afca128b51a7d2e919ac40"; 47233 + sha256 = "01xlbvnc74h450wm6falpj839nz04dmc2ll083zkndd3gfjk6g3d"; 47150 47234 }; 47151 47235 recipeFile = fetchurl { 47152 47236 url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f015e6b88be2a5ded363bd882a558e94d1f391/recipes/multiple-cursors"; ··· 48307 48391 license = lib.licenses.free; 48308 48392 }; 48309 48393 }) {}; 48310 - nikola = callPackage ({ async, emacs, fetchgit, fetchurl, lib, melpaBuild }: 48311 - melpaBuild { 48312 - pname = "nikola"; 48313 - version = "20170703.1321"; 48314 - src = fetchgit { 48315 - url = "https://git.daemons.cf/drymer/nikola.el/"; 48316 - rev = "964715ac30943c9d6976999cad208dc60d09def0"; 48317 - sha256 = "0b0bpw9r2xi1avzq76pl58bbk1shb57d3bmzd9d53d07gj5c9399"; 48318 - }; 48319 - recipeFile = fetchurl { 48320 - url = "https://raw.githubusercontent.com/milkypostman/melpa/89354d06dddc3be4b952e3f0b86d11824064dd97/recipes/nikola"; 48321 - sha256 = "1i6z4gkh52fr9s506dqr3ccczank7c8zr0q1bg8ik5gbna0jv705"; 48322 - name = "nikola"; 48323 - }; 48324 - packageRequires = [ async emacs ]; 48325 - meta = { 48326 - homepage = "https://melpa.org/#/nikola"; 48327 - license = lib.licenses.free; 48328 - }; 48329 - }) {}; 48330 48394 nim-mode = callPackage ({ commenter, emacs, epc, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: 48331 48395 melpaBuild { 48332 48396 pname = "nim-mode"; ··· 48351 48415 nimbus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 48352 48416 melpaBuild { 48353 48417 pname = "nimbus-theme"; 48354 - version = "20170725.415"; 48418 + version = "20170811.646"; 48355 48419 src = fetchFromGitHub { 48356 48420 owner = "m-cat"; 48357 48421 repo = "nimbus-theme"; 48358 - rev = "524e0a632b0932f269839c34c08bfd894719a75b"; 48359 - sha256 = "1m4lh6hwzv4hmnh3zlic39df2bwqy5mpfgi8himyg4v3k0bdfskc"; 48422 + rev = "26a5bd7d31d9c203aa4e1cc4961fb6cdf0ddc0f9"; 48423 + sha256 = "1m326skvvirkf938ymch135p2gxxdyqx4plpvivp09qpfzrj0b1d"; 48360 48424 }; 48361 48425 recipeFile = fetchurl { 48362 48426 url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0e6b456b76e2379c64a86ad844362c58146dc6/recipes/nimbus-theme"; ··· 48418 48482 src = fetchFromGitHub { 48419 48483 owner = "NixOS"; 48420 48484 repo = "nix"; 48421 - rev = "af765a8eab288eb638100e027b97a1d15e4e3026"; 48422 - sha256 = "1mnzaa2c87pg12hgn5lfz1nxnyd8a9lfbar7imwr4jxih54ibdna"; 48485 + rev = "f76e85d8f581cc8f71b66386e86ed93c2c3d6992"; 48486 + sha256 = "0fh790mwr8q9ch0rvf3sp9mwrq5iya8w2dpbpazkl2lsll7d3nyi"; 48423 48487 }; 48424 48488 recipeFile = fetchurl { 48425 48489 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2b542189cfde5b9b1ebee4625684949b6704ded/recipes/nix-mode"; ··· 48771 48835 version = "20170720.301"; 48772 48836 src = fetchgit { 48773 48837 url = "git://git.notmuchmail.org/git/notmuch"; 48774 - rev = "0967e46475be71d39daf928c9370af20b416f102"; 48775 - sha256 = "045xazhax0svalzr4hiv7yd0373q1dfdgq9mdk6avx6xdpk2fqcf"; 48838 + rev = "178d62cf9c9959fe603c9ffef9fa90f65b67dcd5"; 48839 + sha256 = "12f91c5a11f4sn27a259h5mv1jw4s71gh27caq5nk8ixr1ra9ikm"; 48776 48840 }; 48777 48841 recipeFile = fetchurl { 48778 48842 url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch"; ··· 49314 49378 src = fetchFromGitHub { 49315 49379 owner = "brantou"; 49316 49380 repo = "ob-coffeescript"; 49317 - rev = "219c83f6c44e3612a7718c996365df1de747127d"; 49318 - sha256 = "14va23m0wab1jf6jc5m61y2c0kcmc8dha463vyci1mvs3p1psjr8"; 49381 + rev = "b70f3d822c707cb02333fcb739ba4874614cad2a"; 49382 + sha256 = "0284v3km41427q7dr0wmvf3zhbsgzj0j2r9zny0g3n85qvyk0rgd"; 49319 49383 }; 49320 49384 recipeFile = fetchurl { 49321 49385 url = "https://raw.githubusercontent.com/milkypostman/melpa/ba1a808c77653bac1948d6c44bd1db09301ffeff/recipes/ob-coffeescript"; ··· 49325 49389 packageRequires = []; 49326 49390 meta = { 49327 49391 homepage = "https://melpa.org/#/ob-coffeescript"; 49392 + license = lib.licenses.free; 49393 + }; 49394 + }) {}; 49395 + ob-crystal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 49396 + melpaBuild { 49397 + pname = "ob-crystal"; 49398 + version = "20170811.57"; 49399 + src = fetchFromGitHub { 49400 + owner = "brantou"; 49401 + repo = "ob-crystal"; 49402 + rev = "4bfd36c922d28e8a204218bde0e889cd1097ec04"; 49403 + sha256 = "00rlxm0gj2arcnjhy824id08gxpha73ikfipar780xm845ripm3j"; 49404 + }; 49405 + recipeFile = fetchurl { 49406 + url = "https://raw.githubusercontent.com/milkypostman/melpa/b9a7d43199a83ab6f672aaa69ef4e158c868f180/recipes/ob-crystal"; 49407 + sha256 = "11mk2spwlddbrvcimhzw43b6d3gxzmi8br58bily1x4qkvl6zy4n"; 49408 + name = "ob-crystal"; 49409 + }; 49410 + packageRequires = []; 49411 + meta = { 49412 + homepage = "https://melpa.org/#/ob-crystal"; 49328 49413 license = lib.licenses.free; 49329 49414 }; 49330 49415 }) {}; ··· 50150 50235 octopress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 50151 50236 melpaBuild { 50152 50237 pname = "octopress"; 50153 - version = "20161222.343"; 50238 + version = "20170813.615"; 50154 50239 src = fetchFromGitHub { 50155 50240 owner = "aaronbieber"; 50156 50241 repo = "octopress.el"; 50157 - rev = "85bab12adbd985767233eb1622c4b8f7c1fe7e1a"; 50158 - sha256 = "012g0mf8g602f53x3bc35ahy4bq31s3m7cv13hm46zj8syvdckvq"; 50242 + rev = "b4c25df9e3ccf49ac27c0a152daa4e27d1247d56"; 50243 + sha256 = "0zidh929sc1wi695ibzglbybfvxz2rj1365mij97088wwdk5dyz8"; 50159 50244 }; 50160 50245 recipeFile = fetchurl { 50161 50246 url = "https://raw.githubusercontent.com/milkypostman/melpa/7205d3d43797755077f19f57f531b4b39e77bae3/recipes/octopress"; ··· 50381 50466 omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup, s, shut-up }: 50382 50467 melpaBuild { 50383 50468 pname = "omnisharp"; 50384 - version = "20170804.158"; 50469 + version = "20170813.2215"; 50385 50470 src = fetchFromGitHub { 50386 50471 owner = "OmniSharp"; 50387 50472 repo = "omnisharp-emacs"; 50388 - rev = "bf0edf7c74ddcd9976753543481a61a5607eec4e"; 50389 - sha256 = "1x7bvpy2lx51j58grbc45l99mzf55wlx657icc7q5rf2vgb56k01"; 50473 + rev = "a9a66b047606c6b5dc48abdb0eb70a1f9dcd08f2"; 50474 + sha256 = "0m1f62cr0h426g66c7r36v3yr2bdakkjwxzdvpd0gh81xazn8yjz"; 50390 50475 }; 50391 50476 recipeFile = fetchurl { 50392 50477 url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; ··· 50913 50998 org-brain = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 50914 50999 melpaBuild { 50915 51000 pname = "org-brain"; 50916 - version = "20170809.633"; 51001 + version = "20170814.404"; 50917 51002 src = fetchFromGitHub { 50918 51003 owner = "Kungsgeten"; 50919 51004 repo = "org-brain"; 50920 - rev = "7a35d6043a1ffb5d2fff14bface51a57d4f7ab2b"; 50921 - sha256 = "0mcrlh3y3jqffn6d92gyi3c1nh4vn4b1xclmhh2dmbl4haypk40b"; 51005 + rev = "f572bf29d6592f587b671b215394cf459dd574b9"; 51006 + sha256 = "0f8nf4mljf2xfkwvn9n2d612sy02mk4m19lnx5pidjmm5a50id6j"; 50922 51007 }; 50923 51008 recipeFile = fetchurl { 50924 51009 url = "https://raw.githubusercontent.com/milkypostman/melpa/47480fbae06e4110d50bc89db7df05fa80afc7d3/recipes/org-brain"; ··· 51001 51086 src = fetchFromGitHub { 51002 51087 owner = "IvanMalison"; 51003 51088 repo = "org-projectile"; 51004 - rev = "c39d28d925916ee7e08a879d5d9dd2287b3b9184"; 51005 - sha256 = "1l1nvii2kdb2kz4h8k4vb38rnp7gqfh8cx5ip2nw71hg885359lv"; 51089 + rev = "480408737e8110a13ac5282588f1a4a5b86cd0e0"; 51090 + sha256 = "121gx8wp38j4j2sqcx5jb91l7pq5214h2cc9qs1sh293a481wl24"; 51006 51091 }; 51007 51092 recipeFile = fetchurl { 51008 51093 url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-category-capture"; ··· 51081 51166 org-clock-csv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: 51082 51167 melpaBuild { 51083 51168 pname = "org-clock-csv"; 51084 - version = "20170326.1041"; 51169 + version = "20170813.1602"; 51085 51170 src = fetchFromGitHub { 51086 51171 owner = "atheriel"; 51087 51172 repo = "org-clock-csv"; 51088 - rev = "0bae215df11e5602b07294e83b595447ae73ca0d"; 51089 - sha256 = "17im4njl1w5wm0rxvib2g7v0ibg1p6n0ibq480wwz204jd98q4gv"; 51173 + rev = "e45d277a8811ee228119349f51af9788befb3b22"; 51174 + sha256 = "0fg1ky6aw0hmm6a6zv0i4f8h9xam4d65cnpm2k2a3p1zpn0yzdk7"; 51090 51175 }; 51091 51176 recipeFile = fetchurl { 51092 51177 url = "https://raw.githubusercontent.com/milkypostman/melpa/e023cb898699f76f6c3d9ffe8162aacfc6a8c34f/recipes/org-clock-csv"; ··· 51358 51443 src = fetchFromGitHub { 51359 51444 owner = "et2010"; 51360 51445 repo = "org-edit-latex"; 51361 - rev = "2f645cf910b21d0ea63da58ad32f02cf8a6fb178"; 51362 - sha256 = "0qkdyfkk6xflhsb127208623qbhxcxcvagw0v8yksw2ypdaypd4x"; 51446 + rev = "4c22ff6d63f2126f2526b68201ecb5a379812534"; 51447 + sha256 = "0q20hz14pghlxi1df8qpdr3jkz3ph87c5qv1s264kkhjknip1yn3"; 51363 51448 }; 51364 51449 recipeFile = fetchurl { 51365 51450 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-edit-latex"; ··· 51692 51777 version = "20140107.519"; 51693 51778 src = fetchgit { 51694 51779 url = "git://orgmode.org/org-mode.git"; 51695 - rev = "8ab9a82be2a6178063e395a6ab3d2b9e083059c3"; 51696 - sha256 = "0314hjdlvwgc2zp7vicg8afnmd3dggj22h26dwmq5ngd3vwih4yg"; 51780 + rev = "39b7357eea3550a695ec36d2810e31e89d8d0953"; 51781 + sha256 = "0wch4wyn7k86xy7nc2rjszkkd73k80jl9dafhj0ihkvgf3za10bh"; 51697 51782 }; 51698 51783 recipeFile = fetchurl { 51699 51784 url = "https://raw.githubusercontent.com/milkypostman/melpa/ee69e5e7b1617a29919d5fcece92414212fdf963/recipes/org-mac-iCal"; ··· 51712 51797 version = "20170105.1723"; 51713 51798 src = fetchgit { 51714 51799 url = "git://orgmode.org/org-mode.git"; 51715 - rev = "8ab9a82be2a6178063e395a6ab3d2b9e083059c3"; 51716 - sha256 = "0314hjdlvwgc2zp7vicg8afnmd3dggj22h26dwmq5ngd3vwih4yg"; 51800 + rev = "39b7357eea3550a695ec36d2810e31e89d8d0953"; 51801 + sha256 = "0wch4wyn7k86xy7nc2rjszkkd73k80jl9dafhj0ihkvgf3za10bh"; 51717 51802 }; 51718 51803 recipeFile = fetchurl { 51719 51804 url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/org-mac-link"; ··· 51906 51991 org-parser = callPackage ({ dash, emacs, fetchhg, fetchurl, lib, melpaBuild }: 51907 51992 melpaBuild { 51908 51993 pname = "org-parser"; 51909 - version = "20170728.2120"; 51994 + version = "20170811.2231"; 51910 51995 src = fetchhg { 51911 51996 url = "https://bitbucket.com/zck/org-parser.el"; 51912 - rev = "0febaec75eda"; 51913 - sha256 = "1vvxpldjd2y95y3935z16g4v6agz02k1d9c0pb0pr41ms60q0b9w"; 51997 + rev = "018959e57cf5"; 51998 + sha256 = "0xyw7k195bvx7c0cmhwfjc89v7b0gfybsl4hgaid71fz2czjhx6j"; 51914 51999 }; 51915 52000 recipeFile = fetchurl { 51916 52001 url = "https://raw.githubusercontent.com/milkypostman/melpa/28d55005cbce276cda21021a8d9368568cb4bcc6/recipes/org-parser"; ··· 52030 52115 org-projectile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org-category-capture, projectile, s }: 52031 52116 melpaBuild { 52032 52117 pname = "org-projectile"; 52033 - version = "20170803.634"; 52118 + version = "20170812.1500"; 52034 52119 src = fetchFromGitHub { 52035 52120 owner = "IvanMalison"; 52036 52121 repo = "org-projectile"; 52037 - rev = "c39d28d925916ee7e08a879d5d9dd2287b3b9184"; 52038 - sha256 = "1l1nvii2kdb2kz4h8k4vb38rnp7gqfh8cx5ip2nw71hg885359lv"; 52122 + rev = "480408737e8110a13ac5282588f1a4a5b86cd0e0"; 52123 + sha256 = "121gx8wp38j4j2sqcx5jb91l7pq5214h2cc9qs1sh293a481wl24"; 52039 52124 }; 52040 52125 recipeFile = fetchurl { 52041 52126 url = "https://raw.githubusercontent.com/milkypostman/melpa/9d7a7ab98f364d3d5e93f83f0cb3d80a95f28689/recipes/org-projectile"; ··· 52055 52140 src = fetchFromGitHub { 52056 52141 owner = "IvanMalison"; 52057 52142 repo = "org-projectile"; 52058 - rev = "c39d28d925916ee7e08a879d5d9dd2287b3b9184"; 52059 - sha256 = "1l1nvii2kdb2kz4h8k4vb38rnp7gqfh8cx5ip2nw71hg885359lv"; 52143 + rev = "480408737e8110a13ac5282588f1a4a5b86cd0e0"; 52144 + sha256 = "121gx8wp38j4j2sqcx5jb91l7pq5214h2cc9qs1sh293a481wl24"; 52060 52145 }; 52061 52146 recipeFile = fetchurl { 52062 52147 url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-projectile-helm"; ··· 52345 52430 src = fetchFromGitHub { 52346 52431 owner = "alphapapa"; 52347 52432 repo = "org-super-agenda"; 52348 - rev = "fd3b18dd2a4b0aa77d60e4b3af4288b62cae9517"; 52349 - sha256 = "0cr6jv58lj7483vwm75yc4nncjkw4723dizdysd6qypq5px65zr6"; 52433 + rev = "98684212cc0879b8c24b21d5047181fcca24bd9d"; 52434 + sha256 = "09zpyqgg2bcad793qi2kw2zb3dn03g7x8fx3a6mjyh0jvfqaaqz8"; 52350 52435 }; 52351 52436 recipeFile = fetchurl { 52352 52437 url = "https://raw.githubusercontent.com/milkypostman/melpa/fd27b2df7594a867529de4b84c8107f82dabe2e9/recipes/org-super-agenda"; ··· 54009 54094 package-lint = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 54010 54095 melpaBuild { 54011 54096 pname = "package-lint"; 54012 - version = "20170807.1657"; 54097 + version = "20170814.616"; 54013 54098 src = fetchFromGitHub { 54014 54099 owner = "purcell"; 54015 54100 repo = "package-lint"; 54016 - rev = "421e03d4faabea31b9135f7e2d1fd3a8cb3649f8"; 54017 - sha256 = "1md21a3clabc1xcs94gqy671wpxsbjr009c5dv2sxrq6xrdg1isz"; 54101 + rev = "c01d652cefa29df27139e52468f39fd98337746b"; 54102 + sha256 = "0l6lr4bmfcdr1mviyqiwzbkylag1avy0wja4il4x4ia2r92jw89h"; 54018 54103 }; 54019 54104 recipeFile = fetchurl { 54020 54105 url = "https://raw.githubusercontent.com/milkypostman/melpa/9744d8521b4ac5aeb1f28229c0897af7260c6f78/recipes/package-lint"; ··· 55242 55327 pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }: 55243 55328 melpaBuild { 55244 55329 pname = "pdf-tools"; 55245 - version = "20170809.1007"; 55330 + version = "20170813.731"; 55246 55331 src = fetchFromGitHub { 55247 55332 owner = "politza"; 55248 55333 repo = "pdf-tools"; 55249 - rev = "a5dfc038e989af2a4b48265a07d26222c9d1212b"; 55250 - sha256 = "1zjws8yafh3zwnfm1jw92w6f5f1vdcbyj1h7v3i19ixf19h2af76"; 55334 + rev = "0bff9727b7109f5303c4172f1f7b603e8e484c91"; 55335 + sha256 = "0gdxvmzsf7v621y32ir33rn26qs75i59jvi2b2ji18xh32znqmb1"; 55251 55336 }; 55252 55337 recipeFile = fetchurl { 55253 55338 url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools"; ··· 55618 55703 perspeen = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: 55619 55704 melpaBuild { 55620 55705 pname = "perspeen"; 55621 - version = "20170711.2304"; 55706 + version = "20170813.1754"; 55622 55707 src = fetchFromGitHub { 55623 55708 owner = "seudut"; 55624 55709 repo = "perspeen"; 55625 - rev = "d69a7bb554d6eb003b7c5c222cbdbaacc7e01df0"; 55626 - sha256 = "1r3c352i4vkzqi5rcyniaa2x05jjpq9x8j43bbs4m63lczik75mz"; 55710 + rev = "6b3a3b0468199a8db10a73d119dfcd8833d181b6"; 55711 + sha256 = "13rivw5rafl4pb68l500ksbzpz00yp7lx9wi9vy8nz0hwr80jd0p"; 55627 55712 }; 55628 55713 recipeFile = fetchurl { 55629 55714 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/perspeen"; ··· 58185 58270 projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: 58186 58271 melpaBuild { 58187 58272 pname = "projectile-rails"; 58188 - version = "20170704.2358"; 58273 + version = "20170814.522"; 58189 58274 src = fetchFromGitHub { 58190 58275 owner = "asok"; 58191 58276 repo = "projectile-rails"; 58192 - rev = "c917c6e188de27331815f39511ed45a408de22d0"; 58193 - sha256 = "11f52g8r5zb34nigm68gm8hwgkw184psknd7zqya0l1ipwkhhrif"; 58277 + rev = "d1dbd67ebdee9405ac95b0fbd71210df54457fb1"; 58278 + sha256 = "06v3wix90y92rjp769hrl92p57p60acf1b9mpdllcy48l6q0p074"; 58194 58279 }; 58195 58280 recipeFile = fetchurl { 58196 58281 url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails"; ··· 58210 58295 src = fetchFromGitHub { 58211 58296 owner = "nlamirault"; 58212 58297 repo = "ripgrep.el"; 58213 - rev = "5af6a0b2ee8a639cf857724ce4328f1f0955c99e"; 58214 - sha256 = "05jkj7c9ha09gp74j7k4bhcxq8ypxz922ghwv5bjpxg4czn5s0w9"; 58298 + rev = "c47a2da4668ca338e7fadc3d8c095e075caaa17d"; 58299 + sha256 = "0x2rkm1yf03qfzylx6pk32cq7mmydila2iwiq40k5nl4wgfia5vx"; 58215 58300 }; 58216 58301 recipeFile = fetchurl { 58217 58302 url = "https://raw.githubusercontent.com/milkypostman/melpa/195f340855b403128645b59c8adce1b45e90cd18/recipes/projectile-ripgrep"; ··· 58504 58589 src = fetchFromGitHub { 58505 58590 owner = "google"; 58506 58591 repo = "protobuf"; 58507 - rev = "35db2675b418ea105ef89f88fd1bf0257eb8a3ff"; 58508 - sha256 = "0xfrbz1xal8xkg1s9z5mlzqc6qvrjdy9i98g4crmwhvjvv58wff0"; 58592 + rev = "e0d24cc84a81d236daf0bbf783037c8c8c24d814"; 58593 + sha256 = "1pw89g82cc7687n3ffap9pzj3af1zagpx2j880dayii1hrgk1p7i"; 58509 58594 }; 58510 58595 recipeFile = fetchurl { 58511 58596 url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; ··· 58766 58851 src = fetchFromGitHub { 58767 58852 owner = "voxpupuli"; 58768 58853 repo = "puppet-mode"; 58769 - rev = "2fdd31ff1ae1ab23eeb08d5af936b1bb9b3e51b6"; 58770 - sha256 = "017f899qg3pdm18mb3i7v3x2j4gpqcinscxds8jwjq2ll5d5qf2j"; 58854 + rev = "fb1b683191d767eab312ea424de3517062d86420"; 58855 + sha256 = "12kxxgm61myna4wf3hgai8dgrssc9dnv75fh2mbcgwqggbfv8wlv"; 58771 58856 }; 58772 58857 recipeFile = fetchurl { 58773 58858 url = "https://raw.githubusercontent.com/milkypostman/melpa/1de94f0ab39ab18dfd0b050e337f502d894fb3ad/recipes/puppet-mode"; ··· 59373 59458 src = fetchFromGitHub { 59374 59459 owner = "PyCQA"; 59375 59460 repo = "pylint"; 59376 - rev = "62dc3d2f5eb57a70088a9b9959b6eb139cca227c"; 59377 - sha256 = "1cjdn499i5cn6lindzgnmhp9370pg9fqjpvngkyry16xs57fmz4a"; 59461 + rev = "8b4c0717fe6b73d329532ca74d408790c64a2b6e"; 59462 + sha256 = "08v7cskyq6l9d6idw0piz54gz1xw1dqhl21r0xnhh16nza0ihrvf"; 59378 59463 }; 59379 59464 recipeFile = fetchurl { 59380 59465 url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint"; ··· 59516 59601 python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 59517 59602 melpaBuild { 59518 59603 pname = "python-mode"; 59519 - version = "20170803.405"; 59604 + version = "20170813.50"; 59520 59605 src = fetchFromGitLab { 59521 59606 owner = "python-mode-devs"; 59522 59607 repo = "python-mode"; 59523 - rev = "85978be547434adc9c673cb3cfb7e7cf8729d514"; 59524 - sha256 = "0diczpxf8ax6ci8j18ac92nslj7l6spl9a8fazdy1w9j9dmgc7s6"; 59608 + rev = "8c3d55344fecd2837a3f268472f89866365fb54b"; 59609 + sha256 = "0cnzj17wrs5590kc84kywdk5xbs2149kygb3ys74jcli7zvg8bbh"; 59525 59610 }; 59526 59611 recipeFile = fetchurl { 59527 59612 url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode"; ··· 60988 61073 redprl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 60989 61074 melpaBuild { 60990 61075 pname = "redprl"; 60991 - version = "20170808.515"; 61076 + version = "20170810.2004"; 60992 61077 src = fetchFromGitHub { 60993 61078 owner = "RedPRL"; 60994 61079 repo = "sml-redprl"; 60995 - rev = "0b881a3f73cd6fafddfbd602a1abda5f8fc7ab98"; 60996 - sha256 = "0s4iakcpjiwvxjdcmn22yfsr0ya0h4xvpr713d0h9yjdbblx1m20"; 61080 + rev = "41370a8b7ae0d6273dd096d1f639485531f02859"; 61081 + sha256 = "1gp8lcavxg9v3wll2kk1gcd63p0zlcxg7vc9753k7nk741rc2m1q"; 60997 61082 }; 60998 61083 recipeFile = fetchurl { 60999 61084 url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl"; ··· 61883 61968 rich-minority = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61884 61969 melpaBuild { 61885 61970 pname = "rich-minority"; 61886 - version = "20160725.1255"; 61971 + version = "20170813.622"; 61887 61972 src = fetchFromGitHub { 61888 61973 owner = "Malabarba"; 61889 61974 repo = "rich-minority"; 61890 - rev = "478f0fbc0dbba6619a96a471b9b295f2f436475f"; 61891 - sha256 = "1n07bvjaz468zbd7am3rmw98a97clz8p4x6ryhbd4riqmfh845wi"; 61975 + rev = "333e4669f76a0fb68b433117d377711e418a525e"; 61976 + sha256 = "0ms42fnfis6y2h717cqhngzv7ysgf8340rsfm2i7rx2gbdynr1ic"; 61892 61977 }; 61893 61978 recipeFile = fetchurl { 61894 61979 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority"; ··· 61922 62007 license = lib.licenses.free; 61923 62008 }; 61924 62009 }) {}; 62010 + rimero-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 62011 + melpaBuild { 62012 + pname = "rimero-theme"; 62013 + version = "20170813.556"; 62014 + src = fetchFromGitHub { 62015 + owner = "yveszoundi"; 62016 + repo = "emacs-rimero-theme"; 62017 + rev = "ed6ad6ac4c67366f7fbdcf94bfe74b2f6683b395"; 62018 + sha256 = "06ifk0i13zy915zv46wam3pyv92xn5sjil02kdgxzn68ry76xddz"; 62019 + }; 62020 + recipeFile = fetchurl { 62021 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c6d07b0c021001195e6e0951c890566a5a784ce1/recipes/rimero-theme"; 62022 + sha256 = "0jbknrp9hc8s956cy2gqffxnx0fgnhmjqp2i4vyp0ywh45wrls5r"; 62023 + name = "rimero-theme"; 62024 + }; 62025 + packageRequires = [ emacs ]; 62026 + meta = { 62027 + homepage = "https://melpa.org/#/rimero-theme"; 62028 + license = lib.licenses.free; 62029 + }; 62030 + }) {}; 61925 62031 rinari = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, jump, lib, melpaBuild, ruby-compilation, ruby-mode ? null }: 61926 62032 melpaBuild { 61927 62033 pname = "rinari"; ··· 61967 62073 ripgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 61968 62074 melpaBuild { 61969 62075 pname = "ripgrep"; 61970 - version = "20170602.152"; 62076 + version = "20170810.1118"; 61971 62077 src = fetchFromGitHub { 61972 62078 owner = "nlamirault"; 61973 62079 repo = "ripgrep.el"; 61974 - rev = "5af6a0b2ee8a639cf857724ce4328f1f0955c99e"; 61975 - sha256 = "05jkj7c9ha09gp74j7k4bhcxq8ypxz922ghwv5bjpxg4czn5s0w9"; 62080 + rev = "c47a2da4668ca338e7fadc3d8c095e075caaa17d"; 62081 + sha256 = "0x2rkm1yf03qfzylx6pk32cq7mmydila2iwiq40k5nl4wgfia5vx"; 61976 62082 }; 61977 62083 recipeFile = fetchurl { 61978 62084 url = "https://raw.githubusercontent.com/milkypostman/melpa/e8d789818876e959a1a59690f1dd7d4efa6d608b/recipes/ripgrep"; ··· 62244 62350 src = fetchFromGitHub { 62245 62351 owner = "Andersbakken"; 62246 62352 repo = "rtags"; 62247 - rev = "2f287dc3240acf3b6b17abd26b98d471e2f66638"; 62248 - sha256 = "0n29iqnxfm3pnj4w8ihwh3wpfwznspvcmv3vr7kaxfgyc7pimp7m"; 62353 + rev = "de1f11e68f6752b3ee6738287d4dadb11bca8f8a"; 62354 + sha256 = "1jsx08pgwrz6n47a0zs05m0h6knpp9sgg8lrdwg792a93nrcqc5c"; 62249 62355 }; 62250 62356 recipeFile = fetchurl { 62251 62357 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags"; ··· 62306 62412 version = "20161115.2259"; 62307 62413 src = fetchsvn { 62308 62414 url = "https://svn.ruby-lang.org/repos/ruby/trunk/misc/"; 62309 - rev = "59553"; 62310 - sha256 = "00lwwhwq1bzmkr97q22frmzwm4g1kddgiyzlmfwv16k0g3ihwydg"; 62415 + rev = "59588"; 62416 + sha256 = "05rkz2wvyr00rr6g5sc2jgx1v2m81cbf24gjazxw4i9b3sf55ykr"; 62311 62417 }; 62312 62418 recipeFile = fetchurl { 62313 62419 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ruby-additional"; ··· 62384 62490 ruby-electric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 62385 62491 melpaBuild { 62386 62492 pname = "ruby-electric"; 62387 - version = "20170808.2046"; 62493 + version = "20170810.430"; 62388 62494 src = fetchFromGitHub { 62389 62495 owner = "knu"; 62390 62496 repo = "ruby-electric.el"; 62391 - rev = "d04313dbee42c0d1009558a7c9424e4ae8611908"; 62392 - sha256 = "03g6m2xjfjjm06v5gid1vxivzb6lnsdc65d1p2wjaz32j1rmb6gm"; 62497 + rev = "3553448a780a1ea5c3b0e9becd820d4762876593"; 62498 + sha256 = "0h47lfgxjcyyl8gb1w7l8j8h65s3lp1hsq742sl7a1gf5y6bbm3v"; 62393 62499 }; 62394 62500 recipeFile = fetchurl { 62395 62501 url = "https://raw.githubusercontent.com/milkypostman/melpa/5fd5fa797a813e02a6433ecbe2bca1270a383753/recipes/ruby-electric"; ··· 62657 62763 rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 62658 62764 melpaBuild { 62659 62765 pname = "rust-mode"; 62660 - version = "20170805.952"; 62766 + version = "20170813.2341"; 62661 62767 src = fetchFromGitHub { 62662 62768 owner = "rust-lang"; 62663 62769 repo = "rust-mode"; 62664 - rev = "b10ad4177786a139623984c4855eb9de3864c697"; 62665 - sha256 = "1dxsw71yxqzpnsr2cy7ba3mmzsnjp8kw0la6d7wc67m704fxymz3"; 62770 + rev = "6e9db4665036ca6f0fe8eecf55cd243eaebccc62"; 62771 + sha256 = "1j9zl6maz8glrr0ri4hsw56sdf8s93f2n908j43ix6hy2qnaxfi3"; 62666 62772 }; 62667 62773 recipeFile = fetchurl { 62668 62774 url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode"; ··· 63639 63745 secretaria = callPackage ({ alert, emacs, f, fetchgit, fetchurl, lib, melpaBuild, org, s }: 63640 63746 melpaBuild { 63641 63747 pname = "secretaria"; 63642 - version = "20170430.1724"; 63748 + version = "20170813.1107"; 63643 63749 src = fetchgit { 63644 63750 url = "https://bitbucket.org/shackra/secretaria.el"; 63645 - rev = "7551dfa21a4a796e0306041145c32c2ec8738028"; 63646 - sha256 = "1wiqk8ja3wjv7kmnnd93fg9rync08wjyhy1ssxan5csqfg89vw5a"; 63751 + rev = "7bd1cf591528b18a153e15a260d7817b72c900f2"; 63752 + sha256 = "0n9mj2g59yiqbg81rk0gglbgpvfs550r4y26n8nf5pyxpxfllv5s"; 63647 63753 }; 63648 63754 recipeFile = fetchurl { 63649 63755 url = "https://raw.githubusercontent.com/milkypostman/melpa/7b4c9ccbf2eeaa290f3b9d1e5eaaeb5b5547b365/recipes/secretaria"; ··· 63852 63958 src = fetchFromGitHub { 63853 63959 owner = "sbelak"; 63854 63960 repo = "sentence-highlight"; 63855 - rev = "f47839853455d0f4ffe50b3b0f9d3e7a15ace1fa"; 63856 - sha256 = "11s5zvwklf5vzwiiwmcw5c93qjvf5nxclbbk8hlj8fg88c5ssbzd"; 63961 + rev = "c7a501f38de5a9b52b1f30e21299fe1c374a27c7"; 63962 + sha256 = "13idmpw7nz75bpjbi85pv89annqqffc0gjizsazbzfdm21i8p7y6"; 63857 63963 }; 63858 63964 recipeFile = fetchurl { 63859 63965 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sentence-highlight"; ··· 64659 64765 license = lib.licenses.free; 64660 64766 }; 64661 64767 }) {}; 64768 + shrink-path = callPackage ({ dash, emacs, f, fetchFromGitLab, fetchurl, lib, melpaBuild, s }: 64769 + melpaBuild { 64770 + pname = "shrink-path"; 64771 + version = "20170812.1947"; 64772 + src = fetchFromGitLab { 64773 + owner = "bennya"; 64774 + repo = "shrink-path.el"; 64775 + rev = "9d06c453d1537df46a4b703a29213cc7f7857aa0"; 64776 + sha256 = "021bpgpzysag1s11m9pyq2bk6a0mf9ayx10yxhf5cw56x3d0jj1b"; 64777 + }; 64778 + recipeFile = fetchurl { 64779 + url = "https://raw.githubusercontent.com/milkypostman/melpa/86b0d105e8a57d5f0bcde779441dc80b85e170ea/recipes/shrink-path"; 64780 + sha256 = "0fq13c6g7qbq6f2ry9dzdyg1f6p41wimkjcdaj177rnilz77alzb"; 64781 + name = "shrink-path"; 64782 + }; 64783 + packageRequires = [ dash emacs f s ]; 64784 + meta = { 64785 + homepage = "https://melpa.org/#/shrink-path"; 64786 + license = lib.licenses.free; 64787 + }; 64788 + }) {}; 64662 64789 shrink-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 64663 64790 melpaBuild { 64664 64791 pname = "shrink-whitespace"; ··· 65228 65355 slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }: 65229 65356 melpaBuild { 65230 65357 pname = "slack"; 65231 - version = "20170807.711"; 65358 + version = "20170814.116"; 65232 65359 src = fetchFromGitHub { 65233 65360 owner = "yuya373"; 65234 65361 repo = "emacs-slack"; 65235 - rev = "e9cdebc689bb7780d0c278bf63577103fffc4aeb"; 65236 - sha256 = "1yys57pn7bym8galpf1k88xc5gs70xsv5fd1bdpq5k93is135js1"; 65362 + rev = "b5ca813fa5c56f65fd1302d29f5babd0965a0751"; 65363 + sha256 = "128wggbny4z6zhr9ldw3blrj5mbgvdl5bfap7i7v8pnzz660z9wy"; 65237 65364 }; 65238 65365 recipeFile = fetchurl { 65239 65366 url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack"; ··· 65484 65611 src = fetchFromGitHub { 65485 65612 owner = "davep"; 65486 65613 repo = "slstats.el"; 65487 - rev = "ebadbf5e3ffddee788f5ec09f759ed7eef6e1dae"; 65488 - sha256 = "1dn81r7dkj5pbl4adps7gcwn2yrxmap0ds6ninjzyr18m4lca7zb"; 65614 + rev = "5e86904ae3facafb3204607c08f8b14aa53fabec"; 65615 + sha256 = "05h5wsv2a4maqrsvr5klj1pqnhaj0cxlzyv7dvs5vb9wkd0mblzc"; 65489 65616 }; 65490 65617 recipeFile = fetchurl { 65491 65618 url = "https://raw.githubusercontent.com/milkypostman/melpa/fe7c8c241cc6920bbedb6711db63ea28ed633327/recipes/slstats"; ··· 66995 67122 spaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 66996 67123 melpaBuild { 66997 67124 pname = "spaces"; 66998 - version = "20130610.49"; 67125 + version = "20170809.1508"; 66999 67126 src = fetchFromGitHub { 67000 67127 owner = "chumpage"; 67001 67128 repo = "chumpy-windows"; 67002 - rev = "164be41b588b615864258c502583100d3ccfe13e"; 67003 - sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; 67129 + rev = "6bdb51e9a346907d60a9625f6180bddd06be6674"; 67130 + sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6"; 67004 67131 }; 67005 67132 recipeFile = fetchurl { 67006 67133 url = "https://raw.githubusercontent.com/milkypostman/melpa/fa5d57074f73cf11607f2f1610f92a0c77367f2a/recipes/spaces"; ··· 67286 67413 splitter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 67287 67414 melpaBuild { 67288 67415 pname = "splitter"; 67289 - version = "20130705.50"; 67416 + version = "20170809.1508"; 67290 67417 src = fetchFromGitHub { 67291 67418 owner = "chumpage"; 67292 67419 repo = "chumpy-windows"; 67293 - rev = "164be41b588b615864258c502583100d3ccfe13e"; 67294 - sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; 67420 + rev = "6bdb51e9a346907d60a9625f6180bddd06be6674"; 67421 + sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6"; 67295 67422 }; 67296 67423 recipeFile = fetchurl { 67297 67424 url = "https://raw.githubusercontent.com/milkypostman/melpa/129f0d20616226c449bdaf672c43a06e8f281869/recipes/splitter"; ··· 68891 69018 src = fetchFromGitHub { 68892 69019 owner = "abo-abo"; 68893 69020 repo = "swiper"; 68894 - rev = "9b071a8fb130fe8391d445706711bcc4de2b3998"; 68895 - sha256 = "1yvnw0cf45wgly9ywryv0j93qrfch8adnjprnhf3yg140pavbzpz"; 69021 + rev = "a5cd13b9487007ba6cb3eb64575800ee14589691"; 69022 + sha256 = "00rmcd72hxcsvrkwqsqy9b0jr1rxh3ny3q1fh33zp61s82n1dkn0"; 68896 69023 }; 68897 69024 recipeFile = fetchurl { 68898 69025 url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; ··· 69346 69473 systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 69347 69474 melpaBuild { 69348 69475 pname = "systemd"; 69349 - version = "20170708.1534"; 69476 + version = "20170727.504"; 69350 69477 src = fetchFromGitHub { 69351 69478 owner = "holomorph"; 69352 69479 repo = "systemd-mode"; 69353 - rev = "9cfd31533742859fa081b79aceafac315444a4b3"; 69354 - sha256 = "0gckwjzqlqyl740r73bh3x5x4wina0irc7krgj2xp68xh4x7nw8y"; 69480 + rev = "2c71ec55291eca382305b1f31020e0396907534d"; 69481 + sha256 = "1fj7hh0p33kscjbcqkf91p2bg1fq1jgfq1i5wkgjdgwg6rg2rb62"; 69355 69482 }; 69356 69483 recipeFile = fetchurl { 69357 69484 url = "https://raw.githubusercontent.com/milkypostman/melpa/ca810e512c357d1d0130aeeb9b46b38c595e3351/recipes/systemd"; ··· 70560 70687 src = fetchFromGitHub { 70561 70688 owner = "davep"; 70562 70689 repo = "thinks.el"; 70563 - rev = "15e0437f5b635bdcf738ca092e26aa6d8ecdba36"; 70564 - sha256 = "1i2i8c53z8n48407jaz641adszv13yjg8cvq4k3hijddp651k555"; 70690 + rev = "c02f236abc8c2025d9f01460b09b89ebdc96e28d"; 70691 + sha256 = "0g4ls668kyqnh4xkvz1s1z9j6n0a1gkgrzgl98hys7hny6zrk7aa"; 70565 70692 }; 70566 70693 recipeFile = fetchurl { 70567 70694 url = "https://raw.githubusercontent.com/milkypostman/melpa/439957cabf379651dc243219a83c3c96bae6f8cf/recipes/thinks"; ··· 70623 70750 src = fetchFromGitHub { 70624 70751 owner = "apache"; 70625 70752 repo = "thrift"; 70626 - rev = "0a8c34ceedf0f9272fb6d3519596ddf90cffcac2"; 70627 - sha256 = "1bhcn79l52m5ad4z8sv9165vsib2rvmqcf1sdaisrk7nfqwvy8sc"; 70753 + rev = "ec64f23d236d7874e3b28ae86c833f57c7aa3389"; 70754 + sha256 = "0b819jbs0318dap8nfvs6ljfiw5qiqbhgda3czq4vns728m0rqsa"; 70628 70755 }; 70629 70756 recipeFile = fetchurl { 70630 70757 url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift"; ··· 71484 71611 license = lib.licenses.free; 71485 71612 }; 71486 71613 }) {}; 71487 - tramp-hdfs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 71614 + tramp-hdfs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 71488 71615 melpaBuild { 71489 71616 pname = "tramp-hdfs"; 71490 - version = "20151028.2036"; 71617 + version = "20170809.1508"; 71491 71618 src = fetchFromGitHub { 71492 71619 owner = "raghavgautam"; 71493 71620 repo = "tramp-hdfs"; 71494 - rev = "82683b45eabc09f327ea45a9e8faba0524eada29"; 71495 - sha256 = "0llzfn9y3yyz2wwdbv8whx8vy2lazbnww6hjj0r621gkfxjml7wd"; 71621 + rev = "c8eed61e56b06a23ec631ad3c29e61b230a0eda1"; 71622 + sha256 = "1k7mzs7mlixlf2v4h3s794b5b4r7pikdkq5b21zwhdmhgqhmrgcn"; 71496 71623 }; 71497 71624 recipeFile = fetchurl { 71498 71625 url = "https://raw.githubusercontent.com/milkypostman/melpa/4c185553314a2a9fe18907fd9251077777b33538/recipes/tramp-hdfs"; 71499 71626 sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b"; 71500 71627 name = "tramp-hdfs"; 71501 71628 }; 71502 - packageRequires = []; 71629 + packageRequires = [ emacs ]; 71503 71630 meta = { 71504 71631 homepage = "https://melpa.org/#/tramp-hdfs"; 71505 71632 license = lib.licenses.free; ··· 71550 71677 transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: 71551 71678 melpaBuild { 71552 71679 pname = "transmission"; 71553 - version = "20170804.559"; 71680 + version = "20170807.823"; 71554 71681 src = fetchFromGitHub { 71555 71682 owner = "holomorph"; 71556 71683 repo = "transmission"; 71557 - rev = "c9de81914e2688dc1c6a3b2bf70013a2a5ed0b63"; 71558 - sha256 = "1vlla25lk75s84ns2svxdnvwfwhwp6jigmsq5v4s7k9xq5py0df7"; 71684 + rev = "b165329a21b9d2693661372f4802208f52029c7a"; 71685 + sha256 = "1lksw9nxvaml4ykhr6m8na3dcwk13r1q86hncyk3ybrg5w9663bq"; 71559 71686 }; 71560 71687 recipeFile = fetchurl { 71561 71688 url = "https://raw.githubusercontent.com/milkypostman/melpa/9ed7e414687c0bd82b140a1bd8044084d094d18f/recipes/transmission"; ··· 71655 71782 treemacs = callPackage ({ ace-window, cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pfuture, s }: 71656 71783 melpaBuild { 71657 71784 pname = "treemacs"; 71658 - version = "20170809.1104"; 71785 + version = "20170812.134"; 71659 71786 src = fetchFromGitHub { 71660 71787 owner = "Alexander-Miller"; 71661 71788 repo = "treemacs"; 71662 - rev = "0b413fc58d9bffd30132ee33dc4c98f9717e53df"; 71663 - sha256 = "0lwy721n9f18mxs5xz9cgfc2rpqrz44yiw6vvy9bxmdfhq51rlaf"; 71789 + rev = "a984df7da28625704544f9e344bc1653c7b35f87"; 71790 + sha256 = "1y6il029nj7s6ik1z92rcxg3vdnny4jx5zbjhqi0i62qrs44r58m"; 71664 71791 }; 71665 71792 recipeFile = fetchurl { 71666 71793 url = "https://raw.githubusercontent.com/milkypostman/melpa/a52c2770097fe8968bff7c31ac411b3d9b60972e/recipes/treemacs"; ··· 71680 71807 src = fetchFromGitHub { 71681 71808 owner = "Alexander-Miller"; 71682 71809 repo = "treemacs"; 71683 - rev = "0b413fc58d9bffd30132ee33dc4c98f9717e53df"; 71684 - sha256 = "0lwy721n9f18mxs5xz9cgfc2rpqrz44yiw6vvy9bxmdfhq51rlaf"; 71810 + rev = "a984df7da28625704544f9e344bc1653c7b35f87"; 71811 + sha256 = "1y6il029nj7s6ik1z92rcxg3vdnny4jx5zbjhqi0i62qrs44r58m"; 71685 71812 }; 71686 71813 recipeFile = fetchurl { 71687 71814 url = "https://raw.githubusercontent.com/milkypostman/melpa/a52c2770097fe8968bff7c31ac411b3d9b60972e/recipes/treemacs-evil"; ··· 71905 72032 tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }: 71906 72033 melpaBuild { 71907 72034 pname = "tuareg"; 71908 - version = "20170803.331"; 72035 + version = "20170813.1222"; 71909 72036 src = fetchFromGitHub { 71910 72037 owner = "ocaml"; 71911 72038 repo = "tuareg"; 71912 - rev = "3dd1684db5d085f1b668d19646a4051a3261f34e"; 71913 - sha256 = "1d7yc0iqmxxqlcsbbci4wcz49sbfj6pdvbr7d98dsjxrg6pgjzjh"; 72039 + rev = "94428c76d247e26e35964f68f9991e04f26007e8"; 72040 + sha256 = "1q76jv34xm12hn8n362mlh1j44rj020nyc2cy7s30ayk750lklbp"; 71914 72041 }; 71915 72042 recipeFile = fetchurl { 71916 72043 url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg"; ··· 72178 72305 typescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 72179 72306 melpaBuild { 72180 72307 pname = "typescript-mode"; 72181 - version = "20170710.427"; 72308 + version = "20170813.1541"; 72182 72309 src = fetchFromGitHub { 72183 72310 owner = "ananthakumaran"; 72184 72311 repo = "typescript.el"; 72185 - rev = "1cea84486f937946a90caacf2a7c86ca855d1c9d"; 72186 - sha256 = "0s9gnlm52rsdda0qzfn89sjawd5r5qxdc878y11cak9zz4h6d706"; 72312 + rev = "2c43dd034c156762589f80f7c6163a2bd35b51d0"; 72313 + sha256 = "1xyalhrv7d8fa32xsyx044bxcxk7shm44hcjrncghps9w21zfdwm"; 72187 72314 }; 72188 72315 recipeFile = fetchurl { 72189 72316 url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f534a1e2cee4ad2e32e32802c5080207417b3d/recipes/typescript-mode"; ··· 72487 72614 underline-with-char = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 72488 72615 melpaBuild { 72489 72616 pname = "underline-with-char"; 72490 - version = "20170714.1511"; 72617 + version = "20170814.223"; 72491 72618 src = fetchFromGitHub { 72492 72619 owner = "marcowahl"; 72493 72620 repo = "underline-with-char"; 72494 - rev = "b792d4f822bceb0ab0ee63ddcaeddc2085ed3188"; 72495 - sha256 = "0s2p2kjw00p3j9z6hj0d89z3bbwcs12z0h0hg5bjxcb1580dqxhq"; 72621 + rev = "6daeba77e17dc11558ca3ccb0495524f5104d581"; 72622 + sha256 = "1i6qgkzn8rlv44mjc4b9sksr4wpnj9a1b6p1y3g6fqpvhy5pmygg"; 72496 72623 }; 72497 72624 recipeFile = fetchurl { 72498 72625 url = "https://raw.githubusercontent.com/milkypostman/melpa/e24888ccf61ac05eba5c30a47d35653f2badf019/recipes/underline-with-char"; ··· 72999 73126 use-package = callPackage ({ bind-key, diminish, fetchFromGitHub, fetchurl, lib, melpaBuild }: 73000 73127 melpaBuild { 73001 73128 pname = "use-package"; 73002 - version = "20170710.1234"; 73129 + version = "20170812.2256"; 73003 73130 src = fetchFromGitHub { 73004 73131 owner = "jwiegley"; 73005 73132 repo = "use-package"; 73006 - rev = "7b055494e39efba8b237202b7c97f40aa19e2579"; 73007 - sha256 = "0dzvnz8s60gsrmhfrdr121ji7xw67bmfdwfd8vhffa87wyibrh2n"; 73133 + rev = "360df30683a711c443f87e495ba14cdd125a505d"; 73134 + sha256 = "0nz0gk6gf9060hbyqr5vgzwr620k6l5sk9n6jbhfyrwmcscnmilc"; 73008 73135 }; 73009 73136 recipeFile = fetchurl { 73010 73137 url = "https://raw.githubusercontent.com/milkypostman/melpa/3f9b52790e2a0bd579c24004873df5384e2ba549/recipes/use-package"; ··· 75009 75136 whole-line-or-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 75010 75137 melpaBuild { 75011 75138 pname = "whole-line-or-region"; 75012 - version = "20110901.130"; 75139 + version = "20170814.20"; 75013 75140 src = fetchFromGitHub { 75014 75141 owner = "purcell"; 75015 75142 repo = "whole-line-or-region"; 75016 - rev = "a60e022b30c2f4d3118bcaef1adb77b90e0ca941"; 75017 - sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; 75143 + rev = "ef89af99009229af20a0a2f6c277138d92ed7085"; 75144 + sha256 = "0by8lfkpzpmms57fj9mjimxmg3an9q7iyl3nghzdfhcngp0bprvy"; 75018 75145 }; 75019 75146 recipeFile = fetchurl { 75020 75147 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/whole-line-or-region"; ··· 75095 75222 src = fetchFromGitHub { 75096 75223 owner = "foretagsplatsen"; 75097 75224 repo = "emacs-js"; 75098 - rev = "38d2aca88b4afd2ade7f38df7275a3d31324df3b"; 75099 - sha256 = "1bahwsx1cpima658bg62w63a4s24vp0qpw0gmxb245cyzpi8ng2j"; 75225 + rev = "caa51fb2a48d79609bbbd3a012e149e4998a98c4"; 75226 + sha256 = "0pky2xi1h3kzi0pykd5c568rhpq6bq2z2pknzw75rnd0h5j4sj59"; 75100 75227 }; 75101 75228 recipeFile = fetchurl { 75102 75229 url = "https://raw.githubusercontent.com/milkypostman/melpa/78d7a15152f45a193384741fa00d0649c4bba91e/recipes/widgetjs"; ··· 75257 75384 window-jump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 75258 75385 melpaBuild { 75259 75386 pname = "window-jump"; 75260 - version = "20150213.1236"; 75387 + version = "20170809.1508"; 75261 75388 src = fetchFromGitHub { 75262 75389 owner = "chumpage"; 75263 75390 repo = "chumpy-windows"; 75264 - rev = "164be41b588b615864258c502583100d3ccfe13e"; 75265 - sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; 75391 + rev = "6bdb51e9a346907d60a9625f6180bddd06be6674"; 75392 + sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6"; 75266 75393 }; 75267 75394 recipeFile = fetchurl { 75268 75395 url = "https://raw.githubusercontent.com/milkypostman/melpa/d44fc32e12f00bbaa799b4054e9ff0fc0d3bfbfb/recipes/window-jump"; ··· 75569 75696 with-simulated-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, seq }: 75570 75697 melpaBuild { 75571 75698 pname = "with-simulated-input"; 75572 - version = "20170807.1512"; 75699 + version = "20170810.1158"; 75573 75700 src = fetchFromGitHub { 75574 75701 owner = "DarwinAwardWinner"; 75575 75702 repo = "with-simulated-input"; 75576 - rev = "9efeb236c8f6887a8591d6241962c37266d8e726"; 75577 - sha256 = "1v8c85ahsk9pz3zndh0c9xba4c78f4b1j97hbv62jirvr75b079g"; 75703 + rev = "5a0d3f039965667c6a8d36bd2cbfbd9c22299033"; 75704 + sha256 = "16dx6fzla7jzjxv7yzn8b9qwj2ja17x02rxzglyrg9mf4kd1y9yp"; 75578 75705 }; 75579 75706 recipeFile = fetchurl { 75580 75707 url = "https://raw.githubusercontent.com/milkypostman/melpa/e4ddf16e19f5018106a423327ddc7e7499cf9248/recipes/with-simulated-input"; ··· 76073 76200 xah-css-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76074 76201 melpaBuild { 76075 76202 pname = "xah-css-mode"; 76076 - version = "20170804.2244"; 76203 + version = "20170811.2157"; 76077 76204 src = fetchFromGitHub { 76078 76205 owner = "xahlee"; 76079 76206 repo = "xah-css-mode"; 76080 - rev = "a91d934e15343738393cb2dc7a75d712581d09eb"; 76081 - sha256 = "14b1aw1iffhk7gk0fwyrjb40173cli968hy6x72mmgq3ry664h44"; 76207 + rev = "ed30c4530647de0016e3e03b8f2880591b901a05"; 76208 + sha256 = "1hfx3qy2wmxg75wfzjdglglpm1ai04jafqrv2qx4kh0q3ra7yzgq"; 76082 76209 }; 76083 76210 recipeFile = fetchurl { 76084 76211 url = "https://raw.githubusercontent.com/milkypostman/melpa/57c2e2112c4eb50ee6ebddef9c3d219cc5ced804/recipes/xah-css-mode"; ··· 76094 76221 xah-elisp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76095 76222 melpaBuild { 76096 76223 pname = "xah-elisp-mode"; 76097 - version = "20170804.2206"; 76224 + version = "20170811.2138"; 76098 76225 src = fetchFromGitHub { 76099 76226 owner = "xahlee"; 76100 76227 repo = "xah-elisp-mode"; 76101 - rev = "174fdd95edb77820a03eb161e3ab6b867936f9fe"; 76102 - sha256 = "1l3a6hkhv26ixkmjc1zfl43zx8s0c3czk8zgahydpjx111q5381d"; 76228 + rev = "f9059b7a081da8981ed6ae4cb2f5a325e7775553"; 76229 + sha256 = "10f3dna1mpnjia87w5gkqkqrvkrg1h5zm33znsmgzwlqgzkhq94d"; 76103 76230 }; 76104 76231 recipeFile = fetchurl { 76105 76232 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2e996dd5b0061371662490e0b21d3c5bb506550/recipes/xah-elisp-mode"; ··· 76115 76242 xah-find = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76116 76243 melpaBuild { 76117 76244 pname = "xah-find"; 76118 - version = "20170804.2234"; 76245 + version = "20170811.2149"; 76119 76246 src = fetchFromGitHub { 76120 76247 owner = "xahlee"; 76121 76248 repo = "xah-find"; 76122 - rev = "6b70b8122643402aedcc1cf88406330628d92286"; 76123 - sha256 = "0gd7nsx205s33dxjx52cc4k8frdxrnwsvl7qkx8mckqvc1y2wxa1"; 76249 + rev = "9783b74a5f3593db6c86e929b58f2cb9d5bc8624"; 76250 + sha256 = "1ssd9kzn7nfqr01mb7shzkwkz61028580dkvzgxxs80403gs373q"; 76124 76251 }; 76125 76252 recipeFile = fetchurl { 76126 76253 url = "https://raw.githubusercontent.com/milkypostman/melpa/1d94ffd9c3380cd56770f253e43d566a95083e37/recipes/xah-find"; ··· 76136 76263 xah-fly-keys = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76137 76264 melpaBuild { 76138 76265 pname = "xah-fly-keys"; 76139 - version = "20170804.2154"; 76266 + version = "20170811.2147"; 76140 76267 src = fetchFromGitHub { 76141 76268 owner = "xahlee"; 76142 76269 repo = "xah-fly-keys"; 76143 - rev = "4a7da476edf9eed9ad7725fe31113b87f97696bd"; 76144 - sha256 = "140gxnnxqk649j60d3aibs42si95vakmy6m937gb25b2bmvhkwwh"; 76270 + rev = "90eee20efad8cd6902ca6ce7426f62c934f047d8"; 76271 + sha256 = "1wccz83nfig4i6xp8di1rvs678w9a20dbfd5j932hazvw3796gvj"; 76145 76272 }; 76146 76273 recipeFile = fetchurl { 76147 76274 url = "https://raw.githubusercontent.com/milkypostman/melpa/fc1683be70d1388efa3ce00adc40510e595aef2b/recipes/xah-fly-keys"; ··· 76157 76284 xah-get-thing = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76158 76285 melpaBuild { 76159 76286 pname = "xah-get-thing"; 76160 - version = "20170804.2211"; 76287 + version = "20170811.2155"; 76161 76288 src = fetchFromGitHub { 76162 76289 owner = "xahlee"; 76163 76290 repo = "xah-get-thing-or-selection"; 76164 - rev = "00aa90c74f6e23eb9dae3082a16454264f9d1ed8"; 76165 - sha256 = "0xp8w9myhdwiw7m2zj9bd2kc93djx35s3iss5yrz92kcw6m3n53m"; 76291 + rev = "4e0782af230292b18e787bee43d3c94750383a1b"; 76292 + sha256 = "10xlxk95s7dxwmbylbhbwa3px5z6add8ash0gkgqjb4ibdfrclzi"; 76166 76293 }; 76167 76294 recipeFile = fetchurl { 76168 76295 url = "https://raw.githubusercontent.com/milkypostman/melpa/9e8dc32a5317f0ff0e72fa87220243dd742eb1ef/recipes/xah-get-thing"; ··· 76178 76305 xah-lookup = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76179 76306 melpaBuild { 76180 76307 pname = "xah-lookup"; 76181 - version = "20170804.2259"; 76308 + version = "20170811.2143"; 76182 76309 src = fetchFromGitHub { 76183 76310 owner = "xahlee"; 76184 76311 repo = "lookup-word-on-internet"; 76185 - rev = "7f4e9252d5f84438c83912720bcd313092f8f44f"; 76186 - sha256 = "17fq0b2rc9wjjii17mnybp8v3nvp297azkd2bwz952r0x9g2s92b"; 76312 + rev = "feb480cdfd0b3e6751cc589fbf40538daa60b75b"; 76313 + sha256 = "1x1pdpngv6k1gwi7x2nsqni778wssicgsrddxaskri8axkxdiq65"; 76187 76314 }; 76188 76315 recipeFile = fetchurl { 76189 76316 url = "https://raw.githubusercontent.com/milkypostman/melpa/38e6609a846a3c7781e0f03730b79bbf8d0355a9/recipes/xah-lookup"; ··· 76199 76326 xah-math-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76200 76327 melpaBuild { 76201 76328 pname = "xah-math-input"; 76202 - version = "20170803.722"; 76329 + version = "20170811.2145"; 76203 76330 src = fetchFromGitHub { 76204 76331 owner = "xahlee"; 76205 76332 repo = "xah-math-input"; 76206 - rev = "8c988bc469209e7f393fa5a1ac4663bfb713c7a7"; 76207 - sha256 = "1ndczz69v70c13jdb651yiqnk1avy78i11ydbvr0qf78gd859i5j"; 76333 + rev = "2575611505d057061938ca21df621c6f9cac4cc5"; 76334 + sha256 = "0mmbvyqihg0036cix3xh2phq68816zzcnp8cf4yc42hp1aksg770"; 76208 76335 }; 76209 76336 recipeFile = fetchurl { 76210 76337 url = "https://raw.githubusercontent.com/milkypostman/melpa/95d57e33e6d60dc20d6452b407ea1486604ba23a/recipes/xah-math-input"; ··· 76241 76368 xah-replace-pairs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76242 76369 melpaBuild { 76243 76370 pname = "xah-replace-pairs"; 76244 - version = "20170804.2216"; 76371 + version = "20170811.2151"; 76245 76372 src = fetchFromGitHub { 76246 76373 owner = "xahlee"; 76247 76374 repo = "xah-replace-pairs"; 76248 - rev = "1249d62fe1d962e38ab8d9e48813c1ad5d21ae51"; 76249 - sha256 = "0i8r7kv2kai1r1fs509j3lx4kzv8bv6qsb3882qh6hjcnlpf0pyy"; 76375 + rev = "fb72b406ae171e840798172321e72e32ba904276"; 76376 + sha256 = "01ilk5ic884nfili823zp05ylrnj9iqhwc2v8brc908f23mbdf79"; 76250 76377 }; 76251 76378 recipeFile = fetchurl { 76252 76379 url = "https://raw.githubusercontent.com/milkypostman/melpa/0e7de2fe0e55b1a546f105aa1aac44fde46c8f44/recipes/xah-replace-pairs"; ··· 76560 76687 src = fetchFromGitHub { 76561 76688 owner = "CQQL"; 76562 76689 repo = "xresources-theme"; 76563 - rev = "09a0bfc1684161dd1cdc899c027808a99646a652"; 76564 - sha256 = "171vffga2yzxqmgh77vila6x96bz1i6818f1pfaxblw1hz2ga341"; 76690 + rev = "feb0552d31cb54210eabbc1abe32c8ea62841b6f"; 76691 + sha256 = "1dfksid7dc27dz43lrriyr724qs7pf7dqhkmcai6b5qbi893ib8y"; 76565 76692 }; 76566 76693 recipeFile = fetchurl { 76567 76694 url = "https://raw.githubusercontent.com/milkypostman/melpa/4cef3a5683ea572f823d915ec2a94d591ac915d6/recipes/xresources-theme"; ··· 76791 76918 src = fetchFromGitHub { 76792 76919 owner = "drdv"; 76793 76920 repo = "yahtzee"; 76794 - rev = "fdff36994bc59bb02c1968684862ded9003c6c7d"; 76795 - sha256 = "0w38s7xl77ch8h65x2njn9nwvwdxjw7rz15gw2qmp69sjv4nvnna"; 76921 + rev = "7652ce2c926084a893b26695a765ba8b8f4ba328"; 76922 + sha256 = "09mzglx049b2xcrz8g7iywxbr79haf1xbcs8qnj1ljypmdmkq89a"; 76796 76923 }; 76797 76924 recipeFile = fetchurl { 76798 76925 url = "https://raw.githubusercontent.com/milkypostman/melpa/200169fdabce0ae3a2ecb6f4f3255c15ec3ed094/recipes/yahtzee"; ··· 77097 77224 license = lib.licenses.free; 77098 77225 }; 77099 77226 }) {}; 77227 + yasnippet-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: 77228 + melpaBuild { 77229 + pname = "yasnippet-snippets"; 77230 + version = "20170813.416"; 77231 + src = fetchFromGitHub { 77232 + owner = "AndreaCrotti"; 77233 + repo = "yasnippet-snippets"; 77234 + rev = "21fc956845bf7aff4a84511a813d3afd3a620a40"; 77235 + sha256 = "00balpdz6gpyngzir0ddvw492bbv045spchaxkf1lxc0pl0ldjh9"; 77236 + }; 77237 + recipeFile = fetchurl { 77238 + url = "https://raw.githubusercontent.com/milkypostman/melpa/25b8d4efe2e7833eb95dfdf33aa3ecc34af7a687/recipes/yasnippet-snippets"; 77239 + sha256 = "0i6rk50a9l26r47v9xsnx35ziz4spx5pml3ys8y30n0r0xjdsj51"; 77240 + name = "yasnippet-snippets"; 77241 + }; 77242 + packageRequires = [ yasnippet ]; 77243 + meta = { 77244 + homepage = "https://melpa.org/#/yasnippet-snippets"; 77245 + license = lib.licenses.free; 77246 + }; 77247 + }) {}; 77100 77248 yatemplate = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: 77101 77249 melpaBuild { 77102 77250 pname = "yatemplate"; ··· 77442 77590 zephir-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: 77443 77591 melpaBuild { 77444 77592 pname = "zephir-mode"; 77445 - version = "20170808.1302"; 77593 + version = "20170810.2302"; 77446 77594 src = fetchFromGitHub { 77447 77595 owner = "sergeyklay"; 77448 77596 repo = "zephir-mode"; 77449 - rev = "9295bb18b273502dfcc75c34c04ce9f48fe4e53a"; 77450 - sha256 = "17wsl7c9fcr6qybr7qhlvkikb11n809cxi6ghgskh131a8mxb4fn"; 77597 + rev = "5c8fcf633709b70f87015073a5d48556fc930b76"; 77598 + sha256 = "1c671ncrb4dmrmbx5p7qqxv01wah63cjisn60mhrpzjcyg8w8hss"; 77451 77599 }; 77452 77600 recipeFile = fetchurl { 77453 77601 url = "https://raw.githubusercontent.com/milkypostman/melpa/5bd901c93ce7f64de6082e801327adbd18fd4517/recipes/zephir-mode";
+142 -58
pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
··· 1268 1268 license = lib.licenses.free; 1269 1269 }; 1270 1270 }) {}; 1271 + amx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 1272 + melpaBuild { 1273 + pname = "amx"; 1274 + version = "1.1.1"; 1275 + src = fetchFromGitHub { 1276 + owner = "DarwinAwardWinner"; 1277 + repo = "amx"; 1278 + rev = "7d5d7974057a36a332f8b30e99fe464f25b6e0ae"; 1279 + sha256 = "0jqvah4i2r5di8k3rx6hyjnxdr3alzqmlv6iab5wdhkafyvwl0dq"; 1280 + }; 1281 + recipeFile = fetchurl { 1282 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c55bfad05343b2b0f3150fd2b4adb07a1768c1c0/recipes/amx"; 1283 + sha256 = "1ikhjvkca0lsb9j719yf6spg6nwc0qaydkd8aax162sis7kp9fap"; 1284 + name = "amx"; 1285 + }; 1286 + packageRequires = []; 1287 + meta = { 1288 + homepage = "https://melpa.org/#/amx"; 1289 + license = lib.licenses.free; 1290 + }; 1291 + }) {}; 1271 1292 anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: 1272 1293 melpaBuild { 1273 1294 pname = "anaconda-mode"; ··· 3859 3880 cfengine-code-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 3860 3881 melpaBuild { 3861 3882 pname = "cfengine-code-style"; 3862 - version = "3.10.1"; 3883 + version = "3.11.0"; 3863 3884 src = fetchFromGitHub { 3864 3885 owner = "cfengine"; 3865 3886 repo = "core"; 3866 - rev = "99e8b116e779f97e96866891362817c1c5c6534c"; 3867 - sha256 = "1ckk6jvmwrrlfd4ja8n5q99ajasgvbdkzkba9mswhq9dvk6avvn0"; 3887 + rev = "520851447dba901097b121b58b1a0da370481a2c"; 3888 + sha256 = "0sz4zqw2s7f5rhqad4kmrfdsl24xqflfsm4hzfbwzvsrlp7ndis7"; 3868 3889 }; 3869 3890 recipeFile = fetchurl { 3870 3891 url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style"; ··· 4564 4585 cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 4565 4586 melpaBuild { 4566 4587 pname = "cmake-mode"; 4567 - version = "3.9.0"; 4588 + version = "3.9.1"; 4568 4589 src = fetchFromGitHub { 4569 4590 owner = "Kitware"; 4570 4591 repo = "CMake"; 4571 - rev = "f15cfd891d1e01247ed285320ae32b6c3182ac8f"; 4572 - sha256 = "0asp6kijrmf9bayg8jvhgkd1z2falzhyippkwgih9ygpa65qvqpq"; 4592 + rev = "fca4423786ba2c4a5ab0ec6c1a1cbac8cd8600b4"; 4593 + sha256 = "08x5mqhrsm3y28hiy32h336n9ggn2snb56k242hqhij1lsg7iga3"; 4573 4594 }; 4574 4595 recipeFile = fetchurl { 4575 4596 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 5365 5386 license = lib.licenses.free; 5366 5387 }; 5367 5388 }) {}; 5389 + company-terraform = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, terraform-mode }: 5390 + melpaBuild { 5391 + pname = "company-terraform"; 5392 + version = "1.1"; 5393 + src = fetchFromGitHub { 5394 + owner = "rafalcieslak"; 5395 + repo = "emacs-company-terraform"; 5396 + rev = "b08ced5bac44c0253e3725a7f7a6246bdf1cf2b6"; 5397 + sha256 = "10922ykv6ii28rnhg4vri2g1fs5897xjxw6a5pk1rw2mld5kx57r"; 5398 + }; 5399 + recipeFile = fetchurl { 5400 + url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9732da975dcf59d3b311b19e20abbb29c33656/recipes/company-terraform"; 5401 + sha256 = "198ppqn6f7y9bg582z5s4cl9gg1q9ibsr7mmn68b50zvma7ankzh"; 5402 + name = "company-terraform"; 5403 + }; 5404 + packageRequires = [ company emacs terraform-mode ]; 5405 + meta = { 5406 + homepage = "https://melpa.org/#/company-terraform"; 5407 + license = lib.licenses.free; 5408 + }; 5409 + }) {}; 5368 5410 company-web = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: 5369 5411 melpaBuild { 5370 5412 pname = "company-web"; ··· 6313 6355 dashboard = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, page-break-lines }: 6314 6356 melpaBuild { 6315 6357 pname = "dashboard"; 6316 - version = "1.0.3"; 6358 + version = "1.2.3"; 6317 6359 src = fetchFromGitHub { 6318 6360 owner = "rakanalh"; 6319 6361 repo = "emacs-dashboard"; 6320 - rev = "cd9899342bc94e59aa42275554810e50d045aaa4"; 6321 - sha256 = "1klmjdym4w3cbarabzvkxddjdcisfk62wkpys3z4nclp4g91p8as"; 6362 + rev = "f435fd394edc5ad9cf82065ef73b5821e3f93c58"; 6363 + sha256 = "0f0ipnij69z90qv9lzl6x9id3f6nayrgqxppbcf4gkxh25pi5nkw"; 6322 6364 }; 6323 6365 recipeFile = fetchurl { 6324 6366 url = "https://raw.githubusercontent.com/milkypostman/melpa/e9a79341ccaa82a8c065e71c02fe6aee22007c66/recipes/dashboard"; ··· 7265 7307 docker-compose-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yaml-mode }: 7266 7308 melpaBuild { 7267 7309 pname = "docker-compose-mode"; 7268 - version = "0.2.2"; 7310 + version = "0.3.1"; 7269 7311 src = fetchFromGitHub { 7270 7312 owner = "meqif"; 7271 7313 repo = "docker-compose-mode"; 7272 - rev = "e4cce60d4e6c6b517cb786c14fbf9ed8a13f530c"; 7273 - sha256 = "0fn8b9dmz911sqqlq2f6vd84qg39j2ban3ixh0wblcxbrd5wli2v"; 7314 + rev = "37d8afb6a72f829fdbc77e76f18587530ff319b4"; 7315 + sha256 = "11283gl19iqm03a5l635qq36fpxlj05j7a6hlnv7v15n3h7d5512"; 7274 7316 }; 7275 7317 recipeFile = fetchurl { 7276 7318 url = "https://raw.githubusercontent.com/milkypostman/melpa/37dd4c1fc11d22598c6faf03ccc860503a68b950/recipes/docker-compose-mode"; ··· 7873 7915 ebal = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7874 7916 melpaBuild { 7875 7917 pname = "ebal"; 7876 - version = "0.3.0"; 7918 + version = "0.3.1"; 7877 7919 src = fetchFromGitHub { 7878 7920 owner = "mrkkrp"; 7879 7921 repo = "ebal"; 7880 - rev = "7bc6c5a5e504353282848cd2d0f7c73b4bccda83"; 7881 - sha256 = "06pn4srx00l63lkk6kyd68svlyajxkpxd9mpjlvdpgbydzh914xl"; 7922 + rev = "4d19565516785348894c4911e757e33a270b3efd"; 7923 + sha256 = "1wj9h8ypi70az387c7pcrpc59lpf89dkp2q4df2ighxw3l648mb7"; 7882 7924 }; 7883 7925 recipeFile = fetchurl { 7884 7926 url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal"; ··· 11419 11461 fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11420 11462 melpaBuild { 11421 11463 pname = "fcitx"; 11422 - version = "0.2.2"; 11464 + version = "0.2.3"; 11423 11465 src = fetchFromGitHub { 11424 11466 owner = "cute-jumper"; 11425 11467 repo = "fcitx.el"; 11426 - rev = "77f1e187b9cecb6975bedcfe91c8c81f1b133686"; 11427 - sha256 = "0n0v9jwswcc16cigyffvy3m9y7qqrs8qzjs11sq3d420zrv16b39"; 11468 + rev = "6d552ab44234ed78ce9a50f2412f56197266bc9f"; 11469 + sha256 = "08l859rw1lwj6hdxrlxqlxf1cfxv8yv9h1jsgs5zfis3hp7nq39j"; 11428 11470 }; 11429 11471 recipeFile = fetchurl { 11430 11472 url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx"; ··· 12308 12350 flycheck-popup-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup }: 12309 12351 melpaBuild { 12310 12352 pname = "flycheck-popup-tip"; 12311 - version = "0.12.1"; 12353 + version = "0.12.2"; 12312 12354 src = fetchFromGitHub { 12313 12355 owner = "flycheck"; 12314 12356 repo = "flycheck-popup-tip"; 12315 - rev = "6a857d43a1fa136e5b6715421d1b44a72170be0c"; 12316 - sha256 = "1hglfhf1vrvrp2vf1p4b226mpab7m2napjw6w0qlw3dj72787pqw"; 12357 + rev = "ef86aad907f27ca076859d8d9416f4f7727619c6"; 12358 + sha256 = "1bi6f9nm4bylsbjv4qnkar35s6xzdf2cc2cxi3g691p9527apdz6"; 12317 12359 }; 12318 12360 recipeFile = fetchurl { 12319 12361 url = "https://raw.githubusercontent.com/milkypostman/melpa/9b2269ee9532bb092756ae0c0693cb44b73820e8/recipes/flycheck-popup-tip"; ··· 12350 12392 flycheck-pycheckers = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 12351 12393 melpaBuild { 12352 12394 pname = "flycheck-pycheckers"; 12353 - version = "0.1"; 12395 + version = "0.2"; 12354 12396 src = fetchFromGitHub { 12355 12397 owner = "msherry"; 12356 12398 repo = "flycheck-pycheckers"; 12357 - rev = "3c89f455472b5a77e28129825bb801b464d96ca1"; 12358 - sha256 = "1fxbabxsdqm98vhs51k5z6prjkskjq2nsl9vsmlbwgjgyg4hx1xr"; 12399 + rev = "220c551df591792d08fc9d149ab3329171743cb9"; 12400 + sha256 = "0q1sz28nlnamcm4l587q94b7cyak9d4wpgpr33a05m9lw4a6z74i"; 12359 12401 }; 12360 12402 recipeFile = fetchurl { 12361 12403 url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers"; ··· 14479 14521 gitpatch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 14480 14522 melpaBuild { 14481 14523 pname = "gitpatch"; 14482 - version = "0.5.0"; 14524 + version = "0.5.1"; 14483 14525 src = fetchFromGitHub { 14484 14526 owner = "tumashu"; 14485 14527 repo = "gitpatch"; 14486 - rev = "577d5adf65c8133caa325c10e89e1e2fc323c907"; 14487 - sha256 = "1jj12pjwza6cq8a3kr8nqnmm3vxs0wam8h983irry4xr4ifywsn4"; 14528 + rev = "94d40a2ee2b7cd7b209546ea02568079176b0034"; 14529 + sha256 = "1drf4fvmak7brf16axkh4nfz8pg44i7pjhfjz3dbkycbpp8y5vig"; 14488 14530 }; 14489 14531 recipeFile = fetchurl { 14490 14532 url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gitpatch"; ··· 15004 15046 google-this = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15005 15047 melpaBuild { 15006 15048 pname = "google-this"; 15007 - version = "1.11"; 15049 + version = "1.12"; 15008 15050 src = fetchFromGitHub { 15009 15051 owner = "Malabarba"; 15010 15052 repo = "emacs-google-this"; 15011 - rev = "22cff810e7ed3b3c9dae066588508864c25c6d99"; 15012 - sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0"; 15053 + rev = "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84"; 15054 + sha256 = "1dbra309w8awmi0g0pp7r2dm9nwrj2j9lpl7md8wa89rnzazwahl"; 15013 15055 }; 15014 15056 recipeFile = fetchurl { 15015 15057 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/google-this"; ··· 15295 15337 license = lib.licenses.free; 15296 15338 }; 15297 15339 }) {}; 15298 - graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: 15340 + graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-completing-read-plus, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: 15299 15341 melpaBuild { 15300 15342 pname = "graphene"; 15301 - version = "0.9.7"; 15343 + version = "0.9.8"; 15302 15344 src = fetchFromGitHub { 15303 15345 owner = "rdallasgray"; 15304 15346 repo = "graphene"; 15305 - rev = "b25707ae82e286aefa5a66087b12c9cb3b7bf2ed"; 15306 - sha256 = "1h21fv8plxydydm509immp0kpkf24ba6j3wrbpvp5w4nkx49mlkl"; 15347 + rev = "89bbdaa465b3440f46f588664eada0f091ed6bfe"; 15348 + sha256 = "1xrk26v9d3njydwab7drqg4p3qd8rw2diicfr7bfwd0d21bs5ykz"; 15307 15349 }; 15308 15350 recipeFile = fetchurl { 15309 15351 url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene"; ··· 15316 15358 exec-path-from-shell 15317 15359 flycheck 15318 15360 graphene-meta-theme 15319 - ido-ubiquitous 15361 + ido-completing-read-plus 15320 15362 ppd-sr-speedbar 15321 15363 smartparens 15322 15364 smex ··· 16014 16056 packageRequires = [ avy-menu emacs ]; 16015 16057 meta = { 16016 16058 homepage = "https://melpa.org/#/hasky-extensions"; 16059 + license = lib.licenses.free; 16060 + }; 16061 + }) {}; 16062 + hasky-stack = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: 16063 + melpaBuild { 16064 + pname = "hasky-stack"; 16065 + version = "0.1.0"; 16066 + src = fetchFromGitHub { 16067 + owner = "hasky-mode"; 16068 + repo = "hasky-stack"; 16069 + rev = "a11d1e00f41407ec77ea9e6eab93949a18f58069"; 16070 + sha256 = "1bib7nic9by2vrqvrzpp62dk4apz2iyyprvk4hlgji2hkxyf2wpb"; 16071 + }; 16072 + recipeFile = fetchurl { 16073 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c3faf544872478c3bccf2fe7dc51d406031e4d80/recipes/hasky-stack"; 16074 + sha256 = "08ds0v5p829s47lbhibswnbn1aqfnwf6xx7p5bc5062wxdvqahw8"; 16075 + name = "hasky-stack"; 16076 + }; 16077 + packageRequires = [ emacs f magit-popup ]; 16078 + meta = { 16079 + homepage = "https://melpa.org/#/hasky-stack"; 16017 16080 license = lib.licenses.free; 16018 16081 }; 16019 16082 }) {}; ··· 18495 18558 license = lib.licenses.free; 18496 18559 }; 18497 18560 }) {}; 18498 - ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 18561 + ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, memoize, s }: 18499 18562 melpaBuild { 18500 18563 pname = "ido-completing-read-plus"; 18501 - version = "4.3"; 18564 + version = "4.5"; 18502 18565 src = fetchFromGitHub { 18503 18566 owner = "DarwinAwardWinner"; 18504 18567 repo = "ido-completing-read-plus"; 18505 - rev = "1a1f695eb8e7d4ae2035e506ea3ff5bd4e2d0533"; 18506 - sha256 = "15m8x3dp9m0brpap4l9hsbc47s4fgax3lppxz5v6rcwm625s0ac9"; 18568 + rev = "e8cfebac1df2bfca52003f28ed84cb1a39dc8345"; 18569 + sha256 = "14g5v823wsr0sgrawqw9kwilm68w0k4plz3b00jd7z903np9cxih"; 18507 18570 }; 18508 18571 recipeFile = fetchurl { 18509 18572 url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-completing-read+"; 18510 18573 sha256 = "0rxdv3cd0bg0p8c1bck5vichdq941dki934k23qf5p6cfgw8gw4z"; 18511 18574 name = "ido-completing-read-plus"; 18512 18575 }; 18513 - packageRequires = [ cl-lib emacs s ]; 18576 + packageRequires = [ cl-lib emacs memoize s ]; 18514 18577 meta = { 18515 18578 homepage = "https://melpa.org/#/ido-completing-read+"; 18516 18579 license = lib.licenses.free; ··· 18603 18666 ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: 18604 18667 melpaBuild { 18605 18668 pname = "ido-ubiquitous"; 18606 - version = "4.3"; 18669 + version = "4.5"; 18607 18670 src = fetchFromGitHub { 18608 18671 owner = "DarwinAwardWinner"; 18609 18672 repo = "ido-completing-read-plus"; 18610 - rev = "1a1f695eb8e7d4ae2035e506ea3ff5bd4e2d0533"; 18611 - sha256 = "15m8x3dp9m0brpap4l9hsbc47s4fgax3lppxz5v6rcwm625s0ac9"; 18673 + rev = "e8cfebac1df2bfca52003f28ed84cb1a39dc8345"; 18674 + sha256 = "14g5v823wsr0sgrawqw9kwilm68w0k4plz3b00jd7z903np9cxih"; 18612 18675 }; 18613 18676 recipeFile = fetchurl { 18614 18677 url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-ubiquitous"; ··· 19379 19442 intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: 19380 19443 melpaBuild { 19381 19444 pname = "intero"; 19382 - version = "0.1.20"; 19445 + version = "0.1.21"; 19383 19446 src = fetchFromGitHub { 19384 19447 owner = "commercialhaskell"; 19385 19448 repo = "intero"; 19386 - rev = "402722b5ad035b87fc08bc73343f05610a5fcb3c"; 19387 - sha256 = "143y94b4spslh06x4klvsvil7ywn3cmrad4mg1qc0y0h0d9ksd4v"; 19449 + rev = "4c8f3e7f4ad03179425c722d5072beae254da73b"; 19450 + sha256 = "0q377rpgszqixjbmwck6kcczfb3j8axx0pk6fqavzp8qyc3q121l"; 19388 19451 }; 19389 19452 recipeFile = fetchurl { 19390 19453 url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; ··· 24873 24936 omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup, s, shut-up }: 24874 24937 melpaBuild { 24875 24938 pname = "omnisharp"; 24876 - version = "4.0"; 24939 + version = "4.1"; 24877 24940 src = fetchFromGitHub { 24878 24941 owner = "OmniSharp"; 24879 24942 repo = "omnisharp-emacs"; 24880 - rev = "bf0edf7c74ddcd9976753543481a61a5607eec4e"; 24881 - sha256 = "1x7bvpy2lx51j58grbc45l99mzf55wlx657icc7q5rf2vgb56k01"; 24943 + rev = "a9a66b047606c6b5dc48abdb0eb70a1f9dcd08f2"; 24944 + sha256 = "0m1f62cr0h426g66c7r36v3yr2bdakkjwxzdvpd0gh81xazn8yjz"; 24882 24945 }; 24883 24946 recipeFile = fetchurl { 24884 24947 url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; ··· 28623 28686 protobuf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 28624 28687 melpaBuild { 28625 28688 pname = "protobuf-mode"; 28626 - version = "3.4.0pre1"; 28689 + version = "3.4.0pre3"; 28627 28690 src = fetchFromGitHub { 28628 28691 owner = "google"; 28629 28692 repo = "protobuf"; 28630 - rev = "3afcded28a6aa9c44adf801ca5bff2133fcf3030"; 28631 - sha256 = "03m1fprfz6cwxijp5fls502g6g3svyz760bwwwnbvyx4carwzmsp"; 28693 + rev = "eaeca0d42b1fc4a8023a7f90d889631eda9360a3"; 28694 + sha256 = "02c360xhmnhcybl23fa0p7l3x3zn4mil1c7cnpilnv0bqxy5399n"; 28632 28695 }; 28633 28696 recipeFile = fetchurl { 28634 28697 url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; ··· 30492 30555 ruby-electric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 30493 30556 melpaBuild { 30494 30557 pname = "ruby-electric"; 30495 - version = "2.3.0"; 30558 + version = "2.3.1"; 30496 30559 src = fetchFromGitHub { 30497 30560 owner = "knu"; 30498 30561 repo = "ruby-electric.el"; 30499 - rev = "d04313dbee42c0d1009558a7c9424e4ae8611908"; 30500 - sha256 = "03g6m2xjfjjm06v5gid1vxivzb6lnsdc65d1p2wjaz32j1rmb6gm"; 30562 + rev = "3553448a780a1ea5c3b0e9becd820d4762876593"; 30563 + sha256 = "0h47lfgxjcyyl8gb1w7l8j8h65s3lp1hsq742sl7a1gf5y6bbm3v"; 30501 30564 }; 30502 30565 recipeFile = fetchurl { 30503 30566 url = "https://raw.githubusercontent.com/milkypostman/melpa/5fd5fa797a813e02a6433ecbe2bca1270a383753/recipes/ruby-electric"; ··· 31016 31079 secretaria = callPackage ({ alert, emacs, f, fetchgit, fetchurl, lib, melpaBuild, org, s }: 31017 31080 melpaBuild { 31018 31081 pname = "secretaria"; 31019 - version = "0.2.4"; 31082 + version = "0.2.5"; 31020 31083 src = fetchgit { 31021 31084 url = "https://bitbucket.org/shackra/secretaria.el"; 31022 - rev = "aae30bfc93fa5ea846bce086b22321c46b94ff7b"; 31023 - sha256 = "18ad7q2a131gpvjj8923vp06zh0zfdy1589vs3f09v16aazbcfqc"; 31085 + rev = "7bd1cf591528b18a153e15a260d7817b72c900f2"; 31086 + sha256 = "0n9mj2g59yiqbg81rk0gglbgpvfs550r4y26n8nf5pyxpxfllv5s"; 31024 31087 }; 31025 31088 recipeFile = fetchurl { 31026 31089 url = "https://raw.githubusercontent.com/milkypostman/melpa/7b4c9ccbf2eeaa290f3b9d1e5eaaeb5b5547b365/recipes/secretaria"; ··· 31555 31618 packageRequires = [ emacs language-detection ]; 31556 31619 meta = { 31557 31620 homepage = "https://melpa.org/#/shr-tag-pre-highlight"; 31621 + license = lib.licenses.free; 31622 + }; 31623 + }) {}; 31624 + shrink-path = callPackage ({ dash, f, fetchFromGitLab, fetchurl, lib, melpaBuild, s }: 31625 + melpaBuild { 31626 + pname = "shrink-path"; 31627 + version = "0.3.1"; 31628 + src = fetchFromGitLab { 31629 + owner = "bennya"; 31630 + repo = "shrink-path.el"; 31631 + rev = "9b8cfb59a2dcee8b39b680ab9adad5ecb1f53c0b"; 31632 + sha256 = "0kx0c4syd7k6ff9j463bib32pz4wq0rzjlg6b0yqnymlzfr1mbki"; 31633 + }; 31634 + recipeFile = fetchurl { 31635 + url = "https://raw.githubusercontent.com/milkypostman/melpa/86b0d105e8a57d5f0bcde779441dc80b85e170ea/recipes/shrink-path"; 31636 + sha256 = "0fq13c6g7qbq6f2ry9dzdyg1f6p41wimkjcdaj177rnilz77alzb"; 31637 + name = "shrink-path"; 31638 + }; 31639 + packageRequires = [ dash f s ]; 31640 + meta = { 31641 + homepage = "https://melpa.org/#/shrink-path"; 31558 31642 license = lib.licenses.free; 31559 31643 }; 31560 31644 }) {};
+6 -6
pkgs/applications/editors/emacs-modes/org-generated.nix
··· 1 1 { callPackage }: { 2 2 org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 3 3 pname = "org"; 4 - version = "20170807"; 4 + version = "20170814"; 5 5 src = fetchurl { 6 - url = "http://orgmode.org/elpa/org-20170807.tar"; 7 - sha256 = "0cpkkfw7wmz242r5zzpcnzp7gfsmja90gqqb5h20azxmq96kfzga"; 6 + url = "http://orgmode.org/elpa/org-20170814.tar"; 7 + sha256 = "1r55vfjbll18h1nb5a48293x9lwmcmxgpx8h20n77n3inqmc6yli"; 8 8 }; 9 9 packageRequires = []; 10 10 meta = { ··· 14 14 }) {}; 15 15 org-plus-contrib = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 16 16 pname = "org-plus-contrib"; 17 - version = "20170807"; 17 + version = "20170814"; 18 18 src = fetchurl { 19 - url = "http://orgmode.org/elpa/org-plus-contrib-20170807.tar"; 20 - sha256 = "145j9g1lx5nj85irdh9ljhh4rhwj9ys8nnca549lyxd9a5yiav5k"; 19 + url = "http://orgmode.org/elpa/org-plus-contrib-20170814.tar"; 20 + sha256 = "15v3944p1vnjqmy6il6gr1ipqw32cjzdq6w43rniwv2vr5lmh6iz"; 21 21 }; 22 22 packageRequires = []; 23 23 meta = {
+11 -9
pkgs/applications/editors/sublime3/default.nix
··· 31 31 32 32 dontStrip = true; 33 33 dontPatchELF = true; 34 - buildInputs = [ makeWrapper ]; 34 + buildInputs = [ makeWrapper zip unzip ]; 35 35 36 36 # make exec.py in Default.sublime-package use own bash with 37 37 # an LD_PRELOAD instead of "/bin/bash" 38 38 patchPhase = '' 39 39 mkdir Default.sublime-package-fix 40 40 ( cd Default.sublime-package-fix 41 - ${unzip}/bin/unzip ../Packages/Default.sublime-package > /dev/null 41 + unzip -q ../Packages/Default.sublime-package 42 42 substituteInPlace "exec.py" --replace \ 43 43 "[\"/bin/bash\"" \ 44 44 "[\"$out/sublime_bash\"" 45 + zip -q ../Packages/Default.sublime-package **/* 45 46 ) 46 - ${zip}/bin/zip -j Default.sublime-package.zip Default.sublime-package-fix/* > /dev/null 47 - mv Default.sublime-package.zip Packages/Default.sublime-package 48 47 rm -r Default.sublime-package-fix 49 48 ''; 50 49 ··· 85 84 name = "sublimetext3-${build}"; 86 85 87 86 phases = [ "installPhase" ]; 87 + 88 + inherit sublime; 89 + 88 90 installPhase = '' 89 91 mkdir -p $out/bin 90 - ln -s ${sublime}/sublime_text $out/bin/subl 91 - ln -s ${sublime}/sublime_text $out/bin/sublime 92 - ln -s ${sublime}/sublime_text $out/bin/sublime3 92 + ln -s $sublime/sublime_text $out/bin/subl 93 + ln -s $sublime/sublime_text $out/bin/sublime 94 + ln -s $sublime/sublime_text $out/bin/sublime3 93 95 mkdir -p $out/share/applications 94 - ln -s ${sublime}/sublime_text.desktop $out/share/applications/sublime_text.desktop 95 - ln -s ${sublime}/Icon/256x256/ $out/share/icons 96 + ln -s $sublime/sublime_text.desktop $out/share/applications/sublime_text.desktop 97 + ln -s $sublime/Icon/256x256/ $out/share/icons 96 98 ''; 97 99 98 100 meta = with stdenv.lib; {
+2 -2
pkgs/applications/misc/cbatticon/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 5 5 name = "cbatticon-${version}"; 6 - version = "1.6.5"; 6 + version = "1.6.6"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "valr"; 10 10 repo = "cbatticon"; 11 11 rev = version; 12 - sha256 = "1j7gbmmygvbrawqn1bbaf47lb600lylslzqbvfwlhifmi7qnm6ca"; 12 + sha256 = "0gphijkjmg5q349ffhnx12dppg6hajkr90n0x5b6s9cad5b4q0kq"; 13 13 }; 14 14 15 15 makeFlags = "PREFIX=$(out)";
+2 -2
pkgs/applications/misc/gpxsee/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gpxsee-${version}"; 5 - version = "4.8"; 5 + version = "4.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tumic0"; 9 9 repo = "GPXSee"; 10 10 rev = version; 11 - sha256 = "17s1v6b1j7pi0yj554bd0cg14bl854gssp5gj2pl51rxji6zr0wp"; 11 + sha256 = "0jk99yhrms1wzqpcnsjydcl2nysidv639s2j7l53yp60g0zz8174"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ qmake qttools ];
+1 -1
pkgs/applications/misc/octoprint/default.nix
··· 60 60 owner = "foosel"; 61 61 repo = "OctoPrint"; 62 62 rev = version; 63 - sha256 = "06l8khbq3waaaa4cqpv6056w1ziylkfgzlb28v30i1h234rlkknq"; 63 + sha256 = "1hci8cfmbzcghla1vmrcn6zicm8nj50drm7gp2hkr0drglq5fgr2"; 64 64 }; 65 65 66 66 # We need old Tornado
+27
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things/default.nix
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "urxvt-autocomplete-all-the-things-${version}"; 5 + version = "1.6.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Vifon"; 9 + repo = "autocomplete-ALL-the-things"; 10 + rev = version; 11 + sha256 = "06xd59c6gd9rglwq4km93n2p078k7v4x300lqrg1f32vvnjvs7sr"; 12 + }; 13 + 14 + installPhase = '' 15 + mkdir -p $out/lib/urxvt/perl 16 + cp autocomplete-ALL-the-things $out/lib/urxvt/perl 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + description = "urxvt plugin allowing user to easily complete arbitrary text"; 21 + homepage = "https://github.com/Vifon/autocomplete-ALL-the-things"; 22 + license = licenses.gpl3; 23 + maintainers = with maintainers; [ nickhu ]; 24 + platforms = with platforms; unix; 25 + }; 26 + } 27 +
+27
pkgs/applications/misc/syncthing-tray/default.nix
··· 1 + { stdenv, fetchFromGitHub, buildGoPackage, pkgconfig, libappindicator-gtk3 }: 2 + 3 + buildGoPackage rec { 4 + name = "syncthing-tray-${version}"; 5 + version = "0.7"; 6 + 7 + goPackagePath = "github.com/alex2108/syncthing-tray"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "alex2108"; 11 + repo = "syncthing-tray"; 12 + rev = "v${version}"; 13 + sha256 = "0869kinnsfzb8ydd0sv9fgqsi1sy5rhqg4whfdnrv82xjc71xyw3"; 14 + }; 15 + 16 + goDeps = ./deps.nix; 17 + 18 + buildInputs = [ pkgconfig libappindicator-gtk3 ]; 19 + 20 + meta = with stdenv.lib; { 21 + description = "Simple application tray for syncthing"; 22 + homepage = https://github.com/alex2108/syncthing-tray; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ nickhu ]; 25 + platforms = platforms.all; 26 + }; 27 + }
+93
pkgs/applications/misc/syncthing-tray/deps.nix
··· 1 + # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 + [ 3 + { 4 + goPackagePath = "github.com/alex2108/systray"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/alex2108/systray"; 8 + rev = "40e874866be2dc2c57ab031bcbde27a76b90721a"; 9 + sha256 = "1bxnb6skb9ss0lwlwswql07ardkhm28nxglvlsxkdlmzv1dcwy1q"; 10 + }; 11 + } 12 + { 13 + goPackagePath = "github.com/getlantern/context"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://github.com/getlantern/context"; 17 + rev = "624d99b1798d7c5375ea1d3ca4c5b04d58f7c775"; 18 + sha256 = "09yf9x6478a5z01hybr98zwa8ax3fx7l6wwsvdkxp3fdg9dqm13b"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/getlantern/errors"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/getlantern/errors"; 26 + rev = "99fa440517e8f3d1e4cd8d6dbed6b41f4c1ed3d6"; 27 + sha256 = "08rl32l5ks67hcgjxik62nd5g558mv4101kmz1ak7d3vfgg3m6i3"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/getlantern/golog"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/getlantern/golog"; 35 + rev = "cca714f7feb5df8e455f409b549d384441ac4578"; 36 + sha256 = "0gnf30n38zkx356cqc6jdv1kbzy59ddqhqndwrxsm2n2zc3b5p7q"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "github.com/getlantern/hex"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://github.com/getlantern/hex"; 44 + rev = "083fba3033ad473db3dd31c9bb368473d37581a7"; 45 + sha256 = "18q6rypmcqmcwlfzrrdcz08nff0a289saplvd9y3ifnfcqdw3j77"; 46 + }; 47 + } 48 + { 49 + goPackagePath = "github.com/getlantern/hidden"; 50 + fetch = { 51 + type = "git"; 52 + url = "https://github.com/getlantern/hidden"; 53 + rev = "d52a649ab33af200943bb599898dbdcfdbc94cb7"; 54 + sha256 = "0133qmp4sjq8da5di3459vc5g5nqbpqra0f558zd95js3fdmkmsi"; 55 + }; 56 + } 57 + { 58 + goPackagePath = "github.com/getlantern/ops"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/getlantern/ops"; 62 + rev = "b70875f5d689a9438bca72aefd7142a2af889b18"; 63 + sha256 = "0cfa2bbkykbzbskmgd2an34him72z6f3y88ag1v5ffpb0d6bnar7"; 64 + }; 65 + } 66 + { 67 + goPackagePath = "github.com/getlantern/stack"; 68 + fetch = { 69 + type = "git"; 70 + url = "https://github.com/getlantern/stack"; 71 + rev = "02f928aad224fbccd50d66edd776fc9d1e9f2f2b"; 72 + sha256 = "0ddl5r4iw3c7p4drh4d8phl7d0ssdddsnd3xjm1lzgxylqq6r568"; 73 + }; 74 + } 75 + { 76 + goPackagePath = "github.com/oxtoacart/bpool"; 77 + fetch = { 78 + type = "git"; 79 + url = "https://github.com/oxtoacart/bpool"; 80 + rev = "4e1c5567d7c2dd59fa4c7c83d34c2f3528b025d6"; 81 + sha256 = "01kk6dhkz96yhp3p5v2rjwq8mbrwrdsn6glqw7jp4h7g5za7yi95"; 82 + }; 83 + } 84 + { 85 + goPackagePath = "github.com/toqueteos/webbrowser"; 86 + fetch = { 87 + type = "git"; 88 + url = "https://github.com/toqueteos/webbrowser"; 89 + rev = "e2ebfdc6cb1a3fdc4fc4dbd20a0cae0c2e406792"; 90 + sha256 = "0sgjnxrq0jgipkij8b6xiy4am9bv9zziqxxdhw15rdjc5piyk3a2"; 91 + }; 92 + } 93 + ]
+4 -4
pkgs/applications/networking/browsers/palemoon/default.nix
··· 5 5 , gtk2, hunspell, icu, libevent, libjpeg, libnotify 6 6 , libstartup_notification, libvpx, makeWrapper, mesa 7 7 , nspr, nss, pango, perl, python, libpulseaudio, sqlite 8 - , unzip, xlibs, which, yasm, zip, zlib 8 + , unzip, xlibs, which, yasm, zip, zlib, gcc 9 9 }: 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "palemoon-${version}"; 13 - version = "27.2.1"; 13 + version = "27.4.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 name = "palemoon-src"; 17 17 owner = "MoonchildProductions"; 18 18 repo = "Pale-Moon"; 19 19 rev = version + "_Release"; 20 - sha256 = "1yyipxd5lmavf4aca4vrcnp7hb8zkn4sv2zp6n2cm6w4pxlza0g4"; 20 + sha256 = "0sgy0iq038pj676w6k5nwbavrdmrznhydjibdpj6irdz5qxxdgjn"; 21 21 }; 22 22 23 23 desktopItem = makeDesktopItem { ··· 42 42 gst-plugins-base gstreamer gst_all_1.gst-plugins-base gtk2 43 43 hunspell icu libevent libjpeg libnotify libstartup_notification 44 44 libvpx makeWrapper mesa nspr nss pango perl pkgconfig python 45 - libpulseaudio sqlite unzip which yasm zip zlib 45 + libpulseaudio sqlite unzip which yasm zip zlib gcc 46 46 ] ++ (with xlibs; [ 47 47 libX11 libXext libXft libXi libXrender libXScrnSaver 48 48 libXt pixman scrnsaverproto xextproto
+38
pkgs/applications/networking/mailreaders/msgviewer/default.nix
··· 1 + { stdenv, fetchurl, makeWrapper, writeScript, unzip, jre }: 2 + 3 + let 4 + version = "1.9"; 5 + name = "msgviewer-${version}"; 6 + uname = "MSGViewer-${version}"; 7 + 8 + in stdenv.mkDerivation rec { 9 + inherit name; 10 + 11 + src = fetchurl { 12 + url = "mirror://sourceforge/msgviewer/${uname}/${uname}.zip"; 13 + sha256 = "0igmr8c0757xsc94xlv2470zv2mz57zaj52dwr9wj8agmj23jbjz"; 14 + }; 15 + 16 + buildCommand = '' 17 + dir=$out/lib/msgviewer 18 + mkdir -p $out/bin $dir 19 + unzip $src -d $dir 20 + mv $dir/${uname}/* $dir 21 + rmdir $dir/${uname} 22 + cat <<_EOF > $out/bin/msgviewer 23 + #!${stdenv.shell} -eu 24 + ${stdenv.lib.getBin jre}/bin/java -jar $dir/MSGViewer.jar $@ 25 + _EOF 26 + chmod 755 $out/bin/msgviewer 27 + ''; 28 + 29 + nativeBuildInputs = [ makeWrapper unzip ]; 30 + 31 + meta = with stdenv.lib; { 32 + description = "Viewer for .msg files (MS Outlook)"; 33 + homepage = https://www.washington.edu/alpine/; 34 + license = licenses.asl20; 35 + maintainers = with maintainers; [ peterhoeg ]; 36 + platforms = platforms.all; 37 + }; 38 + }
+6 -5
pkgs/applications/networking/syncthing/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, go, procps, removeReferencesTo }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.14.32"; 4 + version = "0.14.36"; 5 5 name = "syncthing-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "syncthing"; 9 9 repo = "syncthing"; 10 10 rev = "v${version}"; 11 - sha256 = "1agjr3m4gnywbp40idi0pwy25cp836sdcar7r6r9hwcqxyyzz545"; 11 + sha256 = "1l4s74qlabwfkpi9lmm588ym0myavbs06a5gpp9nihzrsal18727"; 12 12 }; 13 13 14 14 buildInputs = [ go removeReferencesTo ]; ··· 21 21 # Syncthing's build.go script expects this working directory 22 22 cd src/github.com/syncthing/syncthing 23 23 24 - go run build.go -no-upgrade -version v${version} install all 24 + go run build.go -no-upgrade -version v${version} build 25 25 ''; 26 26 27 27 installPhase = '' 28 - mkdir -p $out/bin $out/lib/systemd/{system,user} 28 + mkdir -p $out/lib/systemd/{system,user} 29 + 30 + install -Dm755 syncthing $out/bin/syncthing 29 31 30 - cp bin/* $out/bin 31 32 '' + lib.optionalString (stdenv.isLinux) '' 32 33 substitute etc/linux-systemd/system/syncthing-resume.service \ 33 34 $out/lib/systemd/system/syncthing-resume.service \
+32
pkgs/applications/office/grisbi/default.nix
··· 1 + { fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook 2 + , hicolor_icon_theme, libsoup, gnome3 }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "grisbi-${version}"; 6 + version = "1.0.2"; 7 + 8 + src = fetchurl { 9 + url = "mirror://sourceforge/grisbi/${name}.tar.bz2"; 10 + sha256 = "1m31a1h4i59z36ri4a22rrd29byg6wnxq37559042hdhn557kazm"; 11 + }; 12 + 13 + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 14 + buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup 15 + gnome3.defaultIconTheme ]; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A personnal accounting application."; 19 + longDescription = '' 20 + Grisbi is an application written by French developers, so it perfectly 21 + respects French accounting rules. Grisbi can manage multiple accounts, 22 + currencies and users. It manages third party, expenditure and receipt 23 + categories, budgetary lines, financial years, budget estimates, bankcard 24 + management and other information that make Grisbi adapted for 25 + associations. 26 + ''; 27 + homepage = "http://grisbi.org"; 28 + license = licenses.gpl2Plus; 29 + maintainers = with maintainers; [ layus ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+2 -1
pkgs/applications/virtualization/qemu/default.nix
··· 55 55 enableParallelBuilding = true; 56 56 57 57 patches = [ ./no-etc-install.patch ] 58 - ++ optional nixosTestRunner ./force-uid0-on-9p.patch; 58 + ++ optional nixosTestRunner ./force-uid0-on-9p.patch 59 + ++ optional pulseSupport ./fix-hda-recording.patch; 59 60 60 61 hardeningDisable = [ "stackprotector" ]; 61 62
+34
pkgs/applications/virtualization/qemu/fix-hda-recording.patch
··· 1 + diff --git a/audio/paaudio.c b/audio/paaudio.c 2 + index fea6071..c1169d4 100644 3 + --- a/audio/paaudio.c 4 + +++ b/audio/paaudio.c 5 + @@ -608,6 +608,7 @@ static int qpa_init_in(HWVoiceIn *hw, struct audsettings *as, void *drv_opaque) 6 + { 7 + int error; 8 + pa_sample_spec ss; 9 + + pa_buffer_attr ba; 10 + struct audsettings obt_as = *as; 11 + PAVoiceIn *pa = (PAVoiceIn *) hw; 12 + paaudio *g = pa->g = drv_opaque; 13 + @@ -616,6 +617,12 @@ static int qpa_init_in(HWVoiceIn *hw, struct audsettings *as, void *drv_opaque) 14 + ss.channels = as->nchannels; 15 + ss.rate = as->freq; 16 + 17 + + ba.fragsize = pa_frame_size (&ss) * g->conf.samples; 18 + + ba.maxlength = 5 * ba.fragsize; 19 + + ba.tlength = -1; 20 + + ba.prebuf = -1; 21 + + ba.minreq = -1; 22 + + 23 + obt_as.fmt = pa_to_audfmt (ss.format, &obt_as.endianness); 24 + 25 + pa->stream = qpa_simple_new ( 26 + @@ -625,7 +632,7 @@ static int qpa_init_in(HWVoiceIn *hw, struct audsettings *as, void *drv_opaque) 27 + g->conf.source, 28 + &ss, 29 + NULL, /* channel map */ 30 + - NULL, /* buffering attributes */ 31 + + &ba, /* buffering attributes */ 32 + &error 33 + ); 34 + if (!pa->stream) {
+2 -2
pkgs/data/misc/dns-root-data/default.nix
··· 4 4 5 5 rootHints = fetchurl { 6 6 url = "http://www.internic.net/domain/named.root"; 7 - sha256 = "1zf3ydn44z70gq1kd95lvk9cp68xlbl8vqpswqlhd30qafx6v6d1"; 7 + sha256 = "0qsyxpj5b3i7n162qfyv76ljqbvnwjii7jk8mpfinklx0sk01473"; 8 8 }; 9 9 10 10 rootKey = ./root.key; ··· 13 13 in 14 14 15 15 stdenv.mkDerivation { 16 - name = "dns-root-data-2017-07-11"; 16 + name = "dns-root-data-2017-07-26"; 17 17 18 18 buildCommand = '' 19 19 mkdir $out
+45
pkgs/development/compilers/gcc-arm-embedded/6/default.nix
··· 1 + { stdenv, fetchurl, ncurses5, python27 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "gcc-arm-embedded-${version}"; 5 + version = "6-2017-q2-update"; 6 + subdir = "6-2017q2"; 7 + 8 + platformString = 9 + if stdenv.isLinux then "linux" 10 + else if stdenv.isDarwin then "mac" 11 + else throw "unsupported platform"; 12 + 13 + urlString = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-${platformString}.tar.bz2"; 14 + 15 + src = 16 + if stdenv.isLinux then fetchurl { url=urlString; sha256="1hvwi02mx34al525sngnl0cm7dkmzxfkb1brq9kvbv28wcplp3p6"; } 17 + else if stdenv.isDarwin then fetchurl { url=urlString; sha256="0019ylpq4inq7p5gydpmc9m8ni72fz2csrjlqmgx1698998q0c3x"; } 18 + else throw "unsupported platform"; 19 + 20 + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; 21 + 22 + installPhase = '' 23 + mkdir -p $out 24 + cp -r * $out 25 + ''; 26 + 27 + dontPatchELF = true; 28 + dontStrip = true; 29 + 30 + preFixup = '' 31 + find $out -type f | while read f; do 32 + patchelf $f > /dev/null 2>&1 || continue 33 + patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) "$f" || true 34 + patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ "$out" stdenv.cc.cc ncurses5 python27 ]} "$f" || true 35 + done 36 + ''; 37 + 38 + meta = { 39 + description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4/M7, Cortex-R4/R5/R7/R8)"; 40 + homepage = https://developer.arm.com/open-source/gnu-toolchain/gnu-rm; 41 + license = with stdenv.lib.licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ]; 42 + maintainers = with stdenv.lib.maintainers; [ vinymeuh ]; 43 + platforms = with stdenv.lib.platforms; linux ++ darwin; 44 + }; 45 + }
+6 -5
pkgs/development/compilers/ponyc/pony-stable.nix
··· 1 1 {stdenv, fetchFromGitHub, ponyc }: 2 2 3 - stdenv.mkDerivation { 4 - name = "pony-stable-unstable-2017-07-26"; 3 + stdenv.mkDerivation rec { 4 + name = "pony-stable-${version}"; 5 + version = "0.0.1"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "ponylang"; 8 9 repo = "pony-stable"; 9 - rev = "4016f9253a4e3114ee69100d3d02154ffd3fd7e4"; 10 - sha256 = "0xz5syjn2f8k31vny49k3jm8zisa15ly4hbcb3rh4jvq8jjp1ldr"; 10 + rev = version; 11 + sha256 = "0q05135mnzzdwam7cnmxq34clqhmc83yp2gi63sx20c74rcw3p6v"; 11 12 }; 12 13 13 14 buildInputs = [ ponyc ]; ··· 20 21 description = "A simple dependency manager for the Pony language."; 21 22 homepage = http://www.ponylang.org; 22 23 license = stdenv.lib.licenses.bsd2; 23 - maintainers = [ stdenv.lib.maintainers.dipinhora ]; 24 + maintainers = with stdenv.lib.maintainers; [ dipinhora kamilchm ]; 24 25 platforms = stdenv.lib.platforms.unix; 25 26 }; 26 27 }
+8
pkgs/development/haskell-modules/configuration-common.nix
··· 87 87 hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; 88 88 }; 89 89 90 + # Fix test trying to access /home directory 91 + shell-conduit = (overrideCabal super.shell-conduit (drv: { 92 + postPatch = "sed -i s/home/tmp/ test/Spec.hs"; 93 + })); 94 + 90 95 # https://github.com/froozen/kademlia/issues/2 91 96 kademlia = dontCheck super.kademlia; 92 97 ··· 416 421 417 422 # https://github.com/basvandijk/threads/issues/10 418 423 threads = dontCheck super.threads; 424 + 425 + # https://github.com/purescript/purescript/pull/3041 426 + purescript = doJailbreak super.purescript; 419 427 420 428 # Missing module. 421 429 rematch = dontCheck super.rematch; # https://github.com/tcrayford/rematch/issues/5
+92
pkgs/development/interpreters/red/default.nix
··· 1 + { stdenv, stdenv_32bit, pkgsi686Linux, fetchFromGitHub, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "red-v${version}"; 5 + version = "0.6.3"; 6 + src = fetchFromGitHub { 7 + rev = "6a43c767fa2e85d668b83f749158a18e62c30f70"; 8 + owner = "red"; 9 + repo = "red"; 10 + sha256 = "1zh6xc728bs7r4v5jz1jjrdk0xd838xsxmvy9gfg75a3zffm0slr"; 11 + }; 12 + 13 + rebol = fetchurl { 14 + url = "http://www.rebol.com/downloads/v278/rebol-core-278-4-2.tar.gz"; 15 + sha256 = "1c1v0pyhf3d8z98qc93a5zmx0bbl0qq5lr8mbkdgygqsq2bv2xbz"; 16 + }; 17 + 18 + buildInputs = [ pkgsi686Linux.curl stdenv_32bit ]; 19 + 20 + r2 = "./rebol/releases/rebol-core/rebol"; 21 + 22 + configurePhase = '' 23 + # Download rebol 24 + mkdir rebol/ 25 + tar -xzvf ${rebol} -C rebol/ 26 + patchelf --set-interpreter \ 27 + ${stdenv_32bit.cc.libc.out}/lib/32/ld-linux.so.2 \ 28 + ${r2} 29 + ''; 30 + 31 + buildPhase = '' 32 + # Do tests 33 + #${r2} -qw run-all.r 34 + 35 + # Build test 36 + ${r2} -qw red.r tests/hello.red 37 + 38 + # Compiling the Red console... 39 + ${r2} -qw red.r -r environment/console/console.red 40 + 41 + # Generating docs... 42 + cd docs 43 + ../${r2} -qw makedoc2.r red-system-specs.txt 44 + ../${r2} -qw makedoc2.r red-system-quick-test.txt 45 + cd ../ 46 + ''; 47 + 48 + installPhase = '' 49 + mkdir $out 50 + 51 + # Install 52 + install -d $out/opt/red 53 + find quick-test -type f -executable -print0 | xargs -0 rm 54 + cp -R * $out/opt/red/ 55 + rm -rf $out/opt/red/rebol 56 + install -Dm755 console $out/bin/red 57 + install -Dm644 BSD-3-License.txt \ 58 + $out/share/licenses/${name}/BSD-3-License.txt 59 + install -Dm644 BSL-License.txt \ 60 + $out/share/licenses/${name}/BSL-License.txt 61 + install -Dm644 docs/red-system-quick-test.html \ 62 + $out/share/doc/${name}/red-system-quick-test.html 63 + install -Dm644 docs/red-system-specs.html \ 64 + $out/share/doc/${name}/red-system-specs.html 65 + 66 + # PathElf 67 + patchelf --set-interpreter \ 68 + ${stdenv_32bit.cc.libc.out}/lib/32/ld-linux.so.2 \ 69 + $out/opt/red/console 70 + patchelf --set-rpath ${pkgsi686Linux.curl.out}/lib \ 71 + $out/opt/red/console 72 + patchelf --set-interpreter \ 73 + ${stdenv_32bit.cc.libc.out}/lib/32/ld-linux.so.2 \ 74 + $out/bin/red 75 + patchelf --set-rpath ${pkgsi686Linux.curl.out}/lib \ 76 + $out/bin/red 77 + 78 + ''; 79 + 80 + meta = with stdenv.lib; { 81 + description = '' 82 + New programming language strongly inspired by Rebol, but with a 83 + broader field of usage thanks to its native-code compiler, from system 84 + programming to high-level scripting, while providing modern support for 85 + concurrency and multi-core CPUs 86 + ''; 87 + maintainers = with maintainers; [ uralbash ]; 88 + platforms = [ "i686-linux" "x86_64-linux" ]; 89 + license = licenses.bsd3; 90 + homepage = http://www.red-lang.org/; 91 + }; 92 + }
+23
pkgs/development/libraries/libsndfile/default.nix
··· 10 10 sha256 = "1afzm7jx34jhqn32clc5xghyjglccam2728yxlx37yj2y0lkkwqz"; 11 11 }; 12 12 13 + patches = [ 14 + # CVE-2017-12562 15 + (fetchurl { 16 + url = "https://github.com/erikd/libsndfile/commit/cf7a8182c2642c50f1cf90dddea9ce96a8bad2e8.patch"; 17 + sha256 = "1jg3wq30wdn9nv52mcyv6jyi4d80h4r1h9p96czcria7l91yh4sy"; 18 + }) 19 + # CVE-2017-6892 20 + (fetchurl { 21 + url = "https://github.com/erikd/libsndfile/commit/f833c53cb596e9e1792949f762e0b33661822748.patch"; 22 + sha256 = "05xkmz2ihc1zcj73sbmj1ikrv9qlcym2bkp1v6ak7w53ky619mwq"; 23 + }) 24 + # CVE-2017-8361, CVE-2017-8363, CVE-2017-8363 25 + (fetchurl { 26 + url = "https://github.com/erikd/libsndfile/commit/fd0484aba8e51d16af1e3a880f9b8b857b385eb3.patch"; 27 + sha256 = "0ccndnvjzx5fw18zvy03vnb29rr81h5vsh1m16msqbxk8ibndln2"; 28 + }) 29 + # CVE-2017-8362 30 + (fetchurl { 31 + url = "https://github.com/erikd/libsndfile/commit/ef1dbb2df1c0e741486646de40bd638a9c4cd808.patch"; 32 + sha256 = "1xyv30ga71cpy4wx5f76sc4dma91la2lcc6s9f3pk9rndyi7gj9x"; 33 + }) 34 + ]; 35 + 13 36 buildInputs = [ pkgconfig flac libogg libvorbis ] 14 37 ++ stdenv.lib.optionals stdenv.isDarwin [ Carbon AudioToolbox ]; 15 38
+8 -1
pkgs/development/libraries/libxslt/default.nix
··· 17 17 sha256 = "1klh81xbm9ppzgqk339097i39b7fnpmlj8lzn8bpczl3aww6x5xm"; 18 18 }; 19 19 20 - patches = stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch; 20 + patches = [ 21 + (fetchpatch { 22 + name = "CVE-2017-5029"; 23 + url = "https://git.gnome.org/browse/libxslt/" 24 + + "patch/?id=08ab2774b870de1c7b5a48693df75e8154addae5"; 25 + sha256 = "10azfmyffjf9d7b5js4ipxw9f20qi0kw3zq34bpqmbcpq3l338ky"; 26 + }) 27 + ] ++ stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch; 21 28 22 29 # fixes: can't build x86_64-unknown-cygwin shared library unless -no-undefined is specified 23 30 postPatch = optionalString hostPlatform.isCygwin ''
+12 -4
pkgs/development/libraries/opencv/3.x.nix
··· 17 17 , enableEigen ? false, eigen 18 18 , enableOpenblas ? false, openblas 19 19 , enableCuda ? false, cudatoolkit, gcc5 20 + , enableTesseract ? false, tesseract, leptonica 20 21 , AVFoundation, Cocoa, QTKit 21 22 }: 22 23 ··· 43 44 url = "https://github.com/opencv/opencv_contrib/commit/abf44fcccfe2f281b7442dac243e37b7f436d961.patch"; 44 45 sha256 = "11dsq8dwh1k6f7zglbc26xwsjw184ggf2531mhf7v77kd72k19fm"; 45 46 }; 47 + 48 + # Contrib must be built in order to enable Tesseract support: 49 + buildContrib = enableContrib || enableTesseract; 46 50 47 51 vggFiles = fetchFromGitHub { 48 52 owner = "opencv"; ··· 66 70 inherit version src; 67 71 68 72 postUnpack = 69 - (lib.optionalString enableContrib '' 73 + (lib.optionalString buildContrib '' 70 74 cp --no-preserve=mode -r "${contribSrc}/modules" "$NIX_BUILD_TOP/opencv_contrib" 71 75 72 76 # This fixes the build on macOS. ··· 118 122 ln -s "${ippicv}" "${dir}/${name}" 119 123 '' 120 124 ) + 121 - (lib.optionalString enableContrib '' 125 + (lib.optionalString buildContrib '' 122 126 cmakeFlagsArray+=("-DOPENCV_EXTRA_MODULES_PATH=$NIX_BUILD_TOP/opencv_contrib") 123 127 ''); 124 128 ··· 137 141 ++ lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base ]) 138 142 ++ lib.optional enableEigen eigen 139 143 ++ lib.optional enableOpenblas openblas 144 + # There is seemingly no compile-time flag for Tesseract. It's 145 + # simply enabled automatically if contrib is built, and it detects 146 + # tesseract & leptonica. 147 + ++ lib.optionals enableTesseract [ tesseract leptonica ] 140 148 ++ lib.optionals enableCuda [ cudatoolkit gcc5 ] 141 - ++ lib.optional enableContrib protobuf3_1 149 + ++ lib.optional buildContrib protobuf3_1 142 150 ++ lib.optionals stdenv.isDarwin [ AVFoundation Cocoa QTKit ]; 143 151 144 152 propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy; ··· 158 166 (opencvFlag "CUDA" enableCuda) 159 167 (opencvFlag "CUBLAS" enableCuda) 160 168 ] ++ lib.optionals enableCuda [ "-DCUDA_FAST_MATH=ON" ] 161 - ++ lib.optional enableContrib "-DBUILD_PROTOBUF=off" 169 + ++ lib.optional buildContrib "-DBUILD_PROTOBUF=off" 162 170 ++ lib.optionals stdenv.isDarwin ["-DWITH_OPENCL=OFF" "-DWITH_LAPACK=OFF"]; 163 171 164 172 enableParallelBuilding = true;
+6 -6
pkgs/development/libraries/portaudio/default.nix
··· 1 - { stdenv, fetchurl, alsaLib, pkgconfig 1 + { stdenv, fetchurl, alsaLib, pkgconfig, libjack2 2 2 , AudioUnit, AudioToolbox, CoreAudio, CoreServices, Carbon }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "portaudio-19-20140130"; 6 - 5 + name = "portaudio-190600-20161030"; 6 + 7 7 src = fetchurl { 8 - url = http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz; 9 - sha256 = "0mwddk4qzybaf85wqfhxqlf0c5im9il8z03rd4n127k8y2jj9q4g"; 8 + url = http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz; 9 + sha256 = "04qmin6nj144b8qb9kkd9a52xfvm0qdgm8bg8jbl7s3frmyiv8pm"; 10 10 }; 11 11 12 - buildInputs = [ pkgconfig ] 12 + buildInputs = [ pkgconfig libjack2 ] 13 13 ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib; 14 14 15 15 configureFlags = [ "--disable-mac-universal" ];
+1
pkgs/development/lisp-modules/define-package.nix
··· 20 20 echo "export NIX_LDFLAGS='$NIX_LDFLAGS'\"\''${NIX_LDFLAGS:+ \$NIX_LDFLAGS}\"" >> "$config_script" 21 21 echo "export NIX_LISP_COMMAND='$NIX_LISP_COMMAND'" >> "$config_script" 22 22 echo "export NIX_LISP_ASDF='$NIX_LISP_ASDF'" >> "$config_script" 23 + set | grep NIX_CC_WRAPPER_ | sed -e 's@^NIX_CC_WRAPPER@export &@' >> "$config_script" 23 24 echo "export PATH=\"\''${PATH:+\$PATH:}$PATH\"" >> "$config_script" 24 25 echo "echo \"\$ASDF_OUTPUT_TRANSLATIONS\" | grep -E '(^|:)$store_translation(:|\$)' >/dev/null || export ASDF_OUTPUT_TRANSLATIONS=\"\''${ASDF_OUTPUT_TRANSLATIONS:+\$ASDF_OUTPUT_TRANSLATIONS:}\"'$store_translation'" >> "$config_script" 25 26 echo "source '$path_config_script'" >> "$config_script"
+1 -1
pkgs/development/python-modules/breathe/default.nix
··· 12 12 13 13 propagatedBuildInputs = [ docutils six sphinx ]; 14 14 15 - disabled = isPy3k; 15 + doCheck = !isPy3k; 16 16 17 17 meta = { 18 18 homepage = https://github.com/michaeljones/breathe;
+23
pkgs/development/python-modules/hyperlink/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchurl, pytest }: 2 + buildPythonPackage rec { 3 + name = "hyperlink-${version}"; 4 + version = "17.3.0"; 5 + 6 + src = fetchurl { 7 + url = "mirror://pypi/h/hyperlink/${name}.tar.gz"; 8 + sha256 = "06mgnxwjzx8hv34bifc7jvgxz21ixhk5s6xy2kd84hdrlbfvpbfx"; 9 + }; 10 + 11 + checkInputs = [ pytest ]; 12 + 13 + checkPhase = '' 14 + py.test $out 15 + ''; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A featureful, correct URL for Python"; 19 + license = licenses.mit; 20 + platforms = platforms.all; 21 + maintainers = with maintainers; [ apeschar ]; 22 + }; 23 + }
+44
pkgs/development/python-modules/pywbem/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchFromGitHub, libxml2 2 + , m2crypto, ply, pyyaml, six 3 + , httpretty, lxml, mock, pytest, requests 4 + }: 5 + 6 + buildPythonPackage rec { 7 + name = "pywbem-${version}"; 8 + version = "0.10.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "pywbem"; 12 + repo = "pywbem"; 13 + rev = "v${version}"; 14 + sha256 = "0jcwklip03xcni0dvsk9va8ilqz21g4fxwqd5kzvv91slaadfcym"; 15 + }; 16 + 17 + propagatedBuildInputs = [ m2crypto ply pyyaml six ]; 18 + 19 + checkInputs = [ httpretty lxml mock pytest requests ]; 20 + 21 + # 1 test fails because it doesn't like running in our sandbox. Deleting the 22 + # whole file is admittedly a little heavy-handed but at least the vast 23 + # majority of tests are run. 24 + checkPhase = '' 25 + rm testsuite/testclient/networkerror.yaml 26 + 27 + substituteInPlace makefile \ 28 + --replace "PYTHONPATH=." "" \ 29 + --replace '--cov $(package_name) --cov-config coveragerc' "" 30 + 31 + for f in testsuite/test_cim_xml.py testsuite/validate.py ; do 32 + substituteInPlace $f --replace "'xmllint" "'${stdenv.lib.getBin libxml2}/bin/xmllint" 33 + done 34 + 35 + make PATH=$PATH:${stdenv.lib.getBin libxml2}/bin test 36 + ''; 37 + 38 + meta = with stdenv.lib; { 39 + description = "Support for the WBEM standard for systems management."; 40 + homepage = http://pywbem.github.io/pywbem/; 41 + license = licenses.gpl2; 42 + maintainers = with maintainers; [ peterhoeg ]; 43 + }; 44 + }
+2 -2
pkgs/development/tools/build-managers/meson/default.nix
··· 1 1 { lib, python3Packages }: 2 2 python3Packages.buildPythonApplication rec { 3 - version = "0.40.0"; 3 + version = "0.41.2"; 4 4 pname = "meson"; 5 5 name = "${pname}-${version}"; 6 6 7 7 src = python3Packages.fetchPypi { 8 8 inherit pname version; 9 - sha256 = "1hb6y5phzd5738rlpz78w8hfzk7sbxj81551mb7bbkkqz8ql1gjw"; 9 + sha256 = "0p69hir68ar3nzrjn0zjsnyzq181b0kq6arrcmxqpzl7g5qhf5xd"; 10 10 }; 11 11 12 12 postFixup = ''
+4 -4
pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
··· 1 1 { lib, buildGoPackage, fetchFromGitLab, fetchurl, go-bindata }: 2 2 3 3 let 4 - version = "9.3.0"; 4 + version = "9.4.2"; 5 5 # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64 6 6 docker_x86_64 = fetchurl { 7 7 url = "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-x86_64.tar.xz"; 8 - sha256 = "1svml4k1zkmnw49sg4ipzl4fzvxx9rbj0643lwf6vm55j8xykhrq"; 8 + sha256 = "1cf8iasn47dlnbchh389ishzx5dqbyzg94w83j1w2ik4z0na6b7g"; 9 9 }; 10 10 11 11 docker_arm = fetchurl { 12 12 url = "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-arm.tar.xz"; 13 - sha256 = "0xbbbjd7hvhlzi47rzf09fzcpkd7jrf80xk1y736px75yyvq3jr2"; 13 + sha256 = "120rvxlksza9zpjin0awq8gnnplnv6qmqlidgnxs63c71kyjiwf3"; 14 14 }; 15 15 in 16 16 buildGoPackage rec { ··· 29 29 owner = "gitlab-org"; 30 30 repo = "gitlab-ci-multi-runner"; 31 31 rev = "v${version}"; 32 - sha256 = "0ddsh31sqjp9xs6mv5jbmqvjq2hcy6j21grrn1m73z8blk4ylxsd"; 32 + sha256 = "06g4y6vn99b0g0k2als7fz5y2f87pg1cfwsxs8psqgl7nxmhw3i6"; 33 33 }; 34 34 35 35 patches = [ ./fix-shell-path.patch ];
+4 -4
pkgs/development/tools/misc/kibana/default.nix
··· 11 11 elasticArch = archOverrides."${arch}" or arch; 12 12 plat = elemAt info 1; 13 13 shas = { 14 - "x86_64-linux" = "1md3y3a8rxvf37lnfc56kbirv2rjl68pa5672yxhfmjngrr20rcw"; 15 - "i686-linux" = "0d77a2v14pg5vr711hzbva8jjy0sxw9w889f2r1vhwngrhcfz4pf"; 16 - "x86_64-darwin" = "1cajljx13h8bncmayzvlzsynwambz61cspjnsn2h19zghn2vj2c9"; 14 + "x86_64-linux" = "1wnnrhhpgc58s09p99cmi8r2jmwsd5lmh2inb0k8nmizz5v1sjz0"; 15 + "i686-linux" = "0sdx59jlfrf7r9793xpn2vxaxjdczgn3qfw8yny03dcs6fjaxi2y"; 16 + "x86_64-darwin" = "0rmp536kn001g52lxngpj6x6d0j3qj0r11d4djbz7h6s5ml03kza"; 17 17 }; 18 18 in stdenv.mkDerivation rec { 19 19 name = "kibana-${version}"; 20 - version = "4.6.0"; 20 + version = "4.6.5"; 21 21 22 22 src = fetchurl { 23 23 url = "https://download.elastic.co/kibana/kibana/${name}-${plat}-${elasticArch}.tar.gz";
+26 -28
pkgs/development/tools/wp-cli/default.nix
··· 1 - { stdenv, lib, fetchurl, php }: 1 + { stdenv, lib, fetchurl, writeScript, writeText, php }: 2 2 3 3 let 4 - version = "1.2.1"; 4 + name = "wp-cli-${version}"; 5 + version = "1.3.0"; 5 6 6 - bin = "bin/wp"; 7 - ini = "etc/php/wp-cli.ini"; 8 - phar = "share/wp-cli/wp-cli.phar"; 7 + src = fetchurl { 8 + url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar"; 9 + sha256 = "0q5d32jq7a6rba77sr1yyj6ib6x838hw14mm186ah1xxgnn7rnry"; 10 + }; 9 11 10 12 completion = fetchurl { 11 13 url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash"; 12 14 sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24"; 13 15 }; 14 16 15 - in stdenv.mkDerivation rec { 16 - name = "wp-cli-${version}"; 17 + bin = writeScript "wp" '' 18 + #! ${stdenv.shell} 17 19 18 - src = fetchurl { 19 - url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar"; 20 - sha256 = "1ds9nhm0akajwykblg0s131vki02k3rpf72a851r3wjw2qv116wz"; 21 - }; 20 + set -euo pipefail 22 21 23 - buildCommand = '' 24 - mkdir -p $out/bin $out/etc/php 25 - 26 - cat <<_EOF > $out/${bin} 27 - #! ${stdenv.shell} -eu 28 - exec ${lib.getBin php}/bin/php \\ 29 - -c $out/${ini} \\ 30 - -f $out/${phar} "\$@" 31 - _EOF 32 - chmod 755 $out/${bin} 22 + exec ${lib.getBin php}/bin/php \ 23 + -c ${ini} \ 24 + -f ${src} -- "$@" 25 + ''; 33 26 34 - cat <<_EOF > $out/${ini} 27 + ini = writeText "wp-cli.ini" '' 35 28 [Phar] 36 29 phar.readonly = Off 37 - _EOF 38 - chmod 644 $out/${ini} 30 + ''; 31 + 32 + in stdenv.mkDerivation rec { 33 + inherit name version; 34 + 35 + buildCommand = '' 36 + mkdir -p $out/{bin,share/bash-completion/completions} 39 37 40 - install -Dm644 ${src} $out/${phar} 38 + ln -s ${bin} $out/bin/wp 41 39 install -Dm644 ${completion} $out/share/bash-completion/completions/wp 42 40 ''; 43 41 44 42 meta = with stdenv.lib; { 45 43 description = "A command line interface for WordPress"; 44 + homepage = https://wp-cli.org; 45 + license = licenses.mit; 46 46 maintainers = with maintainers; [ peterhoeg ]; 47 - platforms = platforms.all; 48 - homepage = https://wp-cli.org; 49 - license = licenses.mit; 47 + platforms = platforms.all; 50 48 }; 51 49 }
+4 -4
pkgs/games/factorio/default.nix
··· 10 10 11 11 with stdenv.lib; 12 12 let 13 - version = if releaseType != "demo" then "0.15.31" else "0.15.31"; 13 + version = if releaseType != "demo" then "0.15.33" else "0.15.33"; 14 14 15 15 arch = if stdenv.system == "x86_64-linux" then { 16 16 inUrl = "linux64"; ··· 26 26 url = "https://www.factorio.com/get-download/${version}/${releaseType}/${arch.inUrl}"; 27 27 name = "factorio_${releaseType}_${arch.inTar}-${version}.tar.xz"; 28 28 x64 = { 29 - headless = fetchurl { inherit name url; sha256 = "1kbf6pj0rdiydx7g3xaqhnvvjr01g1afys2flw8x5myanffhql9x"; }; 30 - alpha = authenticatedFetch { inherit name url; sha256 = "0mz7x0hc3kvs6l1isnryld08sfy8gkgq81vvmmssa3ayp5y67rh4"; }; 31 - demo = fetchurl { inherit name url; sha256 = "0zsjlgys96qlqs79m634wh36vx5d7faq4749i9lsxm88b6fylfaf"; }; 29 + headless = fetchurl { inherit name url; sha256 = "17x0dlmfd7jwmpmn5i8wag28rl01iysqz3ri6g6msxjnvj5l6byn"; }; 30 + alpha = authenticatedFetch { inherit name url; sha256 = "1m2r0n99ngqq47s9fzr09d347i15an6x9v1qlij8yf8w7lyrdy4z"; }; 31 + demo = fetchurl { inherit name url; sha256 = "03nwn4838yhqq0r76pf2m4wxi32rsq0knsxmq3qq4ycji89q1dyc"; }; 32 32 }; 33 33 i386 = { 34 34 headless = abort "Factorio 32-bit headless binaries are not available for download.";
+2 -2
pkgs/os-specific/linux/busybox/default.nix
··· 27 27 in 28 28 29 29 stdenv.mkDerivation rec { 30 - name = "busybox-1.26.2"; 30 + name = "busybox-1.27.1"; 31 31 32 32 src = fetchurl { 33 33 url = "http://busybox.net/downloads/${name}.tar.bz2"; 34 - sha256 = "05mg6rh5smkzfwqfcazkpwy6h6555llsazikqnvwkaf17y8l8gns"; 34 + sha256 = "0dprylmcignrp29g41nkwr1b30v7i5x21lwymp3b93i1zd9sr468"; 35 35 }; 36 36 37 37 hardeningDisable = [ "format" ] ++ lib.optional enableStatic [ "fortify" ];
+2 -2
pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix
··· 1 1 { stdenv, hostPlatform, fetchFromGitHub, perl, buildLinux, ... } @ args: 2 2 3 3 let 4 - version = "4.12.5"; 4 + version = "4.12.7"; 5 5 revision = "a"; 6 - sha256 = "03cyh9fsbd95gdd477k1jmk3f9aj5dnw5wr8041y51v8f63vzbpk"; 6 + sha256 = "1kj0s5r7fx2d0crak7576jv9r6q7yx4aqmxpib6mhj1zfhsczdp0"; 7 7 in 8 8 9 9 import ./generic.nix (args // {
+2 -6
pkgs/os-specific/linux/shadow/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 name = "shadow-${version}"; 23 - version = "4.4"; 23 + version = "4.5"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "shadow-maint"; 27 27 repo = "shadow"; 28 28 rev = "${version}"; 29 - sha256 = "005qk3n86chc8mlg86qhrns2kpl52n5f3las3m5s6266xij3qwka"; 29 + sha256 = "1aj7s2arnsfqf34ak40is2zmwm666l28pay6rv1ffx46j0wj4hws"; 30 30 }; 31 31 32 32 buildInputs = stdenv.lib.optional (pam != null && stdenv.isLinux) pam; ··· 37 37 patches = 38 38 [ ./keep-path.patch 39 39 dots_in_usernames 40 - (fetchpatch { 41 - url = https://github.com/shadow-maint/shadow/commit/507f96cdeb54079fb636c7ce21e371f7a16a520e.patch; 42 - sha256 = "10k70fx3z051f83p1k7ljjaawbykhn7cy6fg1zy04jp3xkvdwxc7"; 43 - }) 44 40 ]; 45 41 46 42 # The nix daemon often forbids even creating set[ug]id files.
+5
pkgs/servers/apcupsd/default.nix
··· 15 15 16 16 buildInputs = [ pkgconfig utillinux man ] ++ stdenv.lib.optional enableCgiScripts gd; 17 17 18 + prePatch = '' 19 + sed -e "s,\$(INSTALL_PROGRAM) \$(STRIP),\$(INSTALL_PROGRAM)," \ 20 + -i ./src/apcagent/Makefile ./autoconf/targets.mak 21 + ''; 22 + 18 23 # ./configure ignores --prefix, so we must specify some paths manually 19 24 # There is no real reason for a bin/sbin split, so just use bin. 20 25 preConfigure = ''
+2 -1
pkgs/servers/dns/knot-dns/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, gnutls, jansson, liburcu, lmdb, libcap_ng, libidn 2 - , systemd, nettle, libedit, zlib, libiconv, fetchpatch 2 + , systemd, nettle, libedit, zlib, libiconv, libintlOrEmpty 3 3 }: 4 4 5 5 let inherit (stdenv.lib) optional optionals; in ··· 25 25 ] 26 26 # Use embedded lmdb there for now, as detection is broken on Darwin somehow. 27 27 ++ optionals stdenv.isLinux [ libcap_ng systemd lmdb ] 28 + ++ libintlOrEmpty 28 29 ++ optional stdenv.isDarwin zlib; # perhaps due to gnutls 29 30 30 31 # Not ideal but seems to work on Linux.
-36
pkgs/servers/monitoring/nagios/plugins/official-2.x.nix
··· 1 - { stdenv, fetchurl, openssh, openssl }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "nagios-plugins-${version}"; 5 - version = "2.2.0"; 6 - 7 - src = fetchurl { 8 - url = "http://nagios-plugins.org/download/${name}.tar.gz"; 9 - sha256 = "074yia04py5y07sbgkvri10dv8nf41kqq1x6kmwqcix5vvm9qyy3"; 10 - }; 11 - 12 - # !!! Awful hack. Grrr... this of course only works on NixOS. 13 - # Anyway the check that configure performs to figure out the ping 14 - # syntax is totally impure, because it runs an actual ping to 15 - # localhost (which won't work for ping6 if IPv6 support isn't 16 - # configured on the build machine). 17 - preConfigure= " 18 - configureFlagsArray=( 19 - --with-ping-command='/run/wrappers/bin/ping -4 -n -U -w %d -c %d %s' 20 - --with-ping6-command='/run/wrappers/bin/ping -6 -n -U -w %d -c %d %s' 21 - ) 22 - "; 23 - 24 - postInstall = "ln -s libexec $out/bin"; 25 - 26 - # !!! make openssh a runtime dependency only 27 - buildInputs = [ openssh openssl ]; 28 - 29 - meta = { 30 - description = "Official plugins for Nagios"; 31 - homepage = http://www.nagios.org/download/plugins; 32 - license = stdenv.lib.licenses.gpl2; 33 - platforms = stdenv.lib.platforms.linux; 34 - maintainers = with stdenv.lib.maintainers; [ thoughtpolice relrod ]; 35 - }; 36 - }
+71
pkgs/servers/monitoring/plugins/default.nix
··· 1 + { stdenv, fetchFromGitHub, autoreconfHook 2 + , coreutils, gnugrep, gnused, lm_sensors, net_snmp, openssh, openssl, perl }: 3 + 4 + with stdenv.lib; 5 + 6 + let 7 + majorVersion = "2.2"; 8 + minorVersion = ".0"; 9 + 10 + binPath = makeBinPath [ coreutils gnugrep gnused lm_sensors net_snmp ]; 11 + 12 + in stdenv.mkDerivation rec { 13 + name = "monitoring-plugins-${majorVersion}${minorVersion}"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "monitoring-plugins"; 17 + repo = "monitoring-plugins"; 18 + rev = "v${majorVersion}"; 19 + sha256 = "1pw7i6d2cnb5nxi2lbkwps2qzz04j9zd86fzpv9ka896b4aqrwv1"; 20 + }; 21 + 22 + # !!! Awful hack. Grrr... this of course only works on NixOS. 23 + # Anyway the check that configure performs to figure out the ping 24 + # syntax is totally impure, because it runs an actual ping to 25 + # localhost (which won't work for ping6 if IPv6 support isn't 26 + # configured on the build machine). 27 + preConfigure= '' 28 + substituteInPlace po/Makefile.in.in \ 29 + --replace /bin/sh ${stdenv.shell} 30 + 31 + sed -i configure.ac \ 32 + -e 's|^DEFAULT_PATH=.*|DEFAULT_PATH=\"\$out/bin:/run/wrappers/bin:${binPath}\"|' 33 + 34 + configureFlagsArray=( 35 + --with-ping-command='/run/wrappers/bin/ping -4 -n -U -w %d -c %d %s' 36 + --with-ping6-command='/run/wrappers/bin/ping -6 -n -U -w %d -c %d %s' 37 + ) 38 + ''; 39 + 40 + # !!! make openssh a runtime dependency only 41 + buildInputs = [ net_snmp openssh openssl perl ]; 42 + 43 + nativeBuildInputs = [ autoreconfHook ]; 44 + 45 + enableParallelBuilding = true; 46 + 47 + # For unknown reasons the installer tries executing $out/share and fails if 48 + # it doesn't succeed. 49 + # So we create it and remove it again later. 50 + preBuild = '' 51 + mkdir -p $out 52 + cat <<_EOF > $out/share 53 + #!${stdenv.shell} 54 + exit 0 55 + _EOF 56 + chmod 755 $out/share 57 + ''; 58 + 59 + postInstall = '' 60 + rm $out/share 61 + ln -s libexec $out/bin 62 + ''; 63 + 64 + meta = { 65 + description = "Official monitoring plugins for Nagios/Ichinga/Sensu and others."; 66 + homepage = https://www.monitoring-plugins.org; 67 + license = licenses.gpl2; 68 + platforms = platforms.linux; 69 + maintainers = with maintainers; [ thoughtpolice relrod ]; 70 + }; 71 + }
+37
pkgs/servers/monitoring/plugins/esxi.nix
··· 1 + { stdenv, fetchFromGitHub, python2Packages }: 2 + 3 + let 4 + bName = "check_esxi_hardware"; 5 + pName = stdenv.lib.replaceStrings [ "_" ] [ "-" ] "${bName}"; 6 + 7 + in python2Packages.buildPythonApplication rec { 8 + name = "${pName}-${version}"; 9 + version = "20161013"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Napsty"; 13 + repo = bName; 14 + rev = version; 15 + sha256 = "19zybcg62dqcinixnp1p8zw916x3w7xvy6dlsmn347iigfa5s55s"; 16 + }; 17 + 18 + dontBuild = true; 19 + doCheck = false; 20 + 21 + installPhase = '' 22 + runHook preInstall 23 + 24 + install -Dm755 -t $out/bin ${bName}.py 25 + install -Dm644 -t $out/share/doc/${pName} README.md 26 + 27 + runHook postInstall 28 + ''; 29 + 30 + propagatedBuildInputs = with python2Packages; [ pywbem ]; 31 + 32 + meta = with stdenv.lib; { 33 + homepage = https://www.claudiokuenzler.com/nagios-plugins/; 34 + license = licenses.gpl2; 35 + maintainer = with maintainers; [ peterhoeg ]; 36 + }; 37 + }
+72
pkgs/servers/monitoring/plugins/labs_consol_de.nix
··· 1 + { stdenv, fetchFromGitHub, buildPerlPackage, autoreconfHook, makeWrapper 2 + , perl, NetSNMP, coreutils, gnused, gnugrep }: 3 + 4 + let 5 + owner = "lausser"; 6 + 7 + glplugin = fetchFromGitHub { 8 + repo = "GLPlugin"; 9 + rev = "b92a261ca4bf84e5b20d3025cc9a31ade03c474b"; 10 + sha256 = "0kflnmpjmklq8fy2vf2h8qyvaiznymdi09z2h5qscrfi51xc9gmh"; 11 + inherit owner; 12 + }; 13 + 14 + generic = { pname, version, rev, sha256, description, ... } @ attrs: 15 + let 16 + attrs' = builtins.removeAttrs attrs [ "pname" "version" "rev" "sha256"]; 17 + in perl.stdenv.mkDerivation rec { 18 + name = stdenv.lib.replaceStrings [ "-" ] [ "_" ] "${pname}-${version}"; 19 + 20 + src = fetchFromGitHub { 21 + repo = pname; 22 + inherit owner rev sha256; 23 + }; 24 + 25 + buildInputs = [ perl NetSNMP ]; 26 + 27 + nativeBuildInputs = [ autoreconfHook makeWrapper ]; 28 + 29 + prePatch = with stdenv.lib; '' 30 + ln -s ${glplugin}/* GLPlugin 31 + substituteInPlace plugins-scripts/Makefile.am \ 32 + --replace /bin/cat ${getBin coreutils}/bin/cat \ 33 + --replace /bin/echo ${getBin coreutils}/bin/echo \ 34 + --replace /bin/grep ${getBin gnugrep}/bin/grep \ 35 + --replace /bin/sed ${getBin gnused}/bin/sed 36 + ''; 37 + 38 + postInstall = '' 39 + test -d $out/libexec && ln -sr $out/libexec $out/bin 40 + ''; 41 + 42 + postFixup = '' 43 + for f in $out/bin/* ; do 44 + wrapProgram $f --prefix PERL5LIB : $PERL5LIB 45 + done 46 + ''; 47 + 48 + meta = with stdenv.lib; { 49 + homepage = https://labs.consol.de/; 50 + license = licenses.gpl2; 51 + maintainer = with maintainers; [ peterhoeg ]; 52 + inherit description; 53 + }; 54 + }; 55 + 56 + in { 57 + check-nwc-health = generic { 58 + pname = "check_nwc_health"; 59 + version = "20170804"; 60 + rev = "e959b412b5cf027c82a446668e026214fdcf8df3"; 61 + sha256 = "11l74xw62g15rqrbf9ff2bfd5iw159gwhhgbkxwdqi8sp9j6navk"; 62 + description = "Check plugin for network equipment."; 63 + }; 64 + 65 + check-ups-health = generic { 66 + pname = "check_ups_health"; 67 + version = "20170804"; 68 + rev = "32a8a359ea46ec0d6f3b7aea19ddedaad63b04b9"; 69 + sha256 = "05na48dxfxrg0i9185j1ck2795p0rw1zwcs8ra0f14cm0qw0lp4l"; 70 + description = "Check plugin for UPSs."; 71 + }; 72 + }
+2 -2
pkgs/stdenv/linux/make-bootstrap-tools.nix
··· 21 21 enableMinimal = true; 22 22 extraConfig = '' 23 23 CONFIG_ASH y 24 - CONFIG_ASH_BUILTIN_ECHO y 25 - CONFIG_ASH_BUILTIN_TEST y 24 + CONFIG_ASH_ECHO y 25 + CONFIG_ASH_TEST y 26 26 CONFIG_ASH_OPTIMIZE_FOR_SIZE y 27 27 CONFIG_MKDIR y 28 28 CONFIG_TAR y
+2 -2
pkgs/tools/graphics/maim/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "maim-${version}"; 7 - version = "5.4.67"; 7 + version = "5.4.68"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "naelstrof"; 11 11 repo = "maim"; 12 12 rev = "v${version}"; 13 - sha256 = "1p72pkfnzhxxmlnryjyvgr6cgjm5ww10xr35si9mx9s4b9pz38jd"; 13 + sha256 = "12jvfxzfhh6cbk6ygliwnkvm3mb7rca60k6x9qdzm17jsz65xhh0"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ cmake pkgconfig ];
+6
pkgs/tools/graphics/optipng/default.nix
··· 17 17 buildInputs = [ libpng ]; 18 18 19 19 LDFLAGS = optional static "-static"; 20 + # Workaround for crash in cexcept.h. See 21 + # https://github.com/NixOS/nixpkgs/issues/28106 22 + preConfigure = '' 23 + export LD=$CC 24 + ''; 25 + 20 26 configureFlags = [ 21 27 "--with-system-zlib" 22 28 "--with-system-libpng"
+14 -9
pkgs/tools/misc/direnv/default.nix
··· 1 - { stdenv, fetchFromGitHub, go, bash, writeText}: 1 + { stdenv, fetchFromGitHub, buildGoPackage, bash, writeText}: 2 2 3 - stdenv.mkDerivation rec { 3 + buildGoPackage rec { 4 4 name = "direnv-${version}"; 5 - version = "2.10.0"; 5 + version = "2.12.2"; 6 + goPackagePath = "github.com/direnv/direnv"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "direnv"; 9 10 repo = "direnv"; 10 11 rev = "v${version}"; 11 - sha256 = "04b098i8dlr6frks67ik0kbc281c6j8lkb6v0y33iwqv45n233q3"; 12 + sha256 = "0i8fnxhcl1zin714wxk93x8fi36z4fibapfn4jl3qkwbczkj8c8b"; 12 13 }; 13 14 14 - buildInputs = [ go ]; 15 + postConfigure = '' 16 + cd $NIX_BUILD_TOP/go/src/$goPackagePath 17 + ''; 15 18 16 19 buildPhase = '' 17 20 make BASH_PATH=${bash}/bin/bash 18 21 ''; 19 22 20 23 installPhase = '' 21 - make install DESTDIR=$out 22 - mkdir -p $out/share/fish/vendor_conf.d 23 - echo "eval ($out/bin/direnv hook fish)" > $out/share/fish/vendor_conf.d/direnv.fish 24 + mkdir -p $out 25 + make install DESTDIR=$bin 26 + mkdir -p $bin/share/fish/vendor_conf.d 27 + echo "eval ($bin/bin/direnv hook fish)" > $bin/share/fish/vendor_conf.d/direnv.fish 28 + '' + stdenv.lib.optionalString (stdenv.isDarwin) '' 29 + install_name_tool -delete_rpath $out/lib $bin/bin/direnv 24 30 ''; 25 31 26 32 meta = with stdenv.lib; { ··· 39 45 homepage = http://direnv.net; 40 46 license = licenses.mit; 41 47 maintainers = with maintainers; [ zimbatm ]; 42 - inherit (go.meta) platforms; 43 48 }; 44 49 }
+18 -9
pkgs/tools/misc/fontforge/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 name = "fontforge-${version}"; 12 - version = "20160404"; 12 + version = "20170730"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "fontforge"; 16 16 repo = "fontforge"; 17 17 rev = version; 18 - sha256 = "15nacq84n9gvlzp3slpmfrrbh57kfb6lbdlc46i7aqgci4qv6fg0"; 18 + sha256 = "15k6x97383p8l40jvcivalhwgbbcdg5vciyjz6m9r0lrlnjqkv99"; 19 19 }; 20 20 21 - patches = [(fetchpatch { 22 - name = "use-system-uthash.patch"; 23 - url = "http://pkgs.fedoraproject.org/cgit/fontforge.git/plain/" 24 - + "fontforge-20140813-use-system-uthash.patch?id=8bdf933"; 25 - sha256 = "0n8i62qv2ygfii535rzp09vvjx4qf9zp5qq7qirrbzm1l9gykcjy"; 26 - })]; 27 - patchFlags = "-p0"; 21 + patches = [ ./fontforge-20140813-use-system-uthash.patch ]; 22 + 23 + # use $SOURCE_DATE_EPOCH instead of non-determenistic timestamps 24 + postPatch = '' 25 + find . -type f -name '*.c' -exec sed -r -i 's#\btime\(&(.+)\)#if (getenv("SOURCE_DATE_EPOCH")) \1=atol(getenv("SOURCE_DATE_EPOCH")); else &#g' {} \; 26 + sed -r -i 's#author\s*!=\s*NULL#& \&\& !getenv("SOURCE_DATE_EPOCH")#g' fontforge/cvexport.c fontforge/dumppfa.c fontforge/print.c fontforge/svg.c fontforge/splineutil2.c 27 + sed -r -i 's#\bb.st_mtime#getenv("SOURCE_DATE_EPOCH") ? atol(getenv("SOURCE_DATE_EPOCH")) : &#g' fontforge/parsepfa.c fontforge/sfd.c fontforge/svg.c 28 + sed -r -i 's#^\s*ttf_fftm_dump#if (!getenv("SOURCE_DATE_EPOCH")) ttf_fftm_dump#g' fontforge/tottf.c 29 + sed -r -i 's#sprintf\(.+ author \);#if (!getenv("SOURCE_DATE_EPOCH")) &#g' fontforgeexe/fontinfo.c 30 + ''; 31 + 32 + # do not use x87's 80-bit arithmetic, rouding errors result in very different font binaries 33 + NIX_CFLAGS_COMPILE = lib.optionals stdenv.isi686 [ "-msse2" "-mfpmath=sse" ]; 28 34 29 35 buildInputs = [ 30 36 autoconf automake gnum4 libtool perl pkgconfig gettext uthash ··· 41 47 42 48 # work-around: git isn't really used, but configuration fails without it 43 49 preConfigure = '' 50 + # The way $version propagates to $version of .pe-scripts (https://github.com/dejavu-fonts/dejavu-fonts/blob/358190f/scripts/generate.pe#L19) 51 + export SOURCE_DATE_EPOCH=$(date -d ${version} +%s) 52 + 44 53 export GIT="$(type -P true)" 45 54 cp -r "${gnulib}" ./gnulib 46 55 chmod +w -R ./gnulib
+30
pkgs/tools/misc/fontforge/fontforge-20140813-use-system-uthash.patch
··· 1 + --- a/Makefile.am.old 2014-08-12 10:07:32.000000000 +0530 2 + +++ b/Makefile.am 2014-09-08 16:23:56.046996941 +0530 3 + @@ -43,7 +43,6 @@ 4 + AM_CPPFLAGS = 5 + AM_LDFLAGS = 6 + 7 + -BUILT_SOURCES = uthash/src 8 + EXTRA_DIST = 9 + CLEANFILES = 10 + MOSTLYCLEANFILES = 11 + @@ -113,7 +112,6 @@ 12 + Packaging/FontForge-doc.spec \ 13 + Packaging/FontForge.spec \ 14 + Packaging/FontForge.static.spec \ 15 + - uthash/src \ 16 + $(NULL) 17 + 18 + #-------------------------------------------------------------------------- 19 + @@ -129,11 +127,6 @@ 20 + 21 + 22 + #-------------------------------------------------------------------------- 23 + -uthash/src: 24 + - if [ ! -e uthash/src ]; then \ 25 + - if [ -e uthash ] ; then rm -r uthash ; fi ; \ 26 + - git clone https://github.com/troydhanson/uthash ; \ 27 + - fi ; 28 + 29 + # We import a selection of targets from Frank's standard packaging Makefile. 30 +
+12 -4
pkgs/tools/misc/fontforge/fontforge-fonttools.nix
··· 1 - {stdenv, fontforge, zlib}: 1 + {stdenv, fetchFromGitHub, zlib}: 2 + 2 3 stdenv.mkDerivation rec { 3 - name = "fontforge-fonttools-${fontforge.version}"; 4 - src = fontforge.src; 4 + version = "20160404"; 5 + name = "fontforge-fonttools-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "fontforge"; 9 + repo = "fontforge"; 10 + rev = version; 11 + sha256 = "15nacq84n9gvlzp3slpmfrrbh57kfb6lbdlc46i7aqgci4qv6fg0"; 12 + }; 5 13 6 14 buildInputs = [zlib]; 7 15 ··· 17 25 18 26 meta = with stdenv.lib; { 19 27 description = ''Small font tools shipped in FontForge contrib''; 20 - license = fontforge.meta.license; 28 + license = licenses.bsd3; 21 29 maintainers = with maintainers; [ raskin ]; 22 30 platforms = with platforms; unix; 23 31 };
+2 -2
pkgs/tools/networking/http-prompt/default.nix
··· 1 1 { stdenv, fetchFromGitHub, pythonPackages, httpie }: 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 - version = "0.9.1"; 4 + version = "0.10.2"; 5 5 name = "http-prompt"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 repo = "http-prompt"; 10 10 owner = "eliangcs"; 11 - sha256 = "0s2syjjz5n7256a4hn8gv3xfr0zd3qqimf4w8l188dbfvx8b8s06"; 11 + sha256 = "0c03n1ll61zd4f60kzih3skl0hspck5hhpcf74h5l6v5as7qdbi2"; 12 12 }; 13 13 14 14 propagatedBuildInputs = with pythonPackages; [
+2 -2
pkgs/tools/networking/keepalived/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "keepalived-${version}"; 5 - version = "1.3.5"; 5 + version = "1.3.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "acassen"; 9 9 repo = "keepalived"; 10 10 rev = "v${version}"; 11 - sha256 = "0lbzbw5giddr4rrhppdpsswh88x86ywxrl01vm8z5am7acixn1zr"; 11 + sha256 = "05088vv510dlflzyg8sh8l8qfscnvxl6n6pw9ycp27zhb6r5cr5y"; 12 12 }; 13 13 14 14 buildInputs = [
+2 -2
pkgs/tools/package-management/dpkg/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "dpkg-${version}"; 5 - version = "1.18.18"; 5 + version = "1.18.24"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz"; 9 - sha256 = "1xbgjdazcxb9iqrz6jcmy8qwgwggvf6rws2265sh01b6skin32y8"; 9 + sha256 = "1d6p22vk1b9v16q96mwaz9w2xr4ly28yamkh49md9gq67qfhhlyq"; 10 10 }; 11 11 12 12 configureFlags = [
+2 -2
pkgs/tools/security/keybase/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "keybase-${version}"; 5 - version = "1.0.22"; 5 + version = "1.0.27"; 6 6 7 7 goPackagePath = "github.com/keybase/client"; 8 8 subPackages = [ "go/keybase" ]; ··· 13 13 owner = "keybase"; 14 14 repo = "client"; 15 15 rev = "v${version}"; 16 - sha256 = "1642d11gjgkdklppmm1j3vwc2r3qg9qqw5x07jnqs819i57mr47f"; 16 + sha256 = "0s68awgaq32hl5rvcrnhn9i98dwh23kws0l4czcghyn6imx8h89i"; 17 17 }; 18 18 19 19 buildFlags = [ "-tags production" ];
+3 -3
pkgs/tools/system/das_watchdog/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "das_watchdog-${version}"; 5 - version = "git-2015-04-02"; 5 + version = "git-2015-09-12"; 6 6 7 7 src = fetchgit { 8 8 url = "https://github.com/kmatheussen/das_watchdog.git"; 9 - rev = "1c203d9a55455c4670c164f945ea2dd9fd197ba9"; 10 - sha256 = "c817491d67d31297dcd6177b9c33b5c3977c1c383eac588026631dd6961ba6bf"; 9 + rev = "5ac0db0b98e5b4e690aca0aa7fb6ec60ceddcb06"; 10 + sha256 = "02y1vfb3wh4908xjj1kpyf8kgxk29x8dw7yl3pnl220qz2gi99vr"; 11 11 }; 12 12 13 13 buildInputs = [ libgtop xmessage which pkgconfig ];
+23 -15
pkgs/top-level/all-packages.nix
··· 5541 5541 sha256 = "1r0rqbnw7rf94f5bsa3gi8bick4xb7qnp1dkvdjfbvqjvysvc44r"; 5542 5542 ncurses = pkgsi686Linux.ncurses5; 5543 5543 }; 5544 - gcc-arm-embedded = gcc-arm-embedded-5; 5544 + gcc-arm-embedded-6 = callPackage ../development/compilers/gcc-arm-embedded/6 {}; 5545 + gcc-arm-embedded = gcc-arm-embedded-6; 5545 5546 5546 5547 gforth = callPackage ../development/compilers/gforth {}; 5547 5548 ··· 6416 6417 }; 6417 6418 6418 6419 rascal = callPackage ../development/interpreters/rascal { }; 6420 + 6421 + red = callPackage ../development/interpreters/red { }; 6419 6422 6420 6423 regina = callPackage ../development/interpreters/regina { }; 6421 6424 ··· 9650 9653 opencollada = callPackage ../development/libraries/opencollada { }; 9651 9654 9652 9655 opencore-amr = callPackage ../development/libraries/opencore-amr { }; 9653 - 9656 + 9654 9657 opencsg = callPackage ../development/libraries/opencsg { }; 9655 9658 9656 9659 openct = callPackage ../development/libraries/openct { }; ··· 11361 11364 11362 11365 munin = callPackage ../servers/monitoring/munin { }; 11363 11366 11364 - nagiosPluginsOfficial = callPackage ../servers/monitoring/nagios/plugins/official-2.x.nix { }; 11365 - 11367 + monitoring-plugins = callPackage ../servers/monitoring/plugins { }; 11368 + nagiosPluginsOfficial = monitoring-plugins; 11369 + 11370 + inherit (callPackage ../servers/monitoring/plugins/labs_consol_de.nix { inherit (perlPackages) NetSNMP; }) 11371 + check-nwc-health 11372 + check-ups-health; 11373 + 11366 11374 checkSSLCert = callPackage ../servers/monitoring/nagios/plugins/check_ssl_cert.nix { }; 11367 11375 11368 11376 neo4j = callPackage ../servers/nosql/neo4j { }; 11377 + 11378 + check-esxi-hardware = callPackage ../servers/monitoring/plugins/esxi.nix {}; 11369 11379 11370 11380 net_snmp = callPackage ../servers/monitoring/net-snmp { 11371 11381 # https://sourceforge.net/p/net-snmp/bugs/2712/ ··· 12006 12016 linuxHeaders_4_4 = callPackage ../os-specific/linux/kernel-headers/4.4.nix { 12007 12017 cross = if targetPlatform != hostPlatform then targetPlatform else null; 12008 12018 }; 12009 - 12010 - # We can choose: 12011 - linuxHeaders = 12012 - if targetPlatform != hostPlatform 12013 - then 12014 - { # switch 12015 - "4.4" = linuxHeaders_4_4; 12016 - }.${targetPlatform.platform.kernelMajor} 12017 - or (throw "Unknown linux kernel version") 12018 - else 12019 - linuxHeaders_4_4; 12019 + linuxHeaders = linuxHeaders_4_4; 12020 12020 12021 12021 kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { }; 12022 12022 ··· 13278 13278 tcl = tcl-8_5; 13279 13279 }; 13280 13280 13281 + msgviewer = callPackage ../applications/networking/mailreaders/msgviewer { }; 13282 + 13281 13283 amarok = kde4.callPackage ../applications/audio/amarok { 13282 13284 ffmpeg = ffmpeg_2; 13283 13285 }; ··· 14477 14479 14478 14480 graphicsmagick = callPackage ../applications/graphics/graphicsmagick { }; 14479 14481 graphicsmagick_q16 = callPackage ../applications/graphics/graphicsmagick { quantumdepth = 16; }; 14482 + 14483 + grisbi = callPackage ../applications/office/grisbi { gtk = gtk2; }; 14480 14484 14481 14485 gtkpod = callPackage ../applications/audio/gtkpod { 14482 14486 gnome = gnome3; ··· 15893 15897 15894 15898 rxvt_unicode-with-plugins = callPackage ../applications/misc/rxvt_unicode/wrapper.nix { 15895 15899 plugins = [ 15900 + urxvt_autocomplete_all_the_things 15896 15901 urxvt_perl 15897 15902 urxvt_perls 15898 15903 urxvt_tabbedex ··· 15903 15908 }; 15904 15909 15905 15910 # urxvt plugins 15911 + urxvt_autocomplete_all_the_things = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-autocomplete-all-the-things { }; 15906 15912 urxvt_perl = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-perl { }; 15907 15913 urxvt_perls = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-perls { }; 15908 15914 urxvt_tabbedex = callPackage ../applications/misc/rxvt_unicode-plugins/urxvt-tabbedex { }; ··· 16189 16195 syncthing013 = callPackage ../applications/networking/syncthing013 { }; 16190 16196 16191 16197 syncthing-inotify = callPackage ../applications/networking/syncthing/inotify.nix { }; 16198 + 16199 + syncthing-tray = callPackage ../applications/misc/syncthing-tray { }; 16192 16200 16193 16201 # linux only by now 16194 16202 synergy = callPackage ../applications/misc/synergy { };
+26 -6
pkgs/top-level/perl-packages.nix
··· 946 946 }; 947 947 }; 948 948 949 - Carp = buildPerlPackage { 950 - name = "Carp-1.36"; 949 + Carp = buildPerlPackage rec { 950 + name = "Carp-1.38"; 951 951 src = fetchurl { 952 - url = mirror://cpan/authors/id/R/RJ/RJBS/Carp-1.36.tar.gz; 953 - sha256 = "dcc789935126461c80df0653f98c1d8d0b936dcc3d04174287cb02767eca123c"; 952 + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; 953 + sha256 = "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"; 954 954 }; 955 - meta = { 955 + meta = with stdenv.lib; { 956 956 description = "Alternative warn and die for modules"; 957 - license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 957 + license = with licenses; [ artistic1 gpl1Plus ]; 958 958 }; 959 959 }; 960 960 ··· 4664 4664 description = "Simply Sending Email"; 4665 4665 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4666 4666 maintainers = [ maintainers.rycee ]; 4667 + }; 4668 + }; 4669 + 4670 + EmailOutlookMessage = buildPerlPackage rec { 4671 + name = "Email-Outlook-Message-${version}"; 4672 + version = "0.918"; 4673 + src = fetchurl { 4674 + url = "mirror://cpan/authors/id/M/MV/MVZ/${name}.tar.gz"; 4675 + sha256 = "1w1s858xzp3vbi91qa01qnmk4n78fmvl4a7axrx2r15vr3s2k2pv"; 4676 + }; 4677 + propagatedBuildInputs = [ 4678 + Carp Encode EmailMIME EmailMIMEContentType EmailSender 4679 + EmailSimple GetoptLong IOString OLEStorage_Lite PodUsage 4680 + ]; 4681 + buildInputs = [ TestMore IOAll ]; 4682 + meta = with stdenv.lib; { 4683 + homepage = http://www.matijs.net/software/msgconv/; 4684 + description = "A .MSG to mbox converter"; 4685 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4686 + maintainers = with maintainers; [ peterhoeg ]; 4667 4687 }; 4668 4688 }; 4669 4689
+4
pkgs/top-level/python-packages.nix
··· 8357 8357 }; 8358 8358 }; 8359 8359 8360 + hyperlink = callPackage ../development/python-modules/hyperlink {}; 8360 8361 8361 8362 zope_copy = buildPythonPackage rec { 8362 8363 name = "zope.copy-4.0.2"; ··· 28588 28589 maintainers = with maintainers; [ bennofs ]; 28589 28590 }; 28590 28591 }; 28592 + 28593 + # We need "normal" libxml2 and not the python package by the same name. 28594 + pywbem = callPackage ../development/python-modules/pywbem { libxml2 = pkgs.libxml2; }; 28591 28595 28592 28596 unicorn = buildPythonPackage rec { 28593 28597 name = "unicorn-${version}";
-18
pkgs/top-level/release.nix
··· 108 108 #rPackages = packagePlatforms pkgs.rPackages; 109 109 ocamlPackages = { }; 110 110 perlPackages = { }; 111 - pythonPackages = { 112 - blaze = unix; 113 - pandas = unix; 114 - scikitlearn = unix; 115 - }; 116 - python2Packages = { }; 117 - python27Packages = { }; 118 - python3Packages = { }; 119 - python35Packages = { 120 - blaze = unix; 121 - pandas = unix; 122 - scikitlearn = unix; 123 - }; 124 - python36Packages = { 125 - blaze = unix; 126 - pandas = unix; 127 - scikitlearn = unix; 128 - }; 129 111 130 112 # hack around broken eval of non-linux packages for now. 131 113 tests.macOSSierraShared = darwin;