Merge remote-tracking branch 'channels/nixos-unstable' into staging

+1676 -791
+8 -15
nixos/lib/make-disk-image.nix
··· 33 33 34 34 , name ? "nixos-disk-image" 35 35 36 - , format ? "raw" 36 + , # Disk image format, one of qcow2, vpc, raw. 37 + format ? "raw" 37 38 }: 38 39 39 40 with lib; ··· 45 46 raw = "img"; 46 47 }; 47 48 48 - nixpkgs = lib.cleanSource pkgs.path; 49 + nixpkgs = cleanSource pkgs.path; 49 50 50 51 channelSources = pkgs.runCommand "nixos-${config.system.nixosVersion}" {} '' 51 52 mkdir -p $out ··· 64 65 ${channelSources} 65 66 ''; 66 67 67 - prepareImageInputs = with pkgs; [ rsync utillinux parted e2fsprogs lkl fakeroot libfaketime config.system.build.nixos-prepare-root ] ++ stdenv.initialPath; 68 + prepareImageInputs = with pkgs; [ rsync utillinux parted e2fsprogs lkl fakeroot config.system.build.nixos-prepare-root ] ++ stdenv.initialPath; 68 69 69 70 # I'm preserving the line below because I'm going to search for it across nixpkgs to consolidate 70 71 # image building logic. The comment right below this now appears in 4 different places in nixpkgs :) ··· 73 74 targets = map (x: x.target) contents; 74 75 75 76 prepareImage = '' 76 - export PATH=${pkgs.lib.makeSearchPathOutput "bin" "bin" prepareImageInputs} 77 + export PATH=${makeSearchPathOutput "bin" "bin" prepareImageInputs} 77 78 78 79 mkdir $out 79 80 diskImage=nixos.raw ··· 86 87 offset=0 87 88 ''} 88 89 89 - faketime -f "1970-01-01 00:00:01" mkfs.${fsType} -F -L nixos -E offset=$offset $diskImage 90 - 90 + mkfs.${fsType} -F -L nixos -E offset=$offset $diskImage 91 + 91 92 root="$PWD/root" 92 93 mkdir -p $root 93 94 ··· 124 125 fakeroot nixos-prepare-root $root ${channelSources} ${config.system.build.toplevel} closure 125 126 126 127 echo "copying staging root to image..." 127 - # If we don't faketime, we can end up with timestamps other than 1 on the nix store, which 128 - # will confuse Nix in some situations (e.g., breaking image builds in the target image) 129 - # N.B: I use 0 here, which results in timestamp = 1 in the image. It's weird but see 130 - # https://github.com/lkl/linux/issues/393. Also, running under faketime makes `cptofs` super 131 - # noisy and it prints out that it can't find a bunch of files, and then works anyway. We'll 132 - # shut it up someday but trying to do a stderr filter through grep is running into some nasty 133 - # bug in some eval nonsense we have in runInLinuxVM and I'm sick of trying to fix it. 134 - faketime -f "1970-01-01 00:00:00" \ 135 - cptofs ${pkgs.lib.optionalString partitioned "-P 1"} -t ${fsType} -i $diskImage $root/* / 128 + cptofs ${pkgs.lib.optionalString partitioned "-P 1"} -t ${fsType} -i $diskImage $root/* / 136 129 ''; 137 130 in pkgs.vmTools.runInLinuxVM ( 138 131 pkgs.runCommand name
+32 -15
nixos/modules/services/misc/nzbget.nix
··· 4 4 5 5 let 6 6 cfg = config.services.nzbget; 7 - nzbget = pkgs.nzbget; 8 - in 9 - { 7 + nzbget = pkgs.nzbget; in { 10 8 options = { 11 9 services.nzbget = { 12 10 enable = mkEnableOption "NZBGet"; ··· 42 40 p7zip 43 41 ]; 44 42 preStart = '' 45 - test -d /var/lib/nzbget || { 46 - echo "Creating nzbget state directoy in /var/lib/" 47 - mkdir -p /var/lib/nzbget 43 + datadir=/var/lib/nzbget 44 + cfgtemplate=${cfg.package}/share/nzbget/nzbget.conf 45 + test -d $datadir || { 46 + echo "Creating nzbget data directory in $datadir" 47 + mkdir -p $datadir 48 48 } 49 - test -f /var/lib/nzbget/nzbget.conf || { 50 - echo "nzbget.conf not found. Copying default config to /var/lib/nzbget/nzbget.conf" 51 - cp ${cfg.package}/share/nzbget/nzbget.conf /var/lib/nzbget/nzbget.conf 52 - echo "Setting file mode of nzbget.conf to 0700 (needs to be written and contains plaintext credentials)" 53 - chmod 0700 /var/lib/nzbget/nzbget.conf 49 + test -f $configfile || { 50 + echo "nzbget.conf not found. Copying default config $cfgtemplate to $configfile" 51 + cp $cfgtemplate $configfile 52 + echo "Setting $configfile permissions to 0700 (needs to be written and contains plaintext credentials)" 53 + chmod 0700 $configfile 54 54 echo "Setting temporary \$MAINDIR variable in default config required in order to allow nzbget to complete initial start" 55 55 echo "Remember to change this to a proper value once NZBGet startup has been completed" 56 - sed -i -e 's/MainDir=.*/MainDir=\/tmp/g' /var/lib/nzbget/nzbget.conf 56 + sed -i -e 's/MainDir=.*/MainDir=\/tmp/g' $configfile 57 + } 58 + echo "Ensuring proper ownership of $datadir (${cfg.user}:${cfg.group})." 59 + chown -R ${cfg.user}:${cfg.group} $datadir 60 + ''; 61 + 62 + script = '' 63 + configfile=/var/lib/nzbget/nzbget.conf 64 + args="--daemon --configfile $configfile" 65 + # The script in preStart (above) copies nzbget's config template to datadir on first run, containing paths that point to the nzbget derivation installed at the time. 66 + # These paths break when nzbget is upgraded & the original derivation is garbage collected. If such broken paths are found in the config file, override them to point to 67 + # the currently installed nzbget derivation. 68 + cfgfallback () { 69 + local hit=`grep -Po "(?<=^$1=).*+" "$configfile" | sed 's/[ \t]*$//'` # Strip trailing whitespace 70 + ( test $hit && test -e $hit ) || { 71 + echo "In $configfile, valid $1 not found; falling back to $1=$2" 72 + args+=" -o $1=$2" 73 + } 57 74 } 58 - echo "Ensuring proper ownership of /var/lib/nzbget (${cfg.user}:${cfg.group})." 59 - chown -R ${cfg.user}:${cfg.group} /var/lib/nzbget 75 + cfgfallback ConfigTemplate ${cfg.package}/share/nzbget/nzbget.conf 76 + cfgfallback WebDir ${cfg.package}/share/nzbget/webui 77 + ${cfg.package}/bin/nzbget $args 60 78 ''; 61 79 62 80 serviceConfig = { ··· 64 82 User = cfg.user; 65 83 Group = cfg.group; 66 84 PermissionsStartOnly = "true"; 67 - ExecStart = "${cfg.package}/bin/nzbget --daemon --configfile /var/lib/nzbget/nzbget.conf"; 68 85 Restart = "on-failure"; 69 86 }; 70 87 };
+51 -9
nixos/modules/services/networking/wpa_supplicant.nix
··· 8 8 ${optionalString cfg.userControlled.enable '' 9 9 ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=${cfg.userControlled.group} 10 10 update_config=1''} 11 - ${concatStringsSep "\n" (mapAttrsToList (ssid: networkConfig: let 12 - psk = if networkConfig.psk != null 13 - then ''"${networkConfig.psk}"'' 14 - else networkConfig.pskRaw; 15 - priority = networkConfig.priority; 11 + ${concatStringsSep "\n" (mapAttrsToList (ssid: config: with config; let 12 + key = if psk != null 13 + then ''"${psk}"'' 14 + else pskRaw; 15 + baseAuth = if key != null 16 + then ''psk=${key}'' 17 + else ''key_mgmt=NONE''; 16 18 in '' 17 19 network={ 18 20 ssid="${ssid}" 19 - ${optionalString (psk != null) ''psk=${psk}''} 20 - ${optionalString (psk == null) ''key_mgmt=NONE''} 21 21 ${optionalString (priority != null) ''priority=${toString priority}''} 22 + ${optionalString hidden "scan_ssid=1"} 23 + ${if (auth != null) then auth else baseAuth} 24 + ${extraConfig} 22 25 } 23 26 '') cfg.networks)} 24 27 '' else "/etc/wpa_supplicant.conf"; ··· 70 73 Mutually exclusive with <varname>psk</varname>. 71 74 ''; 72 75 }; 76 + 77 + auth = mkOption { 78 + type = types.nullOr types.str; 79 + default = null; 80 + example = '' 81 + key_mgmt=WPA-EAP 82 + eap=PEAP 83 + identity="user@example.com" 84 + password="secret" 85 + ''; 86 + description = '' 87 + Use this option to configure advanced authentication methods like EAP. 88 + See wpa_supplicant.conf(5) for example configurations. 89 + 90 + Mutually exclusive with <varname>psk</varname> and <varname>pskRaw</varname>. 91 + ''; 92 + }; 93 + 94 + hidden = mkOption { 95 + type = types.bool; 96 + default = false; 97 + description = '' 98 + Set this to <literal>true</literal> if the SSID of the network is hidden. 99 + ''; 100 + }; 101 + 73 102 priority = mkOption { 74 103 type = types.nullOr types.int; 75 104 default = null; ··· 83 112 policy, signal strength, etc. 84 113 ''; 85 114 }; 115 + 116 + extraConfig = mkOption { 117 + type = types.str; 118 + default = ""; 119 + example = '' 120 + bssid_blacklist=02:11:22:33:44:55 02:22:aa:44:55:66 121 + ''; 122 + description = '' 123 + Extra configuration lines appended to the network block. 124 + See wpa_supplicant.conf(5) for available options. 125 + ''; 126 + }; 127 + 86 128 }; 87 129 }); 88 130 description = '' ··· 128 170 129 171 config = mkIf cfg.enable { 130 172 assertions = flip mapAttrsToList cfg.networks (name: cfg: { 131 - assertion = cfg.psk == null || cfg.pskRaw == null; 132 - message = ''networking.wireless."${name}".psk and networking.wireless."${name}".pskRaw are mutually exclusive''; 173 + assertion = with cfg; count (x: x != null) [ psk pskRaw auth ] <= 1; 174 + message = ''options networking.wireless."${name}".{psk,pskRaw,auth} are mutually exclusive''; 133 175 }); 134 176 135 177 environment.systemPackages = [ pkgs.wpa_supplicant ];
+3 -4
pkgs/applications/editors/android-studio/packages.nix pkgs/applications/editors/android-studio/default.nix
··· 27 27 28 28 preview = mkStudio { 29 29 pname = "android-studio-preview"; 30 - version = "3.1.0.0"; # "Android Studio 3.1 Canary 1" 31 - build = "171.4415322"; 32 - sha256Hash = "08xgwv6mg2zxys9dqjfz66h60g640ni3snyb89ij0fkmd28rbxgj"; 30 + version = "3.1.0.2"; # "Android Studio 3.1 Canary 3" 31 + build = "171.4435470"; 32 + sha256Hash = "1yqzxmzqxvhq9q9k07yfchh2al0wdy0j5k5fmjv4zbw20panx10h"; 33 33 34 34 meta = stable.meta // { 35 35 description = "The Official IDE for Android (preview version)"; 36 36 homepage = https://developer.android.com/studio/preview/index.html; 37 - maintainers = with stdenv.lib.maintainers; [ primeos ]; 38 37 }; 39 38 }; 40 39 }
+9 -9
pkgs/applications/editors/emacs-modes/elpa-generated.nix
··· 700 700 ebdb = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib, seq }: 701 701 elpaBuild { 702 702 pname = "ebdb"; 703 - version = "0.4.1"; 703 + version = "0.4.2"; 704 704 src = fetchurl { 705 - url = "https://elpa.gnu.org/packages/ebdb-0.4.1.tar"; 706 - sha256 = "0gv1q1xkhjab0l77c92znn6x0dfdbnj6hc48axmrx6a7zwbm3g2r"; 705 + url = "https://elpa.gnu.org/packages/ebdb-0.4.2.tar"; 706 + sha256 = "1j9hgxa6csj3iz5vrl22xvhl9lxhig0n1cixgzhs1sb3z3nn2li6"; 707 707 }; 708 708 packageRequires = [ cl-lib emacs seq ]; 709 709 meta = { ··· 1464 1464 }) {}; 1465 1465 nlinum = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1466 1466 pname = "nlinum"; 1467 - version = "1.8"; 1467 + version = "1.8.1"; 1468 1468 src = fetchurl { 1469 - url = "https://elpa.gnu.org/packages/nlinum-1.8.el"; 1470 - sha256 = "0bb1c8a68fzv59q2ri7ppbx8cm7sa8n4hxxvxv73db2dcgwrgwga"; 1469 + url = "https://elpa.gnu.org/packages/nlinum-1.8.1.el"; 1470 + sha256 = "0fx560yfjy6nqgs1d3fiv0h46i8q3r592clsia7nihkriah7rlwf"; 1471 1471 }; 1472 1472 packageRequires = []; 1473 1473 meta = { ··· 1556 1556 }) {}; 1557 1557 org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1558 1558 pname = "org"; 1559 - version = "20171030"; 1559 + version = "20171106"; 1560 1560 src = fetchurl { 1561 - url = "https://elpa.gnu.org/packages/org-20171030.tar"; 1562 - sha256 = "1lszws6b5s4r7w871cyigs433dflf6w0y33fj6rzrq8240d5092i"; 1561 + url = "https://elpa.gnu.org/packages/org-20171106.tar"; 1562 + sha256 = "08gziccqfrl65v18ri2m6csb6smyafaz7pv86gnvpw05g7aj6alq"; 1563 1563 }; 1564 1564 packageRequires = []; 1565 1565 meta = {
+580 -352
pkgs/applications/editors/emacs-modes/melpa-generated.nix
··· 803 803 src = fetchFromGitHub { 804 804 owner = "Andersbakken"; 805 805 repo = "rtags"; 806 - rev = "7fa54d513fc716b2dc1055636b4728ab29dfdd3e"; 807 - sha256 = "1i0php9nnpgsmb4l1sc7qgxvdgg4hyviq68f4k41b9bcwab2hbl8"; 806 + rev = "e413e31d1e74fae1fc1bf86792013c3680be6580"; 807 + sha256 = "0hfibc1nllsp9zdb803ac6cwp6xx4xf8mvjszfq9vp5a63sgw0pl"; 808 808 }; 809 809 recipeFile = fetchurl { 810 810 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags"; ··· 1405 1405 ahungry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1406 1406 melpaBuild { 1407 1407 pname = "ahungry-theme"; 1408 - version = "20171029.2107"; 1408 + version = "20171103.2238"; 1409 1409 src = fetchFromGitHub { 1410 1410 owner = "ahungry"; 1411 1411 repo = "color-theme-ahungry"; 1412 - rev = "6b078bf41f59ea0158b01742cae428ed61c4bc35"; 1413 - sha256 = "0c61wsvb82r2ygiyk3na559y0jhba266igampa43g4qdphkjzfqy"; 1412 + rev = "9ec7fca8002b213c7eee1168258e36a683190d18"; 1413 + sha256 = "01gjmyxb0m6i321md77wscqrhy30gyhrk4fjcx7mg2z9hzxvzljb"; 1414 1414 }; 1415 1415 recipeFile = fetchurl { 1416 1416 url = "https://raw.githubusercontent.com/milkypostman/melpa/520295978fd7de3f4266dd69cc30d0b4fdf09db0/recipes/ahungry-theme"; ··· 1489 1489 alda-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1490 1490 melpaBuild { 1491 1491 pname = "alda-mode"; 1492 - version = "20171030.1008"; 1492 + version = "20171103.1548"; 1493 1493 src = fetchFromGitHub { 1494 1494 owner = "jgkamat"; 1495 1495 repo = "alda-mode"; 1496 - rev = "3a08f8349a1ebe8e0ae8622f5bf6ed93491dd785"; 1497 - sha256 = "1lrgxawhsaziwvvs16n0339xn0m1333028q0gj3md23bpgrjqa5p"; 1496 + rev = "ea0d3a25ca2b45d08c510ad55b3d8a5374b2ec43"; 1497 + sha256 = "18rfn6608sxwv8r0kdrzhag58kf1822xmy7h9gw1ci7mfpq2i1ns"; 1498 1498 }; 1499 1499 recipeFile = fetchurl { 1500 1500 url = "https://raw.githubusercontent.com/milkypostman/melpa/2612c494a2b6bd43ffbbaef88ce9ee6327779158/recipes/alda-mode"; ··· 4034 4034 license = lib.licenses.free; 4035 4035 }; 4036 4036 }) {}; 4037 + axiom-environment = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }: 4038 + melpaBuild { 4039 + pname = "axiom-environment"; 4040 + version = "20171105.128"; 4041 + src = fetchgit { 4042 + url = "https://bitbucket.org/pdo/axiom-environment.git"; 4043 + rev = "33af42c1c3109f17d63c69cdca0319e424409a37"; 4044 + sha256 = "1nv102jd07nrhkp4fci5n5f1l6z3qan1lb3ykhhvl90k9ygqbac5"; 4045 + }; 4046 + recipeFile = fetchurl { 4047 + url = "https://raw.githubusercontent.com/milkypostman/melpa/9f07feb8686c76c330f282320b9f653dc16cadd5/recipes/axiom-environment"; 4048 + sha256 = "0lr2kdm6jr25mi6s6mpahb8r56d3800r7jgljjdiz4ab36zqvgz3"; 4049 + name = "axiom-environment"; 4050 + }; 4051 + packageRequires = [ emacs ]; 4052 + meta = { 4053 + homepage = "https://melpa.org/#/axiom-environment"; 4054 + license = lib.licenses.free; 4055 + }; 4056 + }) {}; 4037 4057 babel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 4038 4058 melpaBuild { 4039 4059 pname = "babel"; ··· 6565 6585 src = fetchFromGitHub { 6566 6586 owner = "ocaml"; 6567 6587 repo = "ocaml"; 6568 - rev = "65252925f597008101cdb68b6dd119227106f0e2"; 6569 - sha256 = "0627mksg7hmmz1hzalyrklsnwpz2k3jzl41dyllk5b7xpap5s9q5"; 6588 + rev = "43d77ff6ad60a39bac2be88dc399f28e763834d0"; 6589 + sha256 = "1m13qcpzdk660q8q8pdj8lqpdjwxmycvl8205k0iqkgb7bmm0pgp"; 6570 6590 }; 6571 6591 recipeFile = fetchurl { 6572 6592 url = "https://raw.githubusercontent.com/milkypostman/melpa/d5a3263cdcc229b11a3e96edbf632d56f32c47aa/recipes/caml"; ··· 7026 7046 src = fetchFromGitHub { 7027 7047 owner = "cfengine"; 7028 7048 repo = "core"; 7029 - rev = "b0979047d55db2aefda4adc40cd266c693a57b70"; 7030 - sha256 = "15giw6kacnj1fa3w794gnaqjpywrdrz96rgq1igsygj1rjacrgi7"; 7049 + rev = "6ca4b9c1b40de9617a4458d9193525ad99335a86"; 7050 + sha256 = "123sdgjdxbxlml7vhnqv7a2mhwk8f203azdcscbff4hn4r3fz8x2"; 7031 7051 }; 7032 7052 recipeFile = fetchurl { 7033 7053 url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style"; ··· 8294 8314 clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8295 8315 melpaBuild { 8296 8316 pname = "clojure-mode"; 8297 - version = "20171031.357"; 8317 + version = "20171103.1150"; 8298 8318 src = fetchFromGitHub { 8299 8319 owner = "clojure-emacs"; 8300 8320 repo = "clojure-mode"; 8301 - rev = "061431d86f05a5a25d2e00fc5f317b22cb9d8a79"; 8302 - sha256 = "09cv517p42nrzj435b1ma8lfl1k4izdv1dj1q9hi5y61q1q1zhp9"; 8321 + rev = "118c19700c904ae6a45fb409ca795bb93ff8dbd8"; 8322 + sha256 = "0kdk94ffrw27fz8ycka7a24hj3p3w09rhq3ppga7dwgsxqjfjb5l"; 8303 8323 }; 8304 8324 recipeFile = fetchurl { 8305 8325 url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode"; ··· 8315 8335 clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8316 8336 melpaBuild { 8317 8337 pname = "clojure-mode-extra-font-locking"; 8318 - version = "20170303.2310"; 8338 + version = "20171102.1020"; 8319 8339 src = fetchFromGitHub { 8320 8340 owner = "clojure-emacs"; 8321 8341 repo = "clojure-mode"; 8322 - rev = "061431d86f05a5a25d2e00fc5f317b22cb9d8a79"; 8323 - sha256 = "09cv517p42nrzj435b1ma8lfl1k4izdv1dj1q9hi5y61q1q1zhp9"; 8342 + rev = "118c19700c904ae6a45fb409ca795bb93ff8dbd8"; 8343 + sha256 = "0kdk94ffrw27fz8ycka7a24hj3p3w09rhq3ppga7dwgsxqjfjb5l"; 8324 8344 }; 8325 8345 recipeFile = fetchurl { 8326 8346 url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking"; ··· 8550 8570 src = fetchFromGitHub { 8551 8571 owner = "Kitware"; 8552 8572 repo = "CMake"; 8553 - rev = "a57bad6c3d0dbc885bb71dfe465d09a380c35960"; 8554 - sha256 = "1igyb96zbdr94sxry8irffhmhcz1wi0d4a65cf98j4vvnxz36b9w"; 8573 + rev = "3d6e45af611983d85b130b4f874d862f7d998013"; 8574 + sha256 = "1gjqzzyfk5z9g2b5qnsfvddjlf6p441l8gv80z7jjq6qmwvppw94"; 8555 8575 }; 8556 8576 recipeFile = fetchurl { 8557 8577 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 9008 9028 color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 9009 9029 melpaBuild { 9010 9030 pname = "color-theme-sanityinc-tomorrow"; 9011 - version = "20171030.1358"; 9031 + version = "20171102.900"; 9012 9032 src = fetchFromGitHub { 9013 9033 owner = "purcell"; 9014 9034 repo = "color-theme-sanityinc-tomorrow"; 9015 - rev = "e7f5d175916df20c411713e49be8b58aac36f7ed"; 9016 - sha256 = "11n5ly2n8l4b7xph81w57av42zv43fk2vc6b6mjhxvvn86l97ma7"; 9035 + rev = "3721c9f6a46a284c57dfb2f4d093f1a81de085b6"; 9036 + sha256 = "0whbhhdjcm291rs8jzfwav9f2mxibgh6c8hf6z65jq0qkzvkz8qi"; 9017 9037 }; 9018 9038 recipeFile = fetchurl { 9019 9039 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow"; ··· 9306 9326 src = fetchFromGitHub { 9307 9327 owner = "company-mode"; 9308 9328 repo = "company-mode"; 9309 - rev = "66e43a3a3388c3af3dd851ba0a1f48dcb6efb1ae"; 9329 + rev = "098a90769ed47be1cfcebb83c2cad2e5e072bdff"; 9310 9330 sha256 = "0wm1qrwmhzs3vphk6hbi288rvc66gznis5kfj25d86ilq4fvawsf"; 9311 9331 }; 9312 9332 recipeFile = fetchurl { ··· 9409 9429 packageRequires = [ auctex company yasnippet ]; 9410 9430 meta = { 9411 9431 homepage = "https://melpa.org/#/company-auctex"; 9432 + license = lib.licenses.free; 9433 + }; 9434 + }) {}; 9435 + company-axiom = callPackage ({ axiom-environment, company, emacs, fetchgit, fetchurl, lib, melpaBuild }: 9436 + melpaBuild { 9437 + pname = "company-axiom"; 9438 + version = "20171024.1310"; 9439 + src = fetchgit { 9440 + url = "https://bitbucket.org/pdo/axiom-environment.git"; 9441 + rev = "33af42c1c3109f17d63c69cdca0319e424409a37"; 9442 + sha256 = "1nv102jd07nrhkp4fci5n5f1l6z3qan1lb3ykhhvl90k9ygqbac5"; 9443 + }; 9444 + recipeFile = fetchurl { 9445 + url = "https://raw.githubusercontent.com/milkypostman/melpa/9f07feb8686c76c330f282320b9f653dc16cadd5/recipes/company-axiom"; 9446 + sha256 = "1qjy2idyfwa1a4z1v05ky26dzq8hs6aaszq4bifd7vymasvnamml"; 9447 + name = "company-axiom"; 9448 + }; 9449 + packageRequires = [ axiom-environment company emacs ]; 9450 + meta = { 9451 + homepage = "https://melpa.org/#/company-axiom"; 9412 9452 license = lib.licenses.free; 9413 9453 }; 9414 9454 }) {}; 9415 9455 company-bibtex = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: 9416 9456 melpaBuild { 9417 9457 pname = "company-bibtex"; 9418 - version = "20170125.2135"; 9458 + version = "20171104.2344"; 9419 9459 src = fetchFromGitHub { 9420 9460 owner = "gbgar"; 9421 9461 repo = "company-bibtex"; 9422 - rev = "2cea36c24c35c1e9fafce7526781f119a48b5e82"; 9423 - sha256 = "0l4xnqhk3a4szwcfyw90naxasbca8nrnjhnaqiw8zyixhakdbhxz"; 9462 + rev = "225c6f5c0c070c94c8cdbbd452ea548cd94d76f4"; 9463 + sha256 = "0bv2jcmyirdxm158w2766l3q7kh7h71l9milwc9fl8qfz7wb5l80"; 9424 9464 }; 9425 9465 recipeFile = fetchurl { 9426 9466 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-bibtex"; ··· 9863 9903 company-lean = callPackage ({ company, dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lean-mode, lib, melpaBuild, s }: 9864 9904 melpaBuild { 9865 9905 pname = "company-lean"; 9866 - version = "20170920.708"; 9906 + version = "20171102.754"; 9867 9907 src = fetchFromGitHub { 9868 9908 owner = "leanprover"; 9869 9909 repo = "lean-mode"; 9870 - rev = "2f73061c886bae07bc51e4d9eb545ed8027c0442"; 9871 - sha256 = "17bqx7bkfzv4w7cf0l139xwg1shns680rq74hrqgicammb453kz7"; 9910 + rev = "c0af876c967fc969d67c467bc6767210d19c5d87"; 9911 + sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9"; 9872 9912 }; 9873 9913 recipeFile = fetchurl { 9874 9914 url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/company-lean"; ··· 10167 10207 src = fetchFromGitHub { 10168 10208 owner = "Andersbakken"; 10169 10209 repo = "rtags"; 10170 - rev = "7fa54d513fc716b2dc1055636b4728ab29dfdd3e"; 10171 - sha256 = "1i0php9nnpgsmb4l1sc7qgxvdgg4hyviq68f4k41b9bcwab2hbl8"; 10210 + rev = "e413e31d1e74fae1fc1bf86792013c3680be6580"; 10211 + sha256 = "0hfibc1nllsp9zdb803ac6cwp6xx4xf8mvjszfq9vp5a63sgw0pl"; 10172 10212 }; 10173 10213 recipeFile = fetchurl { 10174 10214 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags"; ··· 10314 10354 src = fetchFromGitHub { 10315 10355 owner = "osv"; 10316 10356 repo = "company-web"; 10317 - rev = "2915da21c6327c7eaa0d03e237163228c9681224"; 10318 - sha256 = "0pjxahrhvz7l45whqlgm6n4mvqqxc8zs1dv33p3b498hyb83f52j"; 10357 + rev = "7343eb9ac3d2cf9a2441c27d5d7d35f1869df02e"; 10358 + sha256 = "1bqcz4iyrav89lj0306g3x0w7v1d47lbwb4nk1lcn1hk8rlzxxg6"; 10319 10359 }; 10320 10360 recipeFile = fetchurl { 10321 10361 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-web"; ··· 10793 10833 counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: 10794 10834 melpaBuild { 10795 10835 pname = "counsel"; 10796 - version = "20171031.1234"; 10836 + version = "20171101.1121"; 10797 10837 src = fetchFromGitHub { 10798 10838 owner = "abo-abo"; 10799 10839 repo = "swiper"; 10800 - rev = "96663b77945ab21e4e1b0aab690fc2e926f01f9c"; 10801 - sha256 = "0r691dzs77zdkvjzb787kjg8zvvba8gdj2da9zjb14m4nyjmg9d9"; 10840 + rev = "5d373be194e21f3e29a03fb498b901fcc5e128f9"; 10841 + sha256 = "0ycch0gqhjxg9ffz5y942z908zy4y3yl242dnyskkv3vmkrziwsz"; 10802 10842 }; 10803 10843 recipeFile = fetchurl { 10804 10844 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel"; ··· 10919 10959 counsel-projectile = callPackage ({ counsel, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 10920 10960 melpaBuild { 10921 10961 pname = "counsel-projectile"; 10922 - version = "20171001.641"; 10962 + version = "20171106.529"; 10923 10963 src = fetchFromGitHub { 10924 10964 owner = "ericdanan"; 10925 10965 repo = "counsel-projectile"; 10926 - rev = "88a16cb75301ae95f21a71e8838a49590d011e73"; 10927 - sha256 = "155yvmyyg99znxnb3viagmd3hmii44fww68g857l7msw4q9ki1gy"; 10966 + rev = "293a8f2f6ab4f57cec63d8c51145853e83879230"; 10967 + sha256 = "15vyzx354m4rr83k52d6hrh01pk88cj8ncgkl367j1ps487hmpxz"; 10928 10968 }; 10929 10969 recipeFile = fetchurl { 10930 10970 url = "https://raw.githubusercontent.com/milkypostman/melpa/389f16f886a385b02f466540f042a16eea8ba792/recipes/counsel-projectile"; ··· 11595 11635 src = fetchFromGitHub { 11596 11636 owner = "mortberg"; 11597 11637 repo = "cubicaltt"; 11598 - rev = "0cdd084498c3f5de53a26ae756e4a9f33625fa1f"; 11599 - sha256 = "1zgdc4lm6dyh57fim52ynxx0jfs9hsdgbj739firblmin6cdvm32"; 11638 + rev = "3d3e890963c6d90d3586e063dd4beba343b1481c"; 11639 + sha256 = "04158nkjvp7wgpfzdqp45yxs44nx1hbma3wsb8myzjcqspxpqip5"; 11600 11640 }; 11601 11641 recipeFile = fetchurl { 11602 11642 url = "https://raw.githubusercontent.com/milkypostman/melpa/1be42b49c206fc4f0df6fb50fed80b3d9b76710b/recipes/cubicaltt"; ··· 11847 11887 src = fetchFromGitHub { 11848 11888 owner = "cython"; 11849 11889 repo = "cython"; 11850 - rev = "ed44d37a80ef91ccb059a8ae056439a889eb6973"; 11851 - sha256 = "08hk3lah5mx3aii4d6d4xb7dbz1d0m2ch0c2hf13pw2d7irqvfzp"; 11890 + rev = "13ab4d8a1b20d8a4a85172af8e13d07f8e48d455"; 11891 + sha256 = "0mhs6myagzbwi690flaqqpij1pzwmf8asx466h324bfqi4flczzb"; 11852 11892 }; 11853 11893 recipeFile = fetchurl { 11854 11894 url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; ··· 11990 12030 danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11991 12031 melpaBuild { 11992 12032 pname = "danneskjold-theme"; 11993 - version = "20171101.339"; 12033 + version = "20171101.1146"; 11994 12034 src = fetchFromGitHub { 11995 12035 owner = "rails-to-cosmos"; 11996 12036 repo = "danneskjold-theme"; 11997 - rev = "8d36d6dcddf36f89f06a3f848e69edbda28435eb"; 11998 - sha256 = "1hsfqkf3xfql3h4dprrrzrpp5fansv8ckfii5dnx55a6gl6y3sdi"; 12037 + rev = "cab6311e9d1848593d9e9373712642c8723307a9"; 12038 + sha256 = "0dfapi7l8kzal3l7d700fxi3vci0sp0z3sim55yjay3m5ymh1d19"; 11999 12039 }; 12000 12040 recipeFile = fetchurl { 12001 12041 url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme"; ··· 12011 12051 dante = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild, s }: 12012 12052 melpaBuild { 12013 12053 pname = "dante"; 12014 - version = "20171021.1009"; 12054 + version = "20171106.545"; 12015 12055 src = fetchFromGitHub { 12016 12056 owner = "jyp"; 12017 12057 repo = "dante"; 12018 - rev = "cdea9409920ed8e4739af39b9a6f4e6dd8e8c50f"; 12019 - sha256 = "1ncbrq38ivybqlwm57aqcqjhz8bs99i9aa28012v1s6l5qbnxgks"; 12058 + rev = "5d4b2a09d5681408225bb5b9189d37e8b3e95079"; 12059 + sha256 = "1m7k73m7qw0aqxx29c8y5liai93csmmhg749k6g0danqzy5dzn81"; 12020 12060 }; 12021 12061 recipeFile = fetchurl { 12022 12062 url = "https://raw.githubusercontent.com/milkypostman/melpa/5afa8226077cbda4b76f52734cf8e0b745ab88e8/recipes/dante"; ··· 12053 12093 darcula-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 12054 12094 melpaBuild { 12055 12095 pname = "darcula-theme"; 12056 - version = "20171016.149"; 12096 + version = "20171104.425"; 12057 12097 src = fetchFromGitLab { 12058 12098 owner = "fommil"; 12059 12099 repo = "emacs-darcula-theme"; 12060 - rev = "25f179b9fb72c1b95a3907aa4b4a44f8d261e45a"; 12061 - sha256 = "0x1amh0ycjvk218d6cyqizkak47b6r1wczakbfkvnbr0khgkgmr7"; 12100 + rev = "2ecd466ffa7a3157b9ddcd7545b6fb8ad308c976"; 12101 + sha256 = "1h5lssnc1am54hkprnp61bsj5fnm8j556q2gbhljfjgrdwnqv8ky"; 12062 12102 }; 12063 12103 recipeFile = fetchurl { 12064 12104 url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/darcula-theme"; ··· 12620 12660 dedukti-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 12621 12661 melpaBuild { 12622 12662 pname = "dedukti-mode"; 12623 - version = "20170225.722"; 12663 + version = "20171103.512"; 12624 12664 src = fetchFromGitHub { 12625 12665 owner = "rafoo"; 12626 12666 repo = "dedukti-mode"; 12627 - rev = "49d7a83d3e966e0913e3969000701d4159dfab2f"; 12628 - sha256 = "0ryibbpq4qpj35lnczy1q4ldja782dzza5b48b7vy8a3x77yv07p"; 12667 + rev = "d7c3505a1046187de3c3aeb144455078d514594e"; 12668 + sha256 = "1842wikq24c8rg0ac84vb1qby9ng1nssxswyyni4kq85lng5lcrp"; 12629 12669 }; 12630 12670 recipeFile = fetchurl { 12631 12671 url = "https://raw.githubusercontent.com/milkypostman/melpa/767a685fbe8ae86177e90a17dac3815d41d74df4/recipes/dedukti-mode"; ··· 14534 14574 license = lib.licenses.free; 14535 14575 }; 14536 14576 }) {}; 14537 - dockerfile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 14577 + dockerfile-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 14538 14578 melpaBuild { 14539 14579 pname = "dockerfile-mode"; 14540 - version = "20170418.1024"; 14580 + version = "20171105.435"; 14541 14581 src = fetchFromGitHub { 14542 14582 owner = "spotify"; 14543 14583 repo = "dockerfile-mode"; 14544 - rev = "3c6bc90360a2df53caad1721ee4c8285e2e22369"; 14545 - sha256 = "166hfzfb45f11jfhx78w6h23cyj9wr1nrwrxxqs2m5cry407gj3k"; 14584 + rev = "69bfba7acc6bda0d0a5834c3774fffc145337a63"; 14585 + sha256 = "09s13cpldrw19m1n6dh17x85nm5kx1km4f5pmzryll23a3qwcm0x"; 14546 14586 }; 14547 14587 recipeFile = fetchurl { 14548 14588 url = "https://raw.githubusercontent.com/milkypostman/melpa/1406f5a24115d29e3b140c360a51b977a369e4f9/recipes/dockerfile-mode"; 14549 14589 sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; 14550 14590 name = "dockerfile-mode"; 14551 14591 }; 14552 - packageRequires = []; 14592 + packageRequires = [ emacs s ]; 14553 14593 meta = { 14554 14594 homepage = "https://melpa.org/#/dockerfile-mode"; 14555 14595 license = lib.licenses.free; ··· 15125 15165 dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: 15126 15166 melpaBuild { 15127 15167 pname = "dumb-jump"; 15128 - version = "20171013.2105"; 15168 + version = "20171105.1624"; 15129 15169 src = fetchFromGitHub { 15130 15170 owner = "jacktasia"; 15131 15171 repo = "dumb-jump"; 15132 - rev = "e1140c3c27c0e434ecaaf748aa77f63e2289df41"; 15133 - sha256 = "19r77cya0bi1isv46l26k3n6vnqxf0jclx6w75jbbiirivpy9nr1"; 15172 + rev = "ce4eaa49b629140806a8808712356a5a09c2abad"; 15173 + sha256 = "1bjpqghfp1jprhaciqjm11n6bdy5wzph625p2v0xcd59pr8jsj6p"; 15134 15174 }; 15135 15175 recipeFile = fetchurl { 15136 15176 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump"; ··· 15502 15542 eacl = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 15503 15543 melpaBuild { 15504 15544 pname = "eacl"; 15505 - version = "20171028.258"; 15545 + version = "20171104.1651"; 15506 15546 src = fetchFromGitHub { 15507 15547 owner = "redguardtoo"; 15508 15548 repo = "eacl"; 15509 - rev = "94b0eb062899db25f2ef0e535bc6ecace4b5c4e8"; 15510 - sha256 = "042va8ysvnyr7vgwrhd970ly65q1fczk04n6vd9zqxn02cqvk2yh"; 15549 + rev = "ef58d13fbff4b5c49f934cfb9e3fd6ee219ef4b2"; 15550 + sha256 = "0xxxzdr6iddxwx8z4lfay4n9r1ry8571lj2gadz5ycff6f6bxmhb"; 15511 15551 }; 15512 15552 recipeFile = fetchurl { 15513 15553 url = "https://raw.githubusercontent.com/milkypostman/melpa/8223bec7eed97f0bad300af9caa4c8207322d39a/recipes/eacl"; ··· 16354 16394 src = fetchFromGitHub { 16355 16395 owner = "egisatoshi"; 16356 16396 repo = "egison3"; 16357 - rev = "94d964066ed7cecaea2b31eda7703396032ea4ed"; 16358 - sha256 = "0ln5dzbrbxzhlr797hphd5dmbrhh76cdfbm1fvgl3bi1fw59g8pq"; 16397 + rev = "8a7c0e4d3661f07f3c305ac29431ae28fdb98eac"; 16398 + sha256 = "0c3p77yxaj84d2id5qlqxwywh0hrzsbbxxv2qissz8wkrmv9mg0n"; 16359 16399 }; 16360 16400 recipeFile = fetchurl { 16361 16401 url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode"; ··· 16643 16683 src = fetchFromGitHub { 16644 16684 owner = "raxod502"; 16645 16685 repo = "el-patch"; 16646 - rev = "32f7a12c2eaacd60d48ed5e5482121154a507fb8"; 16647 - sha256 = "0m1v3gjds2j16kpy05zipdh30fbsb2zrgjny156kgjjxy6fnrnki"; 16686 + rev = "a5999539e42fb41d2b31f09022b9efe27ae76684"; 16687 + sha256 = "0qbf851ab8h0zjqr9kvnlwcg6magsldlr835vks576g9cz62zp49"; 16648 16688 }; 16649 16689 recipeFile = fetchurl { 16650 16690 url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch"; ··· 16975 17015 elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 16976 17016 melpaBuild { 16977 17017 pname = "elfeed"; 16978 - version = "20171001.1900"; 17018 + version = "20171103.737"; 16979 17019 src = fetchFromGitHub { 16980 17020 owner = "skeeto"; 16981 17021 repo = "elfeed"; 16982 - rev = "23cbeb803a312fd0e3801ef240e4322bf9965656"; 16983 - sha256 = "0vi0vbd2k4frj6ij2v8imx57vikgcp47gwk11w4qh4k0na4cjbfs"; 17022 + rev = "312b3bf4ca542dd84e3cc502c5297498d4c1f7ef"; 17023 + sha256 = "0633gvyk1xh5624g0lp3sriqmrzdhb8dbc6xvmnwqrcqdb3yrigv"; 16984 17024 }; 16985 17025 recipeFile = fetchurl { 16986 17026 url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed"; ··· 17049 17089 src = fetchFromGitHub { 17050 17090 owner = "skeeto"; 17051 17091 repo = "elfeed"; 17052 - rev = "23cbeb803a312fd0e3801ef240e4322bf9965656"; 17053 - sha256 = "0vi0vbd2k4frj6ij2v8imx57vikgcp47gwk11w4qh4k0na4cjbfs"; 17092 + rev = "312b3bf4ca542dd84e3cc502c5297498d4c1f7ef"; 17093 + sha256 = "0633gvyk1xh5624g0lp3sriqmrzdhb8dbc6xvmnwqrcqdb3yrigv"; 17054 17094 }; 17055 17095 recipeFile = fetchurl { 17056 17096 url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web"; ··· 17507 17547 elpy = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, s, yasnippet }: 17508 17548 melpaBuild { 17509 17549 pname = "elpy"; 17510 - version = "20171029.955"; 17550 + version = "20171103.1027"; 17511 17551 src = fetchFromGitHub { 17512 17552 owner = "jorgenschaefer"; 17513 17553 repo = "elpy"; 17514 - rev = "434f6799e103fcce7d896b3281eb59e15a760783"; 17515 - sha256 = "1mpxzyssvp6n1y17xqxmmpymvljz7g6j60whn9mdp3njn0ijyn5k"; 17554 + rev = "091a91f622b53ff4e3506d4642dc458e93ca2945"; 17555 + sha256 = "1yxyivp4cbg3b2ys51myx2zk66d2k82fzm73fyzfg0v42xqzqlf2"; 17516 17556 }; 17517 17557 recipeFile = fetchurl { 17518 17558 url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy"; ··· 18103 18143 emms = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: 18104 18144 melpaBuild { 18105 18145 pname = "emms"; 18106 - version = "20171020.1349"; 18146 + version = "20171105.502"; 18107 18147 src = fetchgit { 18108 18148 url = "https://git.savannah.gnu.org/git/emms.git"; 18109 - rev = "88fecd0234da595843ce6be4d3f9f2b755ff612d"; 18110 - sha256 = "0ycm2lggljhzrb10r3c322c7bb580gk125x9nvpvjrvsp74p8im0"; 18149 + rev = "11954d51e976a83635971fc000a163b0e7056134"; 18150 + sha256 = "1dfyc0f6wfvw90lw135mf6vx5yqx7nwbi5b3a3c6dzsm060dzsqx"; 18111 18151 }; 18112 18152 recipeFile = fetchurl { 18113 18153 url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/emms"; ··· 18207 18247 emms-player-mpv-jp-radios = callPackage ({ cl-lib ? null, emacs, emms, emms-player-simple-mpv, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18208 18248 melpaBuild { 18209 18249 pname = "emms-player-mpv-jp-radios"; 18210 - version = "20171002.723"; 18250 + version = "20171102.811"; 18211 18251 src = fetchFromGitHub { 18212 18252 owner = "momomo5717"; 18213 18253 repo = "emms-player-mpv-jp-radios"; 18214 - rev = "dcf79a7570ff4031373991f9fc838ddc5f598006"; 18215 - sha256 = "0mq6k6qgqv08k421wjk69ma8m7m29yfmwh2bsphxj1pa2h1y6h2n"; 18254 + rev = "57924973b9e7a3b059b6dd40decb194abc596875"; 18255 + sha256 = "0q1sfb2rgzpvxbpq0d3zl03bc8abyzq2d5pvy8z0ighwbhabkrrs"; 18216 18256 }; 18217 18257 recipeFile = fetchurl { 18218 18258 url = "https://raw.githubusercontent.com/milkypostman/melpa/09ba6da5057061f055d4a3212d167f9666618d4f/recipes/emms-player-mpv-jp-radios"; ··· 18513 18553 enh-ruby-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18514 18554 melpaBuild { 18515 18555 pname = "enh-ruby-mode"; 18516 - version = "20170822.1647"; 18556 + version = "20171101.1638"; 18517 18557 src = fetchFromGitHub { 18518 18558 owner = "zenspider"; 18519 18559 repo = "enhanced-ruby-mode"; 18520 - rev = "cc8e64baf7f7bcef2db5b7353ddda9d9733a11cc"; 18521 - sha256 = "1bps5ld798av9nqkjsv7mnj8blnyp30dh809q0fk9qnwylpj74yy"; 18560 + rev = "9467cd7fc8b6bb3caf644b223e3046fc32013ccb"; 18561 + sha256 = "0spsgfkka6sld8ac3m2biydyp8xj84vxa0w7apqvhhmfk3klbbhf"; 18522 18562 }; 18523 18563 recipeFile = fetchurl { 18524 18564 url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode"; ··· 18937 18977 license = lib.licenses.free; 18938 18978 }; 18939 18979 }) {}; 18980 + erc-scrolltoplace = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, switch-buffer-functions }: 18981 + melpaBuild { 18982 + pname = "erc-scrolltoplace"; 18983 + version = "20171104.1346"; 18984 + src = fetchFromGitHub { 18985 + owner = "jgkamat"; 18986 + repo = "erc-scrolltoplace"; 18987 + rev = "7539654e4a72edcc5bba07a101961e5bf0a9d449"; 18988 + sha256 = "11zpqwh1mlfifbgnvhc63bvnhg340jgxssm3m43hr1sxsyb52lh6"; 18989 + }; 18990 + recipeFile = fetchurl { 18991 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e8ba300957fc00f5e53cf63dfa1e37a27b0d6d60/recipes/erc-scrolltoplace"; 18992 + sha256 = "1cr5nxdk854zcb1w0xvmi4mg45lxv011gap4i96nvdpd4qxmcxph"; 18993 + name = "erc-scrolltoplace"; 18994 + }; 18995 + packageRequires = [ emacs switch-buffer-functions ]; 18996 + meta = { 18997 + homepage = "https://melpa.org/#/erc-scrolltoplace"; 18998 + license = lib.licenses.free; 18999 + }; 19000 + }) {}; 18940 19001 erc-social-graph = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 18941 19002 melpaBuild { 18942 19003 pname = "erc-social-graph"; ··· 19238 19299 src = fetchFromGitHub { 19239 19300 owner = "erlang"; 19240 19301 repo = "otp"; 19241 - rev = "a51424af47f879e776b9344be813a03d2a4bcb5b"; 19242 - sha256 = "18cyr3pmzwab6zqijl3c6h772wzkl1qh44j87p16hcn42sip9jz1"; 19302 + rev = "de48cf9a757c329dda26875f8cf7dd7c4425fc04"; 19303 + sha256 = "1i2sgg22ydvi49hj8iacdn38aryik36gzapvx47g62y1qfxza6f9"; 19243 19304 }; 19244 19305 recipeFile = fetchurl { 19245 19306 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; ··· 19842 19903 ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: 19843 19904 melpaBuild { 19844 19905 pname = "ess"; 19845 - version = "20171030.820"; 19906 + version = "20171102.958"; 19846 19907 src = fetchFromGitHub { 19847 19908 owner = "emacs-ess"; 19848 19909 repo = "ESS"; 19849 - rev = "da48f2fff367191796b976100c72277bdfb504d2"; 19850 - sha256 = "000rxx14fw1n4k3i6lsvy0bc249pdyx9m1pnpv3x02n0wvmfdq62"; 19910 + rev = "f5d5ddfe5a1b2096ebc90d5fd2c3e98c12e45e8b"; 19911 + sha256 = "0x7ymv0b7p3s79fz4j63v0k45nfywnzqqqi0xxmwbnz3w2gf3k0s"; 19851 19912 }; 19852 19913 recipeFile = fetchurl { 19853 19914 url = "https://raw.githubusercontent.com/milkypostman/melpa/12997b9e2407d782b3d2fcd2843f7c8b22442c0a/recipes/ess"; ··· 20182 20243 src = fetchFromGitHub { 20183 20244 owner = "emacs-evil"; 20184 20245 repo = "evil"; 20185 - rev = "3735da896e6fc2672ee06c68e77d11befb99c9c1"; 20186 - sha256 = "01p450ap0dvnnv83cbmasb7avz6jv6xycjg4hczf8485xzq0nmcr"; 20246 + rev = "a6d7b32f6d606dedc2c550615d8cf1c43ad8f6a8"; 20247 + sha256 = "0v741j0vxdqsa8lnhyn0g163cgixp3s310zaxbxxznlz1fy1nl8w"; 20187 20248 }; 20188 20249 recipeFile = fetchurl { 20189 20250 url = "https://raw.githubusercontent.com/milkypostman/melpa/440482c0edac8ee8bd4fe22f6bc5c1607f34c7ad/recipes/evil"; ··· 20535 20596 evil-goggles = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20536 20597 melpaBuild { 20537 20598 pname = "evil-goggles"; 20538 - version = "20171016.740"; 20599 + version = "20171103.2328"; 20539 20600 src = fetchFromGitHub { 20540 20601 owner = "edkolev"; 20541 20602 repo = "evil-goggles"; 20542 - rev = "4777cd784953f5e38d76edf458e050605de45bcc"; 20543 - sha256 = "1mmkgpmb69c908yx9k7rgs4zvm1cf554bkqiqppkc92ml9gipfk2"; 20603 + rev = "75d124851fd31bb7014036e969300a0259128557"; 20604 + sha256 = "0184y95d52nbldpn3khxk6f3dlh36v0mjsvhhgg557gwhg5psasi"; 20544 20605 }; 20545 20606 recipeFile = fetchurl { 20546 20607 url = "https://raw.githubusercontent.com/milkypostman/melpa/811b1261705b4c525e165fa9ee23ae191727a623/recipes/evil-goggles"; ··· 20766 20827 evil-matchit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20767 20828 melpaBuild { 20768 20829 pname = "evil-matchit"; 20769 - version = "20170727.1741"; 20830 + version = "20171101.2202"; 20770 20831 src = fetchFromGitHub { 20771 20832 owner = "redguardtoo"; 20772 20833 repo = "evil-matchit"; 20773 - rev = "dbaae2b7537aadb2e44a8915745ee190768b4b2a"; 20774 - sha256 = "1y386wjz23kqfqbbgrwg4fnv2ma21dzk5ppnqd0y5245v388q69n"; 20834 + rev = "fb5807c0965f3689b9e37f5e5b0fce022938bb43"; 20835 + sha256 = "02yz4m9nzn0dql279xbgaxbrwhn6xxb30kf0pyjqyxg2njzfihid"; 20775 20836 }; 20776 20837 recipeFile = fetchurl { 20777 20838 url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; ··· 20871 20932 evil-nerd-commenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 20872 20933 melpaBuild { 20873 20934 pname = "evil-nerd-commenter"; 20874 - version = "20170905.653"; 20935 + version = "20171106.407"; 20875 20936 src = fetchFromGitHub { 20876 20937 owner = "redguardtoo"; 20877 20938 repo = "evil-nerd-commenter"; 20878 - rev = "92bee71aa6fbb36299a4e69e710da786f3694637"; 20879 - sha256 = "1sxwiar17jvqj7plf7jdpwx9kymabr0dsfl7mbkcxpzvrfdlmp12"; 20939 + rev = "31db96711ee894e3b997b5823c5664bbed165143"; 20940 + sha256 = "11x42awwqab6pdxzk1pv5gjfyxaj35vp2pscl23lq421x2mqpifd"; 20880 20941 }; 20881 20942 recipeFile = fetchurl { 20882 20943 url = "https://raw.githubusercontent.com/milkypostman/melpa/a3e1ff69e7cc95a5b5d628524ad836833f4ee736/recipes/evil-nerd-commenter"; ··· 21081 21142 evil-smartparens = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: 21082 21143 melpaBuild { 21083 21144 pname = "evil-smartparens"; 21084 - version = "20171101.13"; 21145 + version = "20171103.941"; 21085 21146 src = fetchFromGitHub { 21086 21147 owner = "expez"; 21087 21148 repo = "evil-smartparens"; 21088 - rev = "3a9c2bf24db73c9443d3e2e65ca662df85653f36"; 21089 - sha256 = "05g6j5z63gmvi2j9h6iax3dklqk61ds28yq84mkiihp58swwmfpw"; 21149 + rev = "9fe4eed1c6327197afe6c13bb0771e18908aff00"; 21150 + sha256 = "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl"; 21090 21151 }; 21091 21152 recipeFile = fetchurl { 21092 21153 url = "https://raw.githubusercontent.com/milkypostman/melpa/850898fbfc8e0aeb779e8feae56476d989110e79/recipes/evil-smartparens"; ··· 21232 21293 src = fetchFromGitHub { 21233 21294 owner = "emacs-evil"; 21234 21295 repo = "evil"; 21235 - rev = "3735da896e6fc2672ee06c68e77d11befb99c9c1"; 21236 - sha256 = "01p450ap0dvnnv83cbmasb7avz6jv6xycjg4hczf8485xzq0nmcr"; 21296 + rev = "a6d7b32f6d606dedc2c550615d8cf1c43ad8f6a8"; 21297 + sha256 = "0v741j0vxdqsa8lnhyn0g163cgixp3s310zaxbxxznlz1fy1nl8w"; 21237 21298 }; 21238 21299 recipeFile = fetchurl { 21239 21300 url = "https://raw.githubusercontent.com/milkypostman/melpa/87da8c50f9167ad9c3844b23becb6904f809611d/recipes/evil-test-helpers"; ··· 22615 22676 license = lib.licenses.free; 22616 22677 }; 22617 22678 }) {}; 22679 + fish-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 22680 + melpaBuild { 22681 + pname = "fish-completion"; 22682 + version = "20171104.1509"; 22683 + src = fetchFromGitHub { 22684 + owner = "Ambrevar"; 22685 + repo = "emacs-fish-completion"; 22686 + rev = "ccc29e7c925de7051e477d79bff97fec5fb9bec4"; 22687 + sha256 = "08rmk43lsgfkb2cwkrqdv2x38pih9ljasfn74a8y705i2dwqimqb"; 22688 + }; 22689 + recipeFile = fetchurl { 22690 + url = "https://raw.githubusercontent.com/milkypostman/melpa/832bae268cd08d7ebfd4b7a8d0570af8549cdbd6/recipes/fish-completion"; 22691 + sha256 = "1lq613b0zb4shlzx5s3br4d16295czx3bfymqcnriyspsfjvakar"; 22692 + name = "fish-completion"; 22693 + }; 22694 + packageRequires = []; 22695 + meta = { 22696 + homepage = "https://melpa.org/#/fish-completion"; 22697 + license = lib.licenses.free; 22698 + }; 22699 + }) {}; 22618 22700 fish-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 22619 22701 melpaBuild { 22620 22702 pname = "fish-mode"; ··· 23464 23546 flycheck-dedukti = callPackage ({ dedukti-mode, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 23465 23547 melpaBuild { 23466 23548 pname = "flycheck-dedukti"; 23467 - version = "20170407.258"; 23549 + version = "20171103.512"; 23468 23550 src = fetchFromGitHub { 23469 23551 owner = "rafoo"; 23470 23552 repo = "flycheck-dedukti"; 23471 - rev = "ea34af5e677fbf18a40935b531abb1d9aae59f6b"; 23472 - sha256 = "03flfn7caxa8jpp6v3mn1mvs8lf4khcl8nsgd1nb93k7wp9x6l5s"; 23553 + rev = "3dbff5646355f39d57a3ec514f560a6b0082a1cd"; 23554 + sha256 = "1ffpxnwl3wx244n44mbw81g00nhnykd0lnid29f4aw1av7w6nw8l"; 23473 23555 }; 23474 23556 recipeFile = fetchurl { 23475 23557 url = "https://raw.githubusercontent.com/milkypostman/melpa/732832e88a65a8866fa3872ff5f29eb8a26438f2/recipes/flycheck-dedukti"; ··· 24287 24369 src = fetchFromGitHub { 24288 24370 owner = "Andersbakken"; 24289 24371 repo = "rtags"; 24290 - rev = "7fa54d513fc716b2dc1055636b4728ab29dfdd3e"; 24291 - sha256 = "1i0php9nnpgsmb4l1sc7qgxvdgg4hyviq68f4k41b9bcwab2hbl8"; 24372 + rev = "e413e31d1e74fae1fc1bf86792013c3680be6580"; 24373 + sha256 = "0hfibc1nllsp9zdb803ac6cwp6xx4xf8mvjszfq9vp5a63sgw0pl"; 24292 24374 }; 24293 24375 recipeFile = fetchurl { 24294 24376 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags"; ··· 25799 25881 src = fetchFromGitHub { 25800 25882 owner = "rnkn"; 25801 25883 repo = "fountain-mode"; 25802 - rev = "be10ce90ede2d76b67abb5eff9c09294fe189f1e"; 25803 - sha256 = "17zipwazcqqbbsb7p9j2jcid2m0knlah56vbw71yxqb3qbpq7fcz"; 25884 + rev = "34402a27430f8297d157ac3fba3adb09bd3e0d7f"; 25885 + sha256 = "0ci46n4gy5dprz8998xf8dybi5182wv3h65wb2g4h2zhi1n5053i"; 25804 25886 }; 25805 25887 recipeFile = fetchurl { 25806 25888 url = "https://raw.githubusercontent.com/milkypostman/melpa/913386ac8d5049d37154da3ab32bde408a226511/recipes/fountain-mode"; ··· 26214 26296 src = fetchFromGitHub { 26215 26297 owner = "HIPERFIT"; 26216 26298 repo = "futhark"; 26217 - rev = "bfb9c4a565ac655322efe5c7bb1f77d255762846"; 26218 - sha256 = "141q924pacsxxfsy3yngyh7a9saipjszpm529s0d4hqqws2glxvz"; 26299 + rev = "0397438e8fc6cd2e5549a9d883d1e5a5c11110f7"; 26300 + sha256 = "1mb4m8907bhi2305p2i2mxgpq6h9xs0k87j71p35blnh5spqbikm"; 26219 26301 }; 26220 26302 recipeFile = fetchurl { 26221 26303 url = "https://raw.githubusercontent.com/milkypostman/melpa/0607f01aad7e77d53595ad8db95d32acfd29b148/recipes/futhark-mode"; ··· 26502 26584 geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26503 26585 melpaBuild { 26504 26586 pname = "geiser"; 26505 - version = "20171010.1610"; 26587 + version = "20171102.1825"; 26506 26588 src = fetchFromGitHub { 26507 26589 owner = "jaor"; 26508 26590 repo = "geiser"; 26509 - rev = "c266950549a7a0841bf21e092fba632a1e061187"; 26510 - sha256 = "14axzczgnsvmwl32qvpw9p53iknwrya8jbqzhc4d2s4p9vrghk1z"; 26591 + rev = "da22a526c1f683a90bb60840d05a6bb5f3a74ffe"; 26592 + sha256 = "101v0hfsdzksc3pr6vds7ypwmrpxvslmwmskwm9i94sxs39j067c"; 26511 26593 }; 26512 26594 recipeFile = fetchurl { 26513 26595 url = "https://raw.githubusercontent.com/milkypostman/melpa/b0fe32d24cedd5307b4cccfb08a7095d81d639a0/recipes/geiser"; ··· 26523 26605 general = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 26524 26606 melpaBuild { 26525 26607 pname = "general"; 26526 - version = "20171031.1345"; 26608 + version = "20171104.2336"; 26527 26609 src = fetchFromGitHub { 26528 26610 owner = "noctuid"; 26529 26611 repo = "general.el"; 26530 - rev = "6828a859af771df5ec1bf50b67f0fcc7261b5a11"; 26531 - sha256 = "13sm85dybjhnqqgkshc4n4m3vm6pd949ppxyb5li7f0znhq6l3ai"; 26612 + rev = "ae94ac1c0efc946963e659366db0101ed6171ade"; 26613 + sha256 = "1k63gmlds4f0sd50j5m0icxp2r9n4w5xxxqx7av7ffkidm31w3fx"; 26532 26614 }; 26533 26615 recipeFile = fetchurl { 26534 26616 url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general"; ··· 27031 27113 src = fetchFromGitHub { 27032 27114 owner = "magit"; 27033 27115 repo = "magit"; 27034 - rev = "5c08d09cdaad506ca94616c59f39982f43f4c12f"; 27035 - sha256 = "053ff7gr56chbfg3n6ysn5q13db2rjr5s7nkplkv72hzla381dys"; 27116 + rev = "ab00c5ba2711da7804a92be0c04b996250d350b7"; 27117 + sha256 = "08psg0gdxb5ng1319ah06d65f8brglb69s992qf2gh1njjfv4l2m"; 27036 27118 }; 27037 27119 recipeFile = fetchurl { 27038 27120 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit"; ··· 27045 27127 license = lib.licenses.free; 27046 27128 }; 27047 27129 }) {}; 27048 - git-commit-insert-issue = callPackage ({ bitbucket, fetchFromGitLab, fetchurl, github-issues, gitlab, helm, lib, melpaBuild, projectile, s }: 27130 + git-commit-insert-issue = callPackage ({ bitbucket, fetchFromGitLab, fetchurl, github-issues, gitlab, lib, melpaBuild, projectile, s }: 27049 27131 melpaBuild { 27050 27132 pname = "git-commit-insert-issue"; 27051 - version = "20170502.1027"; 27133 + version = "20171102.1141"; 27052 27134 src = fetchFromGitLab { 27053 27135 owner = "emacs-stuff"; 27054 27136 repo = "git-commit-insert-issue"; 27055 - rev = "8d2448959073646d652687355efec6ba7b1e1af8"; 27056 - sha256 = "1ix2hbs3dfvjlpldpnb06j9al13zss6gmgl6l09dq2ic4warbag7"; 27137 + rev = "f986923b04b587206ce7ee8e0c456768600e8be7"; 27138 + sha256 = "1gffjf6byasisa9jdcv9n4n5zqalvzfsxv7z75zl0g3ph7wc7bbm"; 27057 27139 }; 27058 27140 recipeFile = fetchurl { 27059 27141 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/git-commit-insert-issue"; 27060 27142 sha256 = "0xhlchr7dbm0hp4cjba3x1fdf7lnfc97id327i2fqgkdc4yn9fax"; 27061 27143 name = "git-commit-insert-issue"; 27062 27144 }; 27063 - packageRequires = [ bitbucket github-issues gitlab helm projectile s ]; 27145 + packageRequires = [ bitbucket github-issues gitlab projectile s ]; 27064 27146 meta = { 27065 27147 homepage = "https://melpa.org/#/git-commit-insert-issue"; 27066 27148 license = lib.licenses.free; ··· 28900 28982 src = fetchFromGitHub { 28901 28983 owner = "vmware"; 28902 28984 repo = "govmomi"; 28903 - rev = "b227a2582a9e5175fc778fc6a03b98aa14534927"; 28904 - sha256 = "0ss8jqczipl557c9pipkpvz3h9x6lhzma15s799zw7jwyza6802y"; 28985 + rev = "0572dd8bc01d059ec65475d2b15c3ed5bbce9eaa"; 28986 + sha256 = "0rln9gzzk1kasxfdz2sbkivq2cy7c28djbpbshfw6z3i9sy7pvv8"; 28905 28987 }; 28906 28988 recipeFile = fetchurl { 28907 28989 url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc"; ··· 29136 29218 license = lib.licenses.free; 29137 29219 }; 29138 29220 }) {}; 29139 - graphql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29221 + graphql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 29140 29222 melpaBuild { 29141 29223 pname = "graphql-mode"; 29142 - version = "20170625.652"; 29224 + version = "20171102.1606"; 29143 29225 src = fetchFromGitHub { 29144 29226 owner = "davazp"; 29145 29227 repo = "graphql-mode"; 29146 - rev = "3c25bf5cbd5ba4c60dca9c96286412eb765de7c9"; 29147 - sha256 = "09y7w6nipg1f59xrdpzmjiynyvjzkyhkmrpc5mbvz1lavkplh6rd"; 29228 + rev = "1f3bd34b18a41dbda75a0baee38aa0f0f1fffb7a"; 29229 + sha256 = "16cqncjyai3kak9p108c85d8jp0n83jpfijkwjv8nx2s5wyw57dx"; 29148 29230 }; 29149 29231 recipeFile = fetchurl { 29150 29232 url = "https://raw.githubusercontent.com/milkypostman/melpa/3850073e6706d4d8151bc6ab12963a19deae8be9/recipes/graphql-mode"; 29151 29233 sha256 = "074dc8fgbrikb5inv837n9bpmz1ami7aaxsqcci1f94x3iw8i74i"; 29152 29234 name = "graphql-mode"; 29153 29235 }; 29154 - packageRequires = [ emacs ]; 29236 + packageRequires = [ emacs request ]; 29155 29237 meta = { 29156 29238 homepage = "https://melpa.org/#/graphql-mode"; 29157 29239 license = lib.licenses.free; ··· 29160 29242 graphviz-dot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 29161 29243 melpaBuild { 29162 29244 pname = "graphviz-dot-mode"; 29163 - version = "20151127.621"; 29245 + version = "20171103.127"; 29164 29246 src = fetchFromGitHub { 29165 29247 owner = "ppareit"; 29166 29248 repo = "graphviz-dot-mode"; 29167 - rev = "fdaabbcc95d9156e3dadc84f81a4750c5b692580"; 29168 - sha256 = "1s1qh5r0xp6hs0rl5yz5mkmjhpg04bh449c7vgjbb1pjsl1dl714"; 29249 + rev = "c456a2b65c734089e6c44e87209a5a432a741b1a"; 29250 + sha256 = "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"; 29169 29251 }; 29170 29252 recipeFile = fetchurl { 29171 29253 url = "https://raw.githubusercontent.com/milkypostman/melpa/6e2f1e66b33fd95142be4622c996911e38d56281/recipes/graphviz-dot-mode"; ··· 30394 30476 helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: 30395 30477 melpaBuild { 30396 30478 pname = "helm"; 30397 - version = "20171030.2225"; 30479 + version = "20171106.429"; 30398 30480 src = fetchFromGitHub { 30399 30481 owner = "emacs-helm"; 30400 30482 repo = "helm"; 30401 - rev = "fe92240663f6b2314e79558f6eabbab955a797e3"; 30402 - sha256 = "1ip2a9fh3k14s87h8zhw6flybkskcx6vrayyzj5929g97mr26a5k"; 30483 + rev = "5eae983b6490fe0ad553a1833be5f8ee7aef7a05"; 30484 + sha256 = "1qds2qw4jnfb5xvqczswylc83q5fams9lhk0bz8zy6a2j01s99w0"; 30403 30485 }; 30404 30486 recipeFile = fetchurl { 30405 30487 url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; ··· 31024 31106 helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 31025 31107 melpaBuild { 31026 31108 pname = "helm-core"; 31027 - version = "20171029.2252"; 31109 + version = "20171103.2225"; 31028 31110 src = fetchFromGitHub { 31029 31111 owner = "emacs-helm"; 31030 31112 repo = "helm"; 31031 - rev = "fe92240663f6b2314e79558f6eabbab955a797e3"; 31032 - sha256 = "1ip2a9fh3k14s87h8zhw6flybkskcx6vrayyzj5929g97mr26a5k"; 31113 + rev = "5eae983b6490fe0ad553a1833be5f8ee7aef7a05"; 31114 + sha256 = "1qds2qw4jnfb5xvqczswylc83q5fams9lhk0bz8zy6a2j01s99w0"; 31033 31115 }; 31034 31116 recipeFile = fetchurl { 31035 31117 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; ··· 31084 31166 license = lib.licenses.free; 31085 31167 }; 31086 31168 }) {}; 31169 + helm-ctest = callPackage ({ dash, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, s }: 31170 + melpaBuild { 31171 + pname = "helm-ctest"; 31172 + version = "20171101.934"; 31173 + src = fetchFromGitHub { 31174 + owner = "danlamanna"; 31175 + repo = "helm-ctest"; 31176 + rev = "6de962e355e12a69e4aeaf6484f497e28b2e8a68"; 31177 + sha256 = "0nd1ij7iqf02hni4d77mndbxi8w27vawjd9b3d7fia22vdsha040"; 31178 + }; 31179 + recipeFile = fetchurl { 31180 + url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc85ff5554df10fc2066eec4d90de3b25536923/recipes/helm-ctest"; 31181 + sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm"; 31182 + name = "helm-ctest"; 31183 + }; 31184 + packageRequires = [ dash helm-core s ]; 31185 + meta = { 31186 + homepage = "https://melpa.org/#/helm-ctest"; 31187 + license = lib.licenses.free; 31188 + }; 31189 + }) {}; 31087 31190 helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 31088 31191 melpaBuild { 31089 31192 pname = "helm-dash"; ··· 31339 31442 helm-ext = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 31340 31443 melpaBuild { 31341 31444 pname = "helm-ext"; 31342 - version = "20170914.1348"; 31445 + version = "20171101.1231"; 31343 31446 src = fetchFromGitHub { 31344 31447 owner = "cute-jumper"; 31345 31448 repo = "helm-ext"; 31346 - rev = "c2de41c4694ed606b321bcf83493dee93ad5635a"; 31347 - sha256 = "0bnnzf7pwg0qyx8hafgx6ckcc7n3pvf5j1qbipkzgnqmfqfli0n7"; 31449 + rev = "c8ac56918b200239b3f73a4e6a031deecc2c5646"; 31450 + sha256 = "08c6n4zr6s3h7y0kk6g51xqs6hs29hkfmn55jfjw6hpimbk3vi1j"; 31348 31451 }; 31349 31452 recipeFile = fetchurl { 31350 31453 url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee74cb0aa3445bc9ae4226c2043ee4de3ac6cd3/recipes/helm-ext"; ··· 31528 31631 helm-fuzzy-find = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 31529 31632 melpaBuild { 31530 31633 pname = "helm-fuzzy-find"; 31531 - version = "20150613.349"; 31634 + version = "20171105.2000"; 31532 31635 src = fetchFromGitHub { 31533 31636 owner = "xuchunyang"; 31534 31637 repo = "helm-fuzzy-find"; 31535 - rev = "daf24bc236dafa4f4be45f1621e11dbc9f304b64"; 31536 - sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a"; 31638 + rev = "de2abbf7ca13609587325bacd4a1ed4376b5c927"; 31639 + sha256 = "1dacvnkqqiax02c627z9qi61iyqgr0j3qqmjp29h0v494czvrdbs"; 31537 31640 }; 31538 31641 recipeFile = fetchurl { 31539 31642 url = "https://raw.githubusercontent.com/milkypostman/melpa/34f76bb377ed31aa42663858c407cc5476e6fe1f/recipes/helm-fuzzy-find"; ··· 32071 32174 license = lib.licenses.free; 32072 32175 }; 32073 32176 }) {}; 32177 + helm-js-codemod = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm-core, js-codemod, lib, melpaBuild }: 32178 + melpaBuild { 32179 + pname = "helm-js-codemod"; 32180 + version = "20171106.244"; 32181 + src = fetchFromGitHub { 32182 + owner = "torgeir"; 32183 + repo = "helm-js-codemod.el"; 32184 + rev = "18503d94e64418e8ea5c5854f197ae9f3009cdbf"; 32185 + sha256 = "0d5fsvfa017gda0jryjdvva1q04nry6grc1433gvgrqqp6vxayxc"; 32186 + }; 32187 + recipeFile = fetchurl { 32188 + url = "https://raw.githubusercontent.com/milkypostman/melpa/dd005bfb170df2f0c992043130a5e9588dcf4d77/recipes/helm-js-codemod"; 32189 + sha256 = "1m07xh97fjyah8di363yalg9f5g5rfr3k5mbjql3n67lfwgxrz94"; 32190 + name = "helm-js-codemod"; 32191 + }; 32192 + packageRequires = [ emacs helm-core js-codemod ]; 32193 + meta = { 32194 + homepage = "https://melpa.org/#/helm-js-codemod"; 32195 + license = lib.licenses.free; 32196 + }; 32197 + }) {}; 32074 32198 helm-jstack = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 32075 32199 melpaBuild { 32076 32200 pname = "helm-jstack"; ··· 32137 32261 helm-lean = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, helm, lean-mode, lib, melpaBuild }: 32138 32262 melpaBuild { 32139 32263 pname = "helm-lean"; 32140 - version = "20170919.934"; 32264 + version = "20171102.754"; 32141 32265 src = fetchFromGitHub { 32142 32266 owner = "leanprover"; 32143 32267 repo = "lean-mode"; 32144 - rev = "2f73061c886bae07bc51e4d9eb545ed8027c0442"; 32145 - sha256 = "17bqx7bkfzv4w7cf0l139xwg1shns680rq74hrqgicammb453kz7"; 32268 + rev = "c0af876c967fc969d67c467bc6767210d19c5d87"; 32269 + sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9"; 32146 32270 }; 32147 32271 recipeFile = fetchurl { 32148 32272 url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/helm-lean"; ··· 32242 32366 helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: 32243 32367 melpaBuild { 32244 32368 pname = "helm-make"; 32245 - version = "20171004.1018"; 32369 + version = "20171103.1155"; 32246 32370 src = fetchFromGitHub { 32247 32371 owner = "abo-abo"; 32248 32372 repo = "helm-make"; 32249 - rev = "786104ac0c3cf4fe5b53f841eb9fe10bda2e4031"; 32250 - sha256 = "0qdfk0p2j8jah7m0ngy2mm7775cn779m3a84yll86wqc74g331qs"; 32373 + rev = "feae8df22bc4b20705ea08ac9adfc2b43bb348d0"; 32374 + sha256 = "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"; 32251 32375 }; 32252 32376 recipeFile = fetchurl { 32253 32377 url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make"; ··· 32939 33063 src = fetchFromGitHub { 32940 33064 owner = "Andersbakken"; 32941 33065 repo = "rtags"; 32942 - rev = "7fa54d513fc716b2dc1055636b4728ab29dfdd3e"; 32943 - sha256 = "1i0php9nnpgsmb4l1sc7qgxvdgg4hyviq68f4k41b9bcwab2hbl8"; 33066 + rev = "e413e31d1e74fae1fc1bf86792013c3680be6580"; 33067 + sha256 = "0hfibc1nllsp9zdb803ac6cwp6xx4xf8mvjszfq9vp5a63sgw0pl"; 32944 33068 }; 32945 33069 recipeFile = fetchurl { 32946 33070 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags"; ··· 33292 33416 helm-w3m = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, w3m }: 33293 33417 melpaBuild { 33294 33418 pname = "helm-w3m"; 33295 - version = "20170918.1017"; 33419 + version = "20171102.216"; 33296 33420 src = fetchFromGitHub { 33297 33421 owner = "emacs-helm"; 33298 33422 repo = "helm-w3m"; 33299 - rev = "158f52abaa216cd64fc2c85f07722eceef508cec"; 33300 - sha256 = "1kvvgrfjpifrph1fgn4jvrhsrq8qq9z3w0ag9wjx5lb595svn4vh"; 33423 + rev = "8345b7e60702911f54eb6571e429c0d31878957d"; 33424 + sha256 = "05izdvs8hwkkmz6hvlm2b5p5jmha39nsnnzzhnli70jrbqj013cq"; 33301 33425 }; 33302 33426 recipeFile = fetchurl { 33303 33427 url = "https://raw.githubusercontent.com/milkypostman/melpa/f683fc9c7990e9ecb8a94808a7d03eb90c5569b1/recipes/helm-w3m"; ··· 33418 33542 helpful = callPackage ({ dash, elisp-refs, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 33419 33543 melpaBuild { 33420 33544 pname = "helpful"; 33421 - version = "20171016.1437"; 33545 + version = "20171103.1614"; 33422 33546 src = fetchFromGitHub { 33423 33547 owner = "Wilfred"; 33424 33548 repo = "helpful"; 33425 - rev = "3e08b24e9eabbb17535d39b087895c04cbcd5c1f"; 33426 - sha256 = "17i4q307rdpgpw76m6brf6vis1znfwfqzhfcb181zgf2gam620hb"; 33549 + rev = "deb66c4978dd8197149e56d76b9ce3ebd72d98ed"; 33550 + sha256 = "1c6i97l4z21aarjv16901il4irgmadvr42vamnzjr0mzhpki262b"; 33427 33551 }; 33428 33552 recipeFile = fetchurl { 33429 33553 url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful"; ··· 34383 34507 hledger-mode = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, popup }: 34384 34508 melpaBuild { 34385 34509 pname = "hledger-mode"; 34386 - version = "20171031.1157"; 34510 + version = "20171101.1139"; 34387 34511 src = fetchFromGitHub { 34388 34512 owner = "narendraj9"; 34389 34513 repo = "hledger-mode"; 34390 - rev = "7caae71ba87b592e08fb4caaaa1da8e9af80ec62"; 34391 - sha256 = "17b5hg7fkm8fj2v477ir9z87kn7q07v75akga414k29xlfzmvdw3"; 34514 + rev = "70f4d9c44077eea13bdcb5688475e0c90578e085"; 34515 + sha256 = "0j4pk2qr93pxgg8smzhxmlpk9b0rv9w20n1dz5lw42641xx8frnf"; 34392 34516 }; 34393 34517 recipeFile = fetchurl { 34394 34518 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/hledger-mode"; ··· 35135 35259 ibuffer-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 35136 35260 melpaBuild { 35137 35261 pname = "ibuffer-projectile"; 35138 - version = "20170721.1823"; 35262 + version = "20171103.2004"; 35139 35263 src = fetchFromGitHub { 35140 35264 owner = "purcell"; 35141 35265 repo = "ibuffer-projectile"; 35142 - rev = "431e29d6cf12fc333fc8dc16ceeba54b9416a4aa"; 35143 - sha256 = "1z5a4ygqmp4yjyfpcqlb846vsxvv5s2awhd3r63whw1hs9h6qqah"; 35266 + rev = "6f03040a93d116b73f9fd3d6b52102b57bfaf597"; 35267 + sha256 = "0jmb4s4n8yxyavvvd4msr58708jlha7jd8hm5djl91fgf87r3ys3"; 35144 35268 }; 35145 35269 recipeFile = fetchurl { 35146 35270 url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile"; ··· 35198 35322 ibuffer-vc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 35199 35323 melpaBuild { 35200 35324 pname = "ibuffer-vc"; 35201 - version = "20161103.2358"; 35325 + version = "20171104.1722"; 35202 35326 src = fetchFromGitHub { 35203 35327 owner = "purcell"; 35204 35328 repo = "ibuffer-vc"; 35205 - rev = "e504f9233a9a15834562b6646883b6bf81986674"; 35206 - sha256 = "04a9y4kgbzw5s34rl3xidv21h35vs2rsy061vjsppglggyp1jpl5"; 35329 + rev = "da6b628d51a1a80cfa311200859ae62665a71afa"; 35330 + sha256 = "0hvmlq4c9jcxjgvkk73qq8fnxw4jarzfqcnfwwrqy82cx13nvnk4"; 35207 35331 }; 35208 35332 recipeFile = fetchurl { 35209 35333 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ibuffer-vc"; ··· 35870 35994 iflipb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 35871 35995 melpaBuild { 35872 35996 pname = "iflipb"; 35873 - version = "20170527.839"; 35997 + version = "20171102.1336"; 35874 35998 src = fetchFromGitHub { 35875 35999 owner = "jrosdahl"; 35876 36000 repo = "iflipb"; 35877 - rev = "e19229473be70e55c56a26ccc26c4e11e8be6389"; 35878 - sha256 = "1ybnxl6zgzhxrwsqf54hz235xhz3rmxy7w459salb7rr2s1fqvlz"; 36001 + rev = "3a1ec69ffe7802794fe46baeecbf11846cbdc3ed"; 36002 + sha256 = "1wamzkmndmghvsw8ffbqmllp4nd7yxamym7m62pz22blyh1sj97m"; 35879 36003 }; 35880 36004 recipeFile = fetchurl { 35881 36005 url = "https://raw.githubusercontent.com/milkypostman/melpa/fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318/recipes/iflipb"; ··· 36284 36408 license = lib.licenses.free; 36285 36409 }; 36286 36410 }) {}; 36411 + indent-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 36412 + melpaBuild { 36413 + pname = "indent-info"; 36414 + version = "20171105.153"; 36415 + src = fetchFromGitHub { 36416 + owner = "terlar"; 36417 + repo = "indent-info.el"; 36418 + rev = "2340739dee51e6c45f04053881a2d8c4452fb5ba"; 36419 + sha256 = "0afhx8j7nrkjirq7xr3bcrjm5wcs24slkb6yzi6cw09080s5hlxc"; 36420 + }; 36421 + recipeFile = fetchurl { 36422 + url = "https://raw.githubusercontent.com/milkypostman/melpa/1274c0d871c51e358b3de577372dae8e3a04ead0/recipes/indent-info"; 36423 + sha256 = "0fa6p5fvyxib1iz025kqak7navb11jlfxw5x2jr47180vv9a1373"; 36424 + name = "indent-info"; 36425 + }; 36426 + packageRequires = []; 36427 + meta = { 36428 + homepage = "https://melpa.org/#/indent-info"; 36429 + license = lib.licenses.free; 36430 + }; 36431 + }) {}; 36287 36432 indent-tools = callPackage ({ fetchFromGitLab, fetchurl, hydra, lib, melpaBuild, s, yafolding }: 36288 36433 melpaBuild { 36289 36434 pname = "indent-tools"; 36290 - version = "20170907.715"; 36435 + version = "20171103.750"; 36291 36436 src = fetchFromGitLab { 36292 36437 owner = "emacs-stuff"; 36293 36438 repo = "indent-tools"; 36294 - rev = "5605fee418287bf13d2e132fa7f90a6b7ec08584"; 36295 - sha256 = "0ps3n6m3il7gj1v04fq1a0fmw8wz32jcxrf2ig6qvxyx0q12672k"; 36439 + rev = "6e8e9a8cf9efe4a8624e52f45cb5faa5fe8ec996"; 36440 + sha256 = "1hh4r4axnbmi12hk2d3pynvq3nldgbik8jf73v5ddmv06kqlsxya"; 36296 36441 }; 36297 36442 recipeFile = fetchurl { 36298 36443 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/indent-tools"; ··· 37420 37565 ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 37421 37566 melpaBuild { 37422 37567 pname = "ivy"; 37423 - version = "20171031.716"; 37568 + version = "20171104.252"; 37424 37569 src = fetchFromGitHub { 37425 37570 owner = "abo-abo"; 37426 37571 repo = "swiper"; 37427 - rev = "96663b77945ab21e4e1b0aab690fc2e926f01f9c"; 37428 - sha256 = "0r691dzs77zdkvjzb787kjg8zvvba8gdj2da9zjb14m4nyjmg9d9"; 37572 + rev = "5d373be194e21f3e29a03fb498b901fcc5e128f9"; 37573 + sha256 = "0ycch0gqhjxg9ffz5y942z908zy4y3yl242dnyskkv3vmkrziwsz"; 37429 37574 }; 37430 37575 recipeFile = fetchurl { 37431 37576 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy"; ··· 37550 37695 src = fetchFromGitHub { 37551 37696 owner = "abo-abo"; 37552 37697 repo = "swiper"; 37553 - rev = "96663b77945ab21e4e1b0aab690fc2e926f01f9c"; 37554 - sha256 = "0r691dzs77zdkvjzb787kjg8zvvba8gdj2da9zjb14m4nyjmg9d9"; 37698 + rev = "5d373be194e21f3e29a03fb498b901fcc5e128f9"; 37699 + sha256 = "0ycch0gqhjxg9ffz5y942z908zy4y3yl242dnyskkv3vmkrziwsz"; 37555 37700 }; 37556 37701 recipeFile = fetchurl { 37557 37702 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra"; ··· 37676 37821 src = fetchFromGitHub { 37677 37822 owner = "Andersbakken"; 37678 37823 repo = "rtags"; 37679 - rev = "7fa54d513fc716b2dc1055636b4728ab29dfdd3e"; 37680 - sha256 = "1i0php9nnpgsmb4l1sc7qgxvdgg4hyviq68f4k41b9bcwab2hbl8"; 37824 + rev = "e413e31d1e74fae1fc1bf86792013c3680be6580"; 37825 + sha256 = "0hfibc1nllsp9zdb803ac6cwp6xx4xf8mvjszfq9vp5a63sgw0pl"; 37681 37826 }; 37682 37827 recipeFile = fetchurl { 37683 37828 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags"; ··· 37798 37943 j-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 37799 37944 melpaBuild { 37800 37945 pname = "j-mode"; 37801 - version = "20171017.1813"; 37946 + version = "20171103.845"; 37802 37947 src = fetchFromGitHub { 37803 37948 owner = "zellio"; 37804 37949 repo = "j-mode"; 37805 - rev = "96154937120028f24ee4933904ce4240c87f387e"; 37806 - sha256 = "0mni4wk9kn1iq9vyl7v7akjsb566sgm2vwwsc4sk2mf4x7g9m2rs"; 37950 + rev = "6f7f598eaa1a32ccf06b707631f2d539a2315fba"; 37951 + sha256 = "1qldmcawi94pxv62zb2qgr27kr8lwhsql6wi67g0f5dlihpzc8dq"; 37807 37952 }; 37808 37953 recipeFile = fetchurl { 37809 37954 url = "https://raw.githubusercontent.com/milkypostman/melpa/410134ab2145adad3648b1024bfe4f6801df82c9/recipes/j-mode"; ··· 38174 38319 jbeans-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38175 38320 melpaBuild { 38176 38321 pname = "jbeans-theme"; 38177 - version = "20171011.927"; 38322 + version = "20171101.1641"; 38178 38323 src = fetchFromGitHub { 38179 38324 owner = "synic"; 38180 38325 repo = "jbeans-emacs"; 38181 - rev = "d3cd21b794ba94680f0f3aa574b5029a749430e6"; 38182 - sha256 = "1c3qb3f4dapvfwwrnbgx5sim515pr2i5lvmnid780wphymwjslsc"; 38326 + rev = "5a37364636caa7b006e4af70b437c63dfad1f448"; 38327 + sha256 = "0zpxhpqs0s2ph86hhy8hqpds08aanncys76dbz4j0zp0z0ic9l54"; 38183 38328 }; 38184 38329 recipeFile = fetchurl { 38185 38330 url = "https://raw.githubusercontent.com/milkypostman/melpa/6dd4bd78795ec7509d8744fec1e80426ce0557ec/recipes/jbeans-theme"; ··· 38636 38781 js-codemod = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38637 38782 melpaBuild { 38638 38783 pname = "js-codemod"; 38639 - version = "20171017.1411"; 38784 + version = "20171104.454"; 38640 38785 src = fetchFromGitHub { 38641 38786 owner = "torgeir"; 38642 38787 repo = "js-codemod.el"; 38643 - rev = "cf0d0a47588cad640e4397f306fd17d2166a8f04"; 38644 - sha256 = "04im9cs7hbs2bzx5ynibwgbypy91vvrz3jjy72hzfaamdglw7w8r"; 38788 + rev = "014e56c846487d1eeaf8a91dd503b9d96eb1510a"; 38789 + sha256 = "0s07ypjlqsx2pgq89wmr69w9p7ybc62abqp53kzf5gmdl6fdzgxq"; 38645 38790 }; 38646 38791 recipeFile = fetchurl { 38647 38792 url = "https://raw.githubusercontent.com/milkypostman/melpa/81670a2467fa846a3f0e6c81e870e8ae140dd54e/recipes/js-codemod"; ··· 38783 38928 js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38784 38929 melpaBuild { 38785 38930 pname = "js2-mode"; 38786 - version = "20171014.1229"; 38931 + version = "20171103.1540"; 38787 38932 src = fetchFromGitHub { 38788 38933 owner = "mooz"; 38789 38934 repo = "js2-mode"; 38790 - rev = "dd295e838d3878188b1797b82a86867e3e56d22c"; 38791 - sha256 = "04axxxhy1jbn21bzsxwlirsv9mnzbrwcxbql28vzvw6572vkrb9x"; 38935 + rev = "4e032e67e11490aacca2aacb208b4b481d430ee1"; 38936 + sha256 = "1j6b51pjsj02z6gslw7867781kfkvv7j76x7q0m12bjrqc6f66rr"; 38792 38937 }; 38793 38938 recipeFile = fetchurl { 38794 38939 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; ··· 39472 39617 kaolin-themes = callPackage ({ autothemer, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 39473 39618 melpaBuild { 39474 39619 pname = "kaolin-themes"; 39475 - version = "20171101.316"; 39620 + version = "20171105.1035"; 39476 39621 src = fetchFromGitHub { 39477 39622 owner = "ogdenwebb"; 39478 39623 repo = "emacs-kaolin-themes"; 39479 - rev = "85d11341944ff91e7949306c588f237ebf8adc5e"; 39480 - sha256 = "1cqmg3hksqb3vi2m77ysacx8znp6b94vqcxw7lm4psrdwb3ris8g"; 39624 + rev = "92aabaf06ab58b2c5f89b9d9c0cbff8540535e23"; 39625 + sha256 = "16qvnpan03abhnp14w99chs3m4vl55k410xpk491xxcc4zqr5z1d"; 39481 39626 }; 39482 39627 recipeFile = fetchurl { 39483 39628 url = "https://raw.githubusercontent.com/milkypostman/melpa/043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4/recipes/kaolin-themes"; ··· 39980 40125 src = fetchFromGitHub { 39981 40126 owner = "kivy"; 39982 40127 repo = "kivy"; 39983 - rev = "be946b5e33cc1fc734a29ba46ca734391803fbcd"; 39984 - sha256 = "1ngpwjhilpg974xx4z8fiz6c2ycpdr6xbky1d3d24563hjp1a5kr"; 40128 + rev = "15d95c759f44c6d61a9bd424b482d3c1979bbb5a"; 40129 + sha256 = "1w18nag2db89yjp3ymcwf7ga4psisny7f22jr3pj6m52458ag807"; 39985 40130 }; 39986 40131 recipeFile = fetchurl { 39987 40132 url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode"; ··· 40731 40876 lean-mode = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, s }: 40732 40877 melpaBuild { 40733 40878 pname = "lean-mode"; 40734 - version = "20170920.755"; 40879 + version = "20171102.754"; 40735 40880 src = fetchFromGitHub { 40736 40881 owner = "leanprover"; 40737 40882 repo = "lean-mode"; 40738 - rev = "2f73061c886bae07bc51e4d9eb545ed8027c0442"; 40739 - sha256 = "17bqx7bkfzv4w7cf0l139xwg1shns680rq74hrqgicammb453kz7"; 40883 + rev = "c0af876c967fc969d67c467bc6767210d19c5d87"; 40884 + sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9"; 40740 40885 }; 40741 40886 recipeFile = fetchurl { 40742 40887 url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/lean-mode"; ··· 41327 41472 lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper, zoutline }: 41328 41473 melpaBuild { 41329 41474 pname = "lispy"; 41330 - version = "20171017.1052"; 41475 + version = "20171105.55"; 41331 41476 src = fetchFromGitHub { 41332 41477 owner = "abo-abo"; 41333 41478 repo = "lispy"; 41334 - rev = "d70db0d6cfae3c030167389828219b9c9ac88248"; 41335 - sha256 = "1jrcrlnn0k814wqw2dyzjhcc7q4k95pp7apcmfzv7zk5jwf5p0xk"; 41479 + rev = "6ea057a340f60d094468c97dcc63f72750d99a65"; 41480 + sha256 = "1sip61sq8743bn4gyqpscwdhl9s6j4sl61n476c9iljkr9byq620"; 41336 41481 }; 41337 41482 recipeFile = fetchurl { 41338 41483 url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy"; ··· 41642 41787 live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 41643 41788 melpaBuild { 41644 41789 pname = "live-py-mode"; 41645 - version = "20171029.1522"; 41790 + version = "20171105.2207"; 41646 41791 src = fetchFromGitHub { 41647 41792 owner = "donkirkby"; 41648 41793 repo = "live-py-plugin"; 41649 - rev = "2ecd23457ac26f30f7218a5506142ca71dc602be"; 41650 - sha256 = "17d6p7i2yi3iawc2k8w4fkx5lwnr0x5kax73cgwapv6ghmr9yy42"; 41794 + rev = "943cde89c10529891616c6e18484089aba133258"; 41795 + sha256 = "0z4kp0irrc1zgcc42fhw4cc7kxmwy0hg185mh5943sbmz214zdsl"; 41651 41796 }; 41652 41797 recipeFile = fetchurl { 41653 41798 url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode"; ··· 41750 41895 version = "20150910.644"; 41751 41896 src = fetchgit { 41752 41897 url = "https://llvm.org/git/llvm"; 41753 - rev = "26acced737715cfcbf29f6708f900b4bb8a6d5e8"; 41754 - sha256 = "189c90wax1zyzk017j4brq2i25smkmpkb05wzakywkf0rgswxwqh"; 41898 + rev = "044ea898ddf3cf201f6507e0ebfd410353f7ae64"; 41899 + sha256 = "1mn1236c5d46ngb4khla68lbzncs2vwajs6mw8a5jp87z5p7fsy9"; 41755 41900 }; 41756 41901 recipeFile = fetchurl { 41757 41902 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/llvm-mode"; ··· 42182 42327 license = lib.licenses.free; 42183 42328 }; 42184 42329 }) {}; 42330 + lsp-hack = callPackage ({ fetchFromGitHub, fetchurl, lib, lsp-mode, melpaBuild }: 42331 + melpaBuild { 42332 + pname = "lsp-hack"; 42333 + version = "20171030.1159"; 42334 + src = fetchFromGitHub { 42335 + owner = "jra3"; 42336 + repo = "lsp-hack"; 42337 + rev = "b9d1d211015ce347d5a643261903c9c7dfcc8d83"; 42338 + sha256 = "1brwlcqghlklvqswi2gnan4757acrvx4pvgsnk1zhf1knigry7nr"; 42339 + }; 42340 + recipeFile = fetchurl { 42341 + url = "https://raw.githubusercontent.com/milkypostman/melpa/a70d8442c653554d28dc87425913424ab42ab5c8/recipes/lsp-hack"; 42342 + sha256 = "1xfvk4hqs748b9dm8dirb2mdpnhq9mybgsbcj258yydr57d9zijs"; 42343 + name = "lsp-hack"; 42344 + }; 42345 + packageRequires = [ lsp-mode ]; 42346 + meta = { 42347 + homepage = "https://melpa.org/#/lsp-hack"; 42348 + license = lib.licenses.free; 42349 + }; 42350 + }) {}; 42185 42351 lsp-haskell = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, lib, lsp-mode, melpaBuild }: 42186 42352 melpaBuild { 42187 42353 pname = "lsp-haskell"; ··· 42269 42435 lsp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 42270 42436 melpaBuild { 42271 42437 pname = "lsp-mode"; 42272 - version = "20171029.148"; 42438 + version = "20171106.535"; 42273 42439 src = fetchFromGitHub { 42274 42440 owner = "emacs-lsp"; 42275 42441 repo = "lsp-mode"; 42276 - rev = "b221b2acce8936114649cdbdf0ce1d584487ef91"; 42277 - sha256 = "0ndbhy1035ji31ffhc6hxybwm59kzmlp9hg1zjhfww4d0sym9hz9"; 42442 + rev = "7c26203c407786f83b18e89629d15d9dcb31c4cb"; 42443 + sha256 = "0lri2n18h0k5ykmp0w83ll7cyi2m880ah8d4lf5c4r39fz2kvyy3"; 42278 42444 }; 42279 42445 recipeFile = fetchurl { 42280 42446 url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-mode"; ··· 42668 42834 magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: 42669 42835 melpaBuild { 42670 42836 pname = "magit"; 42671 - version = "20171031.1141"; 42837 + version = "20171106.529"; 42672 42838 src = fetchFromGitHub { 42673 42839 owner = "magit"; 42674 42840 repo = "magit"; 42675 - rev = "5c08d09cdaad506ca94616c59f39982f43f4c12f"; 42676 - sha256 = "053ff7gr56chbfg3n6ysn5q13db2rjr5s7nkplkv72hzla381dys"; 42841 + rev = "ab00c5ba2711da7804a92be0c04b996250d350b7"; 42842 + sha256 = "08psg0gdxb5ng1319ah06d65f8brglb69s992qf2gh1njjfv4l2m"; 42677 42843 }; 42678 42844 recipeFile = fetchurl { 42679 42845 url = "https://raw.githubusercontent.com/milkypostman/melpa/68bb049b7c4424345f5c1aea82e950a5e47e9e47/recipes/magit"; ··· 42889 43055 src = fetchFromGitHub { 42890 43056 owner = "magit"; 42891 43057 repo = "magit"; 42892 - rev = "5c08d09cdaad506ca94616c59f39982f43f4c12f"; 42893 - sha256 = "053ff7gr56chbfg3n6ysn5q13db2rjr5s7nkplkv72hzla381dys"; 43058 + rev = "ab00c5ba2711da7804a92be0c04b996250d350b7"; 43059 + sha256 = "08psg0gdxb5ng1319ah06d65f8brglb69s992qf2gh1njjfv4l2m"; 42894 43060 }; 42895 43061 recipeFile = fetchurl { 42896 43062 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-popup"; ··· 43008 43174 license = lib.licenses.free; 43009 43175 }; 43010 43176 }) {}; 43011 - magithub = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub-plus, lib, magit, melpaBuild, s }: 43177 + magithub = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub-plus, git-commit, lib, magit, markdown-mode, melpaBuild, s }: 43012 43178 melpaBuild { 43013 43179 pname = "magithub"; 43014 - version = "20171029.1959"; 43180 + version = "20171105.918"; 43015 43181 src = fetchFromGitHub { 43016 43182 owner = "vermiculus"; 43017 43183 repo = "magithub"; 43018 - rev = "2fcd5eebf3e052234950b3b07e43d26ce632a794"; 43019 - sha256 = "0k5bxxfj60vr58g7rnj562ls8ijb0ia66fdiqpyffi5sf0wan13i"; 43184 + rev = "909804449129a43fbc24ced3362aa5ea37cbefd4"; 43185 + sha256 = "059m1y8bd8779l59701as2y359c1dlf7nha1nsnd5c7vgsmi28ln"; 43020 43186 }; 43021 43187 recipeFile = fetchurl { 43022 43188 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/magithub"; 43023 43189 sha256 = "11par5rncsa866gazdw98d4902rvyjnnwbiwpndlyh06ak0lryab"; 43024 43190 name = "magithub"; 43025 43191 }; 43026 - packageRequires = [ emacs ghub-plus magit s ]; 43192 + packageRequires = [ emacs ghub-plus git-commit magit markdown-mode s ]; 43027 43193 meta = { 43028 43194 homepage = "https://melpa.org/#/magithub"; 43029 43195 license = lib.licenses.free; ··· 45834 46000 license = lib.licenses.free; 45835 46001 }; 45836 46002 }) {}; 46003 + mu4e-jump-to-list = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 46004 + melpaBuild { 46005 + pname = "mu4e-jump-to-list"; 46006 + version = "20171104.1248"; 46007 + src = fetchFromGitHub { 46008 + owner = "wavexx"; 46009 + repo = "mu4e-jump-to-list.el"; 46010 + rev = "2aa995ddedc7634292b459a3ea2718eea39695cf"; 46011 + sha256 = "0l4fnnmdb5xf99klviabyqkh3ywkwvphhf8darj42ygrhbs086pd"; 46012 + }; 46013 + recipeFile = fetchurl { 46014 + url = "https://raw.githubusercontent.com/milkypostman/melpa/ca51179f5584c0eac626da7cda896b247d33fcae/recipes/mu4e-jump-to-list"; 46015 + sha256 = "1k4ic476f6xzh6f1a9jaqy0248zz2q4xjygdvrsyrp1sxjbrwxvm"; 46016 + name = "mu4e-jump-to-list"; 46017 + }; 46018 + packageRequires = [ cl-lib emacs ]; 46019 + meta = { 46020 + homepage = "https://melpa.org/#/mu4e-jump-to-list"; 46021 + license = lib.licenses.free; 46022 + }; 46023 + }) {}; 45837 46024 mu4e-maildirs-extension = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 45838 46025 melpaBuild { 45839 46026 pname = "mu4e-maildirs-extension"; ··· 47557 47744 version = "20170927.415"; 47558 47745 src = fetchgit { 47559 47746 url = "git://git.notmuchmail.org/git/notmuch"; 47560 - rev = "1b91884296f7e423f2e190ccf7f590ccb3028fdd"; 47561 - sha256 = "0f78b9nw7ccpkkf192ka40d5021gbj114capjlkf4d79qr8m91yh"; 47747 + rev = "7ac96b149f5a0e5c03b64856d7c20789dab3c628"; 47748 + sha256 = "0l5j3605ihii40204jw9vyk96f3dmfvr7y9p9ag178wb5x2ab6cb"; 47562 47749 }; 47563 47750 recipeFile = fetchurl { 47564 47751 url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch"; ··· 47595 47782 nov = callPackage ({ dash, emacs, esxml, fetchFromGitHub, fetchurl, lib, melpaBuild }: 47596 47783 melpaBuild { 47597 47784 pname = "nov"; 47598 - version = "20170924.512"; 47785 + version = "20171104.1641"; 47599 47786 src = fetchFromGitHub { 47600 47787 owner = "wasamasa"; 47601 47788 repo = "nov.el"; 47602 - rev = "19ab463864f137b43704b4f34173349c88e84d8e"; 47603 - sha256 = "00f5hhw157nwdwy26yn6l3z2hgk6xxvx5xl0hasskj1l9rg0zgh2"; 47789 + rev = "7d14b6a2aa649e2213348883893a24a6a6083cb9"; 47790 + sha256 = "0l8b4847rig76d974akpkbb43i7pnhx75wmlgczqscmripspdxyb"; 47604 47791 }; 47605 47792 recipeFile = fetchurl { 47606 47793 url = "https://raw.githubusercontent.com/milkypostman/melpa/cf543955ba2d5d0074fa2a5ba176f9415f6e006d/recipes/nov"; ··· 47637 47824 npm-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 47638 47825 melpaBuild { 47639 47826 pname = "npm-mode"; 47640 - version = "20160706.1129"; 47827 + version = "20171103.1135"; 47641 47828 src = fetchFromGitHub { 47642 47829 owner = "mojochao"; 47643 47830 repo = "npm-mode"; 47644 - rev = "63a5c306f6e8d53f043471eb8ea734f00ca998c4"; 47645 - sha256 = "1ph680i24sga02r2w2r2rial4mi0czv0abz2jif3pypzxz3h1f15"; 47831 + rev = "91b8a5ad9301a368e1ce051e625450d7fe3884a4"; 47832 + sha256 = "1zzx9956mfrh91d84dpl4ij9b62iza4mflr9qjlh69b8allajngn"; 47646 47833 }; 47647 47834 recipeFile = fetchurl { 47648 47835 url = "https://raw.githubusercontent.com/milkypostman/melpa/22dd6b2f8a94f56a61f4b70bd7e44b1bcf96eb18/recipes/npm-mode"; ··· 47721 47908 nu-mode = callPackage ({ ace-window, avy, fetchFromGitHub, fetchurl, lib, melpaBuild, transpose-frame, undo-tree, which-key }: 47722 47909 melpaBuild { 47723 47910 pname = "nu-mode"; 47724 - version = "20171028.1443"; 47911 + version = "20171103.1605"; 47725 47912 src = fetchFromGitHub { 47726 47913 owner = "pyluyten"; 47727 47914 repo = "emacs-nu"; 47728 - rev = "683e2648a5b669e91138eec606f2e86f9f54ccd3"; 47729 - sha256 = "0mf8cj729ag7c0z1155ziaqx9s119nwxg9231rb8i8qx17vdci2b"; 47915 + rev = "8ebadeccda7aa97f5555abc9b45a174f62f0134c"; 47916 + sha256 = "1bws17vnzp759x29n1aamd5scnrbrf4ckm51kdw08is9im4dzwxl"; 47730 47917 }; 47731 47918 recipeFile = fetchurl { 47732 47919 url = "https://raw.githubusercontent.com/milkypostman/melpa/230d5f8fdd965a24b8ff3cc94acf378d04815fca/recipes/nu-mode"; ··· 48015 48202 packageRequires = [ async emacs org ]; 48016 48203 meta = { 48017 48204 homepage = "https://melpa.org/#/ob-async"; 48205 + license = lib.licenses.free; 48206 + }; 48207 + }) {}; 48208 + ob-axiom = callPackage ({ axiom-environment, emacs, fetchgit, fetchurl, lib, melpaBuild }: 48209 + melpaBuild { 48210 + pname = "ob-axiom"; 48211 + version = "20171103.1548"; 48212 + src = fetchgit { 48213 + url = "https://bitbucket.org/pdo/axiom-environment.git"; 48214 + rev = "33af42c1c3109f17d63c69cdca0319e424409a37"; 48215 + sha256 = "1nv102jd07nrhkp4fci5n5f1l6z3qan1lb3ykhhvl90k9ygqbac5"; 48216 + }; 48217 + recipeFile = fetchurl { 48218 + url = "https://raw.githubusercontent.com/milkypostman/melpa/9f07feb8686c76c330f282320b9f653dc16cadd5/recipes/ob-axiom"; 48219 + sha256 = "0ks0q4ych3770gqds7kmccvx27fay7gfygi3a9n7c01p4snfai8l"; 48220 + name = "ob-axiom"; 48221 + }; 48222 + packageRequires = [ axiom-environment emacs ]; 48223 + meta = { 48224 + homepage = "https://melpa.org/#/ob-axiom"; 48018 48225 license = lib.licenses.free; 48019 48226 }; 48020 48227 }) {}; ··· 49089 49296 license = lib.licenses.free; 49090 49297 }; 49091 49298 }) {}; 49092 - olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 49299 + olivetti = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 49093 49300 melpaBuild { 49094 49301 pname = "olivetti"; 49095 - version = "20171017.210"; 49302 + version = "20171102.1906"; 49096 49303 src = fetchFromGitHub { 49097 49304 owner = "rnkn"; 49098 49305 repo = "olivetti"; 49099 - rev = "4c8b62f54ec4151cf8b48a7e1f904d3b4a7d73d6"; 49100 - sha256 = "06hyn8mmi7ikgwpyds17z35rjwxrlwjkvv1dmjcp4jirnqbp9lmk"; 49306 + rev = "cd2fdca25935a47a5d3b0417a206f886579f8c45"; 49307 + sha256 = "0cm630yvsdib868xl9x1ng3i64dcyzvq8pzhhaz99b7zc7wfayvh"; 49101 49308 }; 49102 49309 recipeFile = fetchurl { 49103 49310 url = "https://raw.githubusercontent.com/milkypostman/melpa/697334ca3cdb9630572ae267811bd5c2a67d2a95/recipes/olivetti"; 49104 49311 sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; 49105 49312 name = "olivetti"; 49106 49313 }; 49107 - packageRequires = []; 49314 + packageRequires = [ emacs ]; 49108 49315 meta = { 49109 49316 homepage = "https://melpa.org/#/olivetti"; 49110 49317 license = lib.licenses.free; ··· 49260 49467 omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup, s, shut-up }: 49261 49468 melpaBuild { 49262 49469 pname = "omnisharp"; 49263 - version = "20171030.2201"; 49470 + version = "20171105.912"; 49264 49471 src = fetchFromGitHub { 49265 49472 owner = "OmniSharp"; 49266 49473 repo = "omnisharp-emacs"; 49267 - rev = "906e29a702237f039f24c215fdb561a728a3df1b"; 49268 - sha256 = "1l1rzl7y5j2wmlgx7ivivwvwvbn4h7pg5s7yqsk65n9kb59ha8s8"; 49474 + rev = "ad4a19c60f7dc3d52a5b11febdcc9b78930a1e7d"; 49475 + sha256 = "0jc2ap9l0cc636kssld1bqalbriib57sw1rzz45s8r19jqa8w5gm"; 49269 49476 }; 49270 49477 recipeFile = fetchurl { 49271 49478 url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; ··· 50277 50484 org-evil = callPackage ({ dash, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, monitor, org }: 50278 50485 melpaBuild { 50279 50486 pname = "org-evil"; 50280 - version = "20171004.255"; 50487 + version = "20171102.556"; 50281 50488 src = fetchFromGitHub { 50282 50489 owner = "GuiltyDolphin"; 50283 50490 repo = "org-evil"; 50284 - rev = "aae5688c15cef9f2f6105d395dab36b163d5af34"; 50285 - sha256 = "01ablfw0prcb4bwsaa6fbqc80xz539a48psvnmddz98c8yjhb9g7"; 50491 + rev = "90a82ec72fb688ef98d1343c02dc3c6da9e4bbee"; 50492 + sha256 = "0fl9m1bgcmvxpdmb05lbna9snfrd8gbrn16c2w72b3asxx7acq94"; 50286 50493 }; 50287 50494 recipeFile = fetchurl { 50288 50495 url = "https://raw.githubusercontent.com/milkypostman/melpa/17a4772d409aa5dbda5fb84d86c237fd2653c70b/recipes/org-evil"; ··· 50423 50630 org-jira = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 50424 50631 melpaBuild { 50425 50632 pname = "org-jira"; 50426 - version = "20171017.2015"; 50633 + version = "20171105.2011"; 50427 50634 src = fetchFromGitHub { 50428 50635 owner = "ahungry"; 50429 50636 repo = "org-jira"; 50430 - rev = "ff048833113bac1ee67284826a6c3a4cd70793b4"; 50431 - sha256 = "071z37sv6fw1dggi2ckphb1srzvanwnmy0xbsa3b2pfpv4yvvdhm"; 50637 + rev = "acad51a1efbdab58975aebe7cb69bdd6556bc44f"; 50638 + sha256 = "1y183bsjdxlfi22xd7kd1w5xa3qnmgf7063083f977sf5z9afsyy"; 50432 50639 }; 50433 50640 recipeFile = fetchurl { 50434 50641 url = "https://raw.githubusercontent.com/milkypostman/melpa/730a585e5c9216a2428a134c09abcc20bc7c631d/recipes/org-jira"; ··· 50528 50735 org-mime = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 50529 50736 melpaBuild { 50530 50737 pname = "org-mime"; 50531 - version = "20171014.141"; 50738 + version = "20171105.1440"; 50532 50739 src = fetchFromGitHub { 50533 50740 owner = "org-mime"; 50534 50741 repo = "org-mime"; 50535 - rev = "db707a73379fb3b21ae6e24c6230bfd3dde7ef45"; 50536 - sha256 = "1sy5d1nnhvkan877bx2pbc16n7sy2jn5cpdsca06mrxb1m3mxzbd"; 50742 + rev = "64a3f56651369b2a8b0a601abea1cf1216db2ded"; 50743 + sha256 = "0jvknbiilik3dwkz1kpjf7ac1fqkdh74pljzpyxxyg3slqha0d50"; 50537 50744 }; 50538 50745 recipeFile = fetchurl { 50539 50746 url = "https://raw.githubusercontent.com/milkypostman/melpa/521678fa13884dae69c2b4b7a2af718b2eea4b28/recipes/org-mime"; ··· 51438 51645 src = fetchFromGitHub { 51439 51646 owner = "org-trello"; 51440 51647 repo = "org-trello"; 51441 - rev = "32dd866e830836a72a3b96b96e0d00d044d0eaf7"; 51442 - sha256 = "0m5hyhb6211hdmyp1bq6f3fklfgw3957knd96bfdafj727vdnlzm"; 51648 + rev = "d7885038d7e160a64f561f8abc942206d582faa6"; 51649 + sha256 = "091hznr9pznm26p5vm0kav69qkji6hihf6bil0a314d8k0kaj5bc"; 51443 51650 }; 51444 51651 recipeFile = fetchurl { 51445 51652 url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello"; ··· 52367 52574 ox-epub = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 52368 52575 melpaBuild { 52369 52576 pname = "ox-epub"; 52370 - version = "20171020.1659"; 52577 + version = "20171105.0"; 52371 52578 src = fetchFromGitHub { 52372 52579 owner = "ofosos"; 52373 52580 repo = "ox-epub"; 52374 - rev = "a93d1833533c3589dbba62dcdfd13f99881e0fad"; 52375 - sha256 = "1iqdsp70h98qwfah91w9rj9j29952zkr6q261mrfy4c43jvghvln"; 52581 + rev = "31ed40ad3f0b3166cb3e772f8689b12d7f2cfe1b"; 52582 + sha256 = "1p9pdm3mhwf5ldl0g4c8kf8iqwzqg0f88qd0nmw33mm8mvikvv1h"; 52376 52583 }; 52377 52584 recipeFile = fetchurl { 52378 52585 url = "https://raw.githubusercontent.com/milkypostman/melpa/c3ac31dfef00e83fa6b716ea006f35afb5dc6cd5/recipes/ox-epub"; ··· 52434 52641 src = fetchFromGitHub { 52435 52642 owner = "kaushalmodi"; 52436 52643 repo = "ox-hugo"; 52437 - rev = "caa3aa99c6bef6d0dcaa4713a7934c7d410a5641"; 52438 - sha256 = "0vadb0d7wgz37cdzhgciv0b0fd6wc4gwdz0ppdhk1s9y3hkcbkw6"; 52644 + rev = "8de0bbd612af6b4dda5e9d5de1bd9d4bf1cc582f"; 52645 + sha256 = "0kqrcyccf0b440325mp7yk9rfcrg5f6g0wkc107gbnc9s6h55q6d"; 52439 52646 }; 52440 52647 recipeFile = fetchurl { 52441 52648 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e1240bb7b5bb8773f804b987901566a20e3e8a9/recipes/ox-hugo"; ··· 56861 57068 project-shells = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: 56862 57069 melpaBuild { 56863 57070 pname = "project-shells"; 56864 - version = "20170312.1912"; 57071 + version = "20171106.450"; 56865 57072 src = fetchFromGitHub { 56866 57073 owner = "hying-caritas"; 56867 57074 repo = "project-shells"; 56868 - rev = "1baec678ff04c2970591a2cb477c00b0182d6db1"; 56869 - sha256 = "05x0i3zyqgx72r9mzs98anzwdy7l1v2p5m6k4sffp1fcsp78b80v"; 57075 + rev = "d681cf9488f5b7fe76fc53572a8c62f1664f8315"; 57076 + sha256 = "1mp2n5g952p91rv48p87ak3jydma4cisfzp413yr1d0lf833r3c7"; 56870 57077 }; 56871 57078 recipeFile = fetchurl { 56872 57079 url = "https://raw.githubusercontent.com/milkypostman/melpa/becf54de5ae9582d7c76382dff16d40b04b1a464/recipes/project-shells"; ··· 56882 57089 projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: 56883 57090 melpaBuild { 56884 57091 pname = "projectile"; 56885 - version = "20171031.456"; 57092 + version = "20171102.55"; 56886 57093 src = fetchFromGitHub { 56887 57094 owner = "bbatsov"; 56888 57095 repo = "projectile"; 56889 - rev = "7892f642ce7ab6ee816e5926ae02ea2014dac2a8"; 56890 - sha256 = "17vclk40435qv2g0fjgyc0fndjghd2x20i43zvcff45yjqmyhw88"; 57096 + rev = "48457fb32b7ff31e5dd30d38e576b8e6c8d3ceba"; 57097 + sha256 = "096q8vmpwz48gkkms4ryddaa3vbf93m0gjik96c0hmag3fygz0cg"; 56891 57098 }; 56892 57099 recipeFile = fetchurl { 56893 57100 url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile"; ··· 56987 57194 projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: 56988 57195 melpaBuild { 56989 57196 pname = "projectile-rails"; 56990 - version = "20170901.47"; 57197 + version = "20171103.1004"; 56991 57198 src = fetchFromGitHub { 56992 57199 owner = "asok"; 56993 57200 repo = "projectile-rails"; 56994 - rev = "31c9f90d472e07cb8e49fa8992b187b67c9c9a71"; 56995 - sha256 = "0j38zbprkga3iq5wb77zvfa5r3sj3sqv8qh0ab62wm68qy60d6g3"; 57201 + rev = "ff5f63df4e1403f5ab1286f1099a072a5f6694d9"; 57202 + sha256 = "0qxnpz0nmh3rxrqmw93abmxjf0fnhl0nyalywa8crhzfrd7qff79"; 56996 57203 }; 56997 57204 recipeFile = fetchurl { 56998 57205 url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails"; ··· 57327 57534 src = fetchFromGitHub { 57328 57535 owner = "google"; 57329 57536 repo = "protobuf"; 57330 - rev = "cbe250591fca9d2e776776be065a72c5550a5556"; 57331 - sha256 = "0g8zp8ws7i9v3a719dvwkva0f9rap5s6jdpw2j8cj1kp94bvk9fl"; 57537 + rev = "bcda919ceeae8bd854c07a8300d8996ef52315db"; 57538 + sha256 = "1fgmv9z6crdmn9z2frm68cwp9jxc15hi8sif952b127sr2kr074l"; 57332 57539 }; 57333 57540 recipeFile = fetchurl { 57334 57541 url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; ··· 58196 58403 src = fetchFromGitHub { 58197 58404 owner = "PyCQA"; 58198 58405 repo = "pylint"; 58199 - rev = "dd78aedcf0f499188ad8232f2193ba62c791d33e"; 58200 - sha256 = "0hqxh294hg9y8nz4i8p2mipg65d6p6wfy9kqlfx9zy5cm19dn7fm"; 58406 + rev = "12c954eef9ff3764fb3c281ba0ffd7ff85c7f3ca"; 58407 + sha256 = "0jrklxvwqlq697psfxbn6jqhib997g7nz0irbv3x6dp147p7njlz"; 58201 58408 }; 58202 58409 recipeFile = fetchurl { 58203 58410 url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint"; ··· 59777 59984 src = fetchFromGitHub { 59778 59985 owner = "RedPRL"; 59779 59986 repo = "sml-redprl"; 59780 - rev = "b01bf5db718395eead17b679ed10c6b876117034"; 59781 - sha256 = "0vnfjh0h0z9w28fb1sjncsjcc8f7h1ll0svm203cb5vw6v9d8nrs"; 59987 + rev = "6ce431a3b537703e89981426368afbc64964ab36"; 59988 + sha256 = "1bzl0zklb83ndxyi92py1zrlnxvv4w2rq8m37azmijigprad1mcz"; 59782 59989 }; 59783 59990 recipeFile = fetchurl { 59784 59991 url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl"; ··· 60973 61180 src = fetchFromGitHub { 60974 61181 owner = "Andersbakken"; 60975 61182 repo = "rtags"; 60976 - rev = "7fa54d513fc716b2dc1055636b4728ab29dfdd3e"; 60977 - sha256 = "1i0php9nnpgsmb4l1sc7qgxvdgg4hyviq68f4k41b9bcwab2hbl8"; 61183 + rev = "e413e31d1e74fae1fc1bf86792013c3680be6580"; 61184 + sha256 = "0hfibc1nllsp9zdb803ac6cwp6xx4xf8mvjszfq9vp5a63sgw0pl"; 60978 61185 }; 60979 61186 recipeFile = fetchurl { 60980 61187 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags"; ··· 61347 61554 rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61348 61555 melpaBuild { 61349 61556 pname = "rust-mode"; 61350 - version = "20171013.258"; 61557 + version = "20171106.510"; 61351 61558 src = fetchFromGitHub { 61352 61559 owner = "rust-lang"; 61353 61560 repo = "rust-mode"; 61354 - rev = "b8e49089713714a9f3f815b399df569a0e507e73"; 61355 - sha256 = "0ny5prsm70incv30g5310bknbpix0415dn16hhf55rhjhwg39dns"; 61561 + rev = "04e3078ffc5f4b95e0a62960e36866d4bf1a9537"; 61562 + sha256 = "1gj3wyb0bdz7a80bysji241pw47gy20k5f1jif3m2j186ki6f2s5"; 61356 61563 }; 61357 61564 recipeFile = fetchurl { 61358 61565 url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode"; ··· 61431 61638 s = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 61432 61639 melpaBuild { 61433 61640 pname = "s"; 61434 - version = "20171101.219"; 61641 + version = "20171102.227"; 61435 61642 src = fetchFromGitHub { 61436 61643 owner = "magnars"; 61437 61644 repo = "s.el"; 61438 - rev = "71f2902fc7875b3df9ee089c85904a4e8a00d438"; 61439 - sha256 = "0k6ny3ca4iwvhmzpdfs5v44l19djwpx8x7a1kfjgdafdh2x6d7ds"; 61645 + rev = "5e9a6857d42015c67681616aa3519f599f97b8d8"; 61646 + sha256 = "00g7nvcbf1291npid30pih72209l5hv2fpv6s6m5i1vg94z081fg"; 61440 61647 }; 61441 61648 recipeFile = fetchurl { 61442 61649 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/s"; ··· 61515 61722 sage-shell-mode = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: 61516 61723 melpaBuild { 61517 61724 pname = "sage-shell-mode"; 61518 - version = "20170823.1809"; 61725 + version = "20171103.333"; 61519 61726 src = fetchFromGitHub { 61520 61727 owner = "sagemath"; 61521 61728 repo = "sage-shell-mode"; 61522 - rev = "5ba8a40c38c71c813a9d6dc79036f71a7a47e013"; 61523 - sha256 = "04f11yp1rc5zi31hn9imz1z4nli2i5pzllx8niiibff82kw8dvip"; 61729 + rev = "75b84fdba1e0f4511e518b7e56c816f1ace49024"; 61730 + sha256 = "1mysq81xnwarcqvwda17n90fy25mp57gvijrccnxw91ni2wncyl4"; 61524 61731 }; 61525 61732 recipeFile = fetchurl { 61526 61733 url = "https://raw.githubusercontent.com/milkypostman/melpa/eb875c50c2f97919fd0027869c5d9970e1eaf373/recipes/sage-shell-mode"; ··· 61620 61827 sauron = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 61621 61828 melpaBuild { 61622 61829 pname = "sauron"; 61623 - version = "20160501.1045"; 61830 + version = "20171105.247"; 61624 61831 src = fetchFromGitHub { 61625 61832 owner = "djcb"; 61626 61833 repo = "sauron"; 61627 - rev = "3847b4be16ec3ba9675a230dab5adf029174b3cf"; 61628 - sha256 = "169mbr83zlawjnn2p9yzx7rrg33bb78gb1i7lklagn73ca2pr0b5"; 61834 + rev = "50f09bfc6f5bf79e72a1223e345ee720b507e56a"; 61835 + sha256 = "1k80vzgky4fcakxs3h0yb7g3zpn4382p8zz730kk1ibfd7i56a68"; 61629 61836 }; 61630 61837 recipeFile = fetchurl { 61631 61838 url = "https://raw.githubusercontent.com/milkypostman/melpa/9d30dcc4715422133e1bb00ad7a8e25b060387e4/recipes/sauron"; ··· 61771 61978 src = fetchFromGitHub { 61772 61979 owner = "openscad"; 61773 61980 repo = "openscad"; 61774 - rev = "11ef66e8aa8d97f0ed8786c46daa091b1d812867"; 61775 - sha256 = "1p0xhsvpxk6sbw4fwq5yhnz8kgf5m7g5q3vxpx8qn7bsd3z0sg31"; 61981 + rev = "069e95a4835e38e53d95ce7faf007ca77cd394d3"; 61982 + sha256 = "0xmj9niia63pcb6nq06004nrxp22r3qgwzyjkl47nhlxp8jbd0mr"; 61776 61983 }; 61777 61984 recipeFile = fetchurl { 61778 61985 url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode"; ··· 61976 62183 scpaste = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: 61977 62184 melpaBuild { 61978 62185 pname = "scpaste"; 61979 - version = "20171031.1337"; 62186 + version = "20171101.922"; 61980 62187 src = fetchFromGitHub { 61981 62188 owner = "technomancy"; 61982 62189 repo = "scpaste"; 61983 - rev = "68445166750a46c86dd7f2ffdca14d3c50e431de"; 61984 - sha256 = "0q8cka12gx11wpjz1jk24kn5m1nlqa1xnadlxflhz2x5p9fkscvq"; 62190 + rev = "10559d6b0feb34dc60f039a237052adcca77b5d9"; 62191 + sha256 = "10z8jpi6f3mhq8ymxcv1lc291sqr2kzvgwx8mlmck0bmlys12pqc"; 61985 62192 }; 61986 62193 recipeFile = fetchurl { 61987 62194 url = "https://raw.githubusercontent.com/milkypostman/melpa/9007fb32097bc63731c3615dae9342fcef2558a2/recipes/scpaste"; ··· 63340 63547 shx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 63341 63548 melpaBuild { 63342 63549 pname = "shx"; 63343 - version = "20171004.1113"; 63550 + version = "20171103.1303"; 63344 63551 src = fetchFromGitHub { 63345 63552 owner = "riscy"; 63346 63553 repo = "shx-for-emacs"; 63347 - rev = "e53d798ba4a4c07a3ee1c194840c937b18c02087"; 63348 - sha256 = "0sig9gpa2wn23skwny9jpvwxax0gbwp143anvgkc5gm87iw2jgrd"; 63554 + rev = "2e91b8d58a493afabc2f2d820bd665ab58e43ed1"; 63555 + sha256 = "0mqcx567cxc9h90q2zw350xhj9zn41dpbac3czm5l92cyd8wqrj7"; 63349 63556 }; 63350 63557 recipeFile = fetchurl { 63351 63558 url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx"; ··· 63907 64114 slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: 63908 64115 melpaBuild { 63909 64116 pname = "slime"; 63910 - version = "20170929.1441"; 64117 + version = "20171102.1213"; 63911 64118 src = fetchFromGitHub { 63912 64119 owner = "slime"; 63913 64120 repo = "slime"; 63914 - rev = "c5fa94f86b61f3a14a7348b4fa001a0e1c62cef2"; 63915 - sha256 = "0y9n40knm1r3z0kx0xd5yda5191m5s2ibsxb2sa23qp1yj2qs6xm"; 64121 + rev = "158849d0b0960a41efd83e70087ef93b29029cb4"; 64122 + sha256 = "03iqq3s6syd5bmy1wi7ics80l30dkkm045bq7dhj86c0p1azfmcl"; 63916 64123 }; 63917 64124 recipeFile = fetchurl { 63918 64125 url = "https://raw.githubusercontent.com/milkypostman/melpa/14c60acbfde13d5e9256cea83d4d0d33e037d4b9/recipes/slime"; ··· 64243 64450 smart-compile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 64244 64451 melpaBuild { 64245 64452 pname = "smart-compile"; 64246 - version = "20170827.1050"; 64453 + version = "20171104.2333"; 64247 64454 src = fetchFromGitHub { 64248 64455 owner = "zenitani"; 64249 64456 repo = "elisp"; 64250 - rev = "64258b424e471c749a3399d32aa35b39dfb05222"; 64251 - sha256 = "08hk3kdz2mkp6lmx1fvgax862ibw99yji12c12n23ksjv1qz261z"; 64457 + rev = "2a0c9b33bd97461d100e24df0103d4e5526a30d6"; 64458 + sha256 = "1h0d1rbaprxrwgwi8pq2q93xf9j8q8qy7p42iyywav9ilc6sak6p"; 64252 64459 }; 64253 64460 recipeFile = fetchurl { 64254 64461 url = "https://raw.githubusercontent.com/milkypostman/melpa/93562afd7b62d7535b8010179ba6ac7e8e6280d0/recipes/smart-compile"; ··· 65145 65352 solarized-theme = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 65146 65353 melpaBuild { 65147 65354 pname = "solarized-theme"; 65148 - version = "20170924.1440"; 65355 + version = "20171103.52"; 65149 65356 src = fetchFromGitHub { 65150 65357 owner = "bbatsov"; 65151 65358 repo = "solarized-emacs"; 65152 - rev = "a2595627a793c57fa904ac210a6ca07fe1fef656"; 65153 - sha256 = "1q65mrarmqxsvc27flr6wy6v3yrmpw5i6hax95hh6y50zx3hfsd1"; 65359 + rev = "d06bf199f0e590708452ba32009d069dafa3d347"; 65360 + sha256 = "0zpwf8gf72i74rnmr0ywaynyasj5a8bxqag1kj70pigb4jxdwwyn"; 65154 65361 }; 65155 65362 recipeFile = fetchurl { 65156 65363 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme"; ··· 65530 65737 spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 65531 65738 melpaBuild { 65532 65739 pname = "spacemacs-theme"; 65533 - version = "20171020.531"; 65740 + version = "20171102.1009"; 65534 65741 src = fetchFromGitHub { 65535 65742 owner = "nashamri"; 65536 65743 repo = "spacemacs-theme"; 65537 - rev = "0a5a745c209daafc0e60b8db92993802a9c05fb8"; 65538 - sha256 = "1wnf0jwdavkpv3xz2mni7n29qfp60i28530hmaimlk8mnhb2x94k"; 65744 + rev = "ce45974252536af726e67515271186f92d47e3cc"; 65745 + sha256 = "16gkphggpkach7w1s4qx08i2p53g1w9ps0r0i8a0qfk6rv0myvgh"; 65539 65746 }; 65540 65747 recipeFile = fetchurl { 65541 65748 url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme"; ··· 66432 66639 steam = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 66433 66640 melpaBuild { 66434 66641 pname = "steam"; 66435 - version = "20171008.1327"; 66642 + version = "20171102.541"; 66436 66643 src = fetchFromGitHub { 66437 66644 owner = "Kungsgeten"; 66438 66645 repo = "steam.el"; 66439 - rev = "476da75cce7def2f3323e4a112a500728178e71e"; 66440 - sha256 = "1d23m611p001i846ypv9mz78hqn4wmjnh6cwa2yif9h6m44g1dsf"; 66646 + rev = "9d57a055b0e20fa823542922580e43eb671944a5"; 66647 + sha256 = "0592z17388qd9cakskw7wymxpz7svxqy5mdzi4add0nffdj51qxx"; 66441 66648 }; 66442 66649 recipeFile = fetchurl { 66443 66650 url = "https://raw.githubusercontent.com/milkypostman/melpa/25a45eb6297168cd0ce4c4db5574362addad5c69/recipes/steam"; ··· 66955 67162 sunburn-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 66956 67163 melpaBuild { 66957 67164 pname = "sunburn-theme"; 66958 - version = "20171021.1407"; 67165 + version = "20171101.1126"; 66959 67166 src = fetchFromGitHub { 66960 67167 owner = "mvarela"; 66961 67168 repo = "Sunburn-Theme"; 66962 - rev = "566280a981097b89b19c4bba921f568c77212db6"; 66963 - sha256 = "08a3js02zxqgxrk4afr2n39jf34pnv9mwiykysbhf560blq8gha2"; 67169 + rev = "c57190f87e2e6c5ef6c7fbfd40964eb8f11b32ca"; 67170 + sha256 = "1b2d0iky9w8f0sww4wish55j2s2j1y2v4bjf3lk0yg2ysbspy3vq"; 66964 67171 }; 66965 67172 recipeFile = fetchurl { 66966 67173 url = "https://raw.githubusercontent.com/milkypostman/melpa/bfd68b90234222dbf5907a29d506b6c4e61a372b/recipes/sunburn-theme"; ··· 67270 67477 swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 67271 67478 melpaBuild { 67272 67479 pname = "swiper"; 67273 - version = "20170926.937"; 67480 + version = "20171105.42"; 67274 67481 src = fetchFromGitHub { 67275 67482 owner = "abo-abo"; 67276 67483 repo = "swiper"; 67277 - rev = "96663b77945ab21e4e1b0aab690fc2e926f01f9c"; 67278 - sha256 = "0r691dzs77zdkvjzb787kjg8zvvba8gdj2da9zjb14m4nyjmg9d9"; 67484 + rev = "5d373be194e21f3e29a03fb498b901fcc5e128f9"; 67485 + sha256 = "0ycch0gqhjxg9ffz5y942z908zy4y3yl242dnyskkv3vmkrziwsz"; 67279 67486 }; 67280 67487 recipeFile = fetchurl { 67281 67488 url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; ··· 67417 67624 symbol-overlay = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 67418 67625 melpaBuild { 67419 67626 pname = "symbol-overlay"; 67420 - version = "20171031.658"; 67627 + version = "20171103.2306"; 67421 67628 src = fetchFromGitHub { 67422 67629 owner = "wolray"; 67423 67630 repo = "symbol-overlay"; 67424 - rev = "6076319f57a7e8dbf2fe11250def5a3fa3c0c854"; 67425 - sha256 = "11ny21rbczmkc7ni3kfw94dyc70bxwzn35f9gryxn1ppw48c7zsx"; 67631 + rev = "305ef1d283923d2b0f1cd751f57f71754ab714e6"; 67632 + sha256 = "0j5542283mmdl30syk0k5p6ybb0w3xlnamjrrafdaj618v3anvgv"; 67426 67633 }; 67427 67634 recipeFile = fetchurl { 67428 67635 url = "https://raw.githubusercontent.com/milkypostman/melpa/c2a468ebe1a3e5a35ef40c59a62befbf8960bd7b/recipes/symbol-overlay"; ··· 68910 69117 src = fetchFromGitHub { 68911 69118 owner = "apache"; 68912 69119 repo = "thrift"; 68913 - rev = "a533ea1615e9df935e77b99440cf264c6b417e3e"; 68914 - sha256 = "0nx6amk2jawd5nqkz54sx1x29a8nkpa7h9b4qgn0j7j5sdvfyrxr"; 69120 + rev = "4f77ab8e296d64c57e6ea1c6e3f0f152bc7d6a3a"; 69121 + sha256 = "1l94kmkhqrab0nigaafizxgc68msqaklc7wzdpxxxnfs2yh23idq"; 68915 69122 }; 68916 69123 recipeFile = fetchurl { 68917 69124 url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift"; ··· 69865 70072 treemacs = callPackage ({ ace-window, cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, pfuture, s }: 69866 70073 melpaBuild { 69867 70074 pname = "treemacs"; 69868 - version = "20171101.340"; 70075 + version = "20171103.544"; 69869 70076 src = fetchFromGitHub { 69870 70077 owner = "Alexander-Miller"; 69871 70078 repo = "treemacs"; 69872 - rev = "444f0517a875dbb5b832f3c3270f0ea2a39bc258"; 69873 - sha256 = "0k5rfdck8895s2906f4b213kn1icnrd49217gbm9llzqhskl8hdq"; 70079 + rev = "96228f9e3051f13c14b1bc0799e925053c709965"; 70080 + sha256 = "0y2w215mmv97pj60g42g5v5vadrznvdaifxadm78qplql4015m7b"; 69874 70081 }; 69875 70082 recipeFile = fetchurl { 69876 70083 url = "https://raw.githubusercontent.com/milkypostman/melpa/486f21e99856a77f470d246f3c71cd32d2e61ad6/recipes/treemacs"; ··· 69890 70097 src = fetchFromGitHub { 69891 70098 owner = "Alexander-Miller"; 69892 70099 repo = "treemacs"; 69893 - rev = "444f0517a875dbb5b832f3c3270f0ea2a39bc258"; 69894 - sha256 = "0k5rfdck8895s2906f4b213kn1icnrd49217gbm9llzqhskl8hdq"; 70100 + rev = "96228f9e3051f13c14b1bc0799e925053c709965"; 70101 + sha256 = "0y2w215mmv97pj60g42g5v5vadrznvdaifxadm78qplql4015m7b"; 69895 70102 }; 69896 70103 recipeFile = fetchurl { 69897 70104 url = "https://raw.githubusercontent.com/milkypostman/melpa/a52c2770097fe8968bff7c31ac411b3d9b60972e/recipes/treemacs-evil"; ··· 69911 70118 src = fetchFromGitHub { 69912 70119 owner = "Alexander-Miller"; 69913 70120 repo = "treemacs"; 69914 - rev = "444f0517a875dbb5b832f3c3270f0ea2a39bc258"; 69915 - sha256 = "0k5rfdck8895s2906f4b213kn1icnrd49217gbm9llzqhskl8hdq"; 70121 + rev = "96228f9e3051f13c14b1bc0799e925053c709965"; 70122 + sha256 = "0y2w215mmv97pj60g42g5v5vadrznvdaifxadm78qplql4015m7b"; 69916 70123 }; 69917 70124 recipeFile = fetchurl { 69918 70125 url = "https://raw.githubusercontent.com/milkypostman/melpa/b694918c94e6311745776d451aa2519924beef2d/recipes/treemacs-projectile"; ··· 70033 70240 ts-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 70034 70241 melpaBuild { 70035 70242 pname = "ts-comint"; 70036 - version = "20161006.1034"; 70243 + version = "20171105.2247"; 70037 70244 src = fetchFromGitHub { 70038 70245 owner = "josteink"; 70039 70246 repo = "ts-comint"; 70040 - rev = "53e0326149d74ac13850f052dcdae4a070d63480"; 70041 - sha256 = "0jrl161lkjdk9appn42g8nybj7sdrpvr0h7c48kj4vvsfmlmrikp"; 70247 + rev = "8817dc7b3a6eb78c3cad42e5677c2113274a1963"; 70248 + sha256 = "17cw9710ib80d626vv6bx6vdjdin78h6pja1lsr4r6mz8c5ihwxj"; 70042 70249 }; 70043 70250 recipeFile = fetchurl { 70044 70251 url = "https://raw.githubusercontent.com/milkypostman/melpa/84e7004395083b66fce7ff4676af818bc798058a/recipes/ts-comint"; ··· 70115 70322 tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }: 70116 70323 melpaBuild { 70117 70324 pname = "tuareg"; 70118 - version = "20171101.231"; 70325 + version = "20171105.159"; 70119 70326 src = fetchFromGitHub { 70120 70327 owner = "ocaml"; 70121 70328 repo = "tuareg"; 70122 - rev = "359d0e7a4f75dee8f57557b7cc133ae3a65f78a5"; 70123 - sha256 = "0v8wzifrc99y4dzl1wdkil1df76d5ijl2pasx5qdig69mpf5gj1w"; 70329 + rev = "8dc876c988ce76e3f2e794a68547bd1519b27bcd"; 70330 + sha256 = "1sckf60xkjckh6yz56s44ymavsb4kgxcdc8qaaj4bf32i5a47c5x"; 70124 70331 }; 70125 70332 recipeFile = fetchurl { 70126 70333 url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg"; ··· 71700 71907 vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine }: 71701 71908 melpaBuild { 71702 71909 pname = "vhdl-tools"; 71703 - version = "20171025.514"; 71910 + version = "20171103.1356"; 71704 71911 src = fetchFromGitHub { 71705 71912 owner = "csantosb"; 71706 71913 repo = "vhdl-tools"; 71707 - rev = "b6d07ba21e9073a0e008831bfb82fbddbd0b5e90"; 71708 - sha256 = "1ypj9saprjaxx60fxjl9ab2lb4x9s8szkh3mj23iininx1bxp4wm"; 71914 + rev = "ffd9342ee0d03f14c5bb459583a13c5181b232f1"; 71915 + sha256 = "10jvi88sk7ai6bhgxsm3d0hf1asi3xknyw2ms9k0z7r6d7fkryaf"; 71709 71916 }; 71710 71917 recipeFile = fetchurl { 71711 71918 url = "https://raw.githubusercontent.com/milkypostman/melpa/69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf/recipes/vhdl-tools"; ··· 72308 72515 wand = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 72309 72516 melpaBuild { 72310 72517 pname = "wand"; 72311 - version = "20171031.1103"; 72518 + version = "20171103.513"; 72312 72519 src = fetchFromGitHub { 72313 72520 owner = "cmpitg"; 72314 72521 repo = "wand"; 72315 - rev = "3d0b459c4ae7e0240cb16bd9bd0a0a0dc39d8f99"; 72522 + rev = "83c0c723dae7d8a37e67a9d9f2d00e005b5486ca"; 72316 72523 sha256 = "0wc1gmaz02bfbapwrmmc5r7rcfwqlfr52x3jqk6bhxpiav141yq4"; 72317 72524 }; 72318 72525 recipeFile = fetchurl { ··· 73732 73939 license = lib.licenses.free; 73733 73940 }; 73734 73941 }) {}; 73942 + wordsmith-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 73943 + melpaBuild { 73944 + pname = "wordsmith-mode"; 73945 + version = "20171025.730"; 73946 + src = fetchFromGitHub { 73947 + owner = "istib"; 73948 + repo = "wordsmith-mode"; 73949 + rev = "589a97412138145bea70e0450eeddeb7f138d538"; 73950 + sha256 = "1zm4grysjpynibldvic75awhcmmnjmlkkvslw8bvirmi58qwvwzj"; 73951 + }; 73952 + recipeFile = fetchurl { 73953 + url = "https://raw.githubusercontent.com/milkypostman/melpa/3b5fda506e5b388cd6824d433b89032ed46858dc/recipes/wordsmith-mode"; 73954 + sha256 = "0s6b6dfqn31jdcgs2mlmvwgpr5a4zs4xi8m002ly11c6sn035xb1"; 73955 + name = "wordsmith-mode"; 73956 + }; 73957 + packageRequires = []; 73958 + meta = { 73959 + homepage = "https://melpa.org/#/wordsmith-mode"; 73960 + license = lib.licenses.free; 73961 + }; 73962 + }) {}; 73735 73963 worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper, zoutline }: 73736 73964 melpaBuild { 73737 73965 pname = "worf"; ··· 74155 74383 xah-fly-keys = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 74156 74384 melpaBuild { 74157 74385 pname = "xah-fly-keys"; 74158 - version = "20171026.422"; 74386 + version = "20171101.1546"; 74159 74387 src = fetchFromGitHub { 74160 74388 owner = "xahlee"; 74161 74389 repo = "xah-fly-keys"; 74162 - rev = "6130b10b0f133344d5e6afa7c083d400c8e780ca"; 74163 - sha256 = "08shy433x5papxdbr6q2xsccpg1h0vym9vv6zcaz8vzqw33kr0w7"; 74390 + rev = "c007dee9faeae7b4ef1cfd21c97952768f520f8e"; 74391 + sha256 = "1vkfff3w09h3gbwz9wqlrab29558ms03x5cgzzdxs0mjaq40pvnz"; 74164 74392 }; 74165 74393 recipeFile = fetchurl { 74166 74394 url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-fly-keys"; ··· 75121 75349 yasnippet-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: 75122 75350 melpaBuild { 75123 75351 pname = "yasnippet-snippets"; 75124 - version = "20171031.617"; 75352 + version = "20171106.447"; 75125 75353 src = fetchFromGitHub { 75126 75354 owner = "AndreaCrotti"; 75127 75355 repo = "yasnippet-snippets"; 75128 - rev = "120d35010a29d028634a1e4c6ec9d00c1bea5515"; 75129 - sha256 = "1bd89d9d1m6647kpdsczj6c28r3zkjpqjj7p4qndcrwc9h37r4dv"; 75356 + rev = "6b6dcd9eca4d6d3e982bbc241b51cd6562ef600e"; 75357 + sha256 = "07zblniw1rc24zyaw1xbam46yz8cac4wl6qf6l1ynkbpj5k0x1g5"; 75130 75358 }; 75131 75359 recipeFile = fetchurl { 75132 75360 url = "https://raw.githubusercontent.com/milkypostman/melpa/25b8d4efe2e7833eb95dfdf33aa3ecc34af7a687/recipes/yasnippet-snippets";
+67 -46
pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
··· 3691 3691 caml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 3692 3692 melpaBuild { 3693 3693 pname = "caml"; 3694 - version = "4.6.0pre1"; 3694 + version = "4.6.0"; 3695 3695 src = fetchFromGitHub { 3696 3696 owner = "ocaml"; 3697 3697 repo = "ocaml"; 3698 - rev = "500625015d40f716e19278209faaa44216dcff58"; 3699 - sha256 = "1s10wirx080yl0gd2n09lw5kj8yy1mbiipmcr8gpfyc8dq7kfjna"; 3698 + rev = "0d68080b95016f747b7cb63dd36ccdd42d40016e"; 3699 + sha256 = "1dxg82xqjx4yh4sg2dy48ybn4czv9yq0q3zpr29sxp1grvwvrg2b"; 3700 3700 }; 3701 3701 recipeFile = fetchurl { 3702 3702 url = "https://raw.githubusercontent.com/milkypostman/melpa/d5a3263cdcc229b11a3e96edbf632d56f32c47aa/recipes/caml"; ··· 6437 6437 cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 6438 6438 melpaBuild { 6439 6439 pname = "cython-mode"; 6440 - version = "0.27.2"; 6440 + version = "0.27.3"; 6441 6441 src = fetchFromGitHub { 6442 6442 owner = "cython"; 6443 6443 repo = "cython"; 6444 - rev = "41b4a28d7c7c505d58502c9cf69bde2e33091de0"; 6445 - sha256 = "04k534xyr8816821y0lf2dq24bzvb40v99ijdwgy5qhv4rjxbr18"; 6444 + rev = "8ad16fc871be075f889d5e7c2892db3e4c8ce978"; 6445 + sha256 = "144mqqyaid6w9qx38m88snd3c8qm2k1a73vs21h9cmnp19gigfby"; 6446 6446 }; 6447 6447 recipeFile = fetchurl { 6448 6448 url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; ··· 6521 6521 darcula-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 6522 6522 melpaBuild { 6523 6523 pname = "darcula-theme"; 6524 - version = "1.7"; 6524 + version = "2.0"; 6525 6525 src = fetchFromGitLab { 6526 6526 owner = "fommil"; 6527 6527 repo = "emacs-darcula-theme"; 6528 - rev = "25f179b9fb72c1b95a3907aa4b4a44f8d261e45a"; 6529 - sha256 = "0x1amh0ycjvk218d6cyqizkak47b6r1wczakbfkvnbr0khgkgmr7"; 6528 + rev = "2ecd466ffa7a3157b9ddcd7545b6fb8ad308c976"; 6529 + sha256 = "1h5lssnc1am54hkprnp61bsj5fnm8j556q2gbhljfjgrdwnqv8ky"; 6530 6530 }; 6531 6531 recipeFile = fetchurl { 6532 6532 url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/darcula-theme"; ··· 8123 8123 eacl = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 8124 8124 melpaBuild { 8125 8125 pname = "eacl"; 8126 - version = "1.0.2"; 8126 + version = "1.0.3"; 8127 8127 src = fetchFromGitHub { 8128 8128 owner = "redguardtoo"; 8129 8129 repo = "eacl"; 8130 - rev = "c7a8d705295dc51cc306cb4c2d8773e24c4c74f4"; 8131 - sha256 = "1f3liqrw55v9wnf7g475iabx4pf7gbg2x82mqrf22hhkvxzi2b2b"; 8130 + rev = "ef58d13fbff4b5c49f934cfb9e3fd6ee219ef4b2"; 8131 + sha256 = "0xxxzdr6iddxwx8z4lfay4n9r1ry8571lj2gadz5ycff6f6bxmhb"; 8132 8132 }; 8133 8133 recipeFile = fetchurl { 8134 8134 url = "https://raw.githubusercontent.com/milkypostman/melpa/8223bec7eed97f0bad300af9caa4c8207322d39a/recipes/eacl"; ··· 8627 8627 egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 8628 8628 melpaBuild { 8629 8629 pname = "egison-mode"; 8630 - version = "3.6.4"; 8630 + version = "3.7.0"; 8631 8631 src = fetchFromGitHub { 8632 8632 owner = "egisatoshi"; 8633 8633 repo = "egison3"; 8634 - rev = "62c99118f32dd23a088e2d9c0d6b7b755206cac6"; 8635 - sha256 = "1f0s9pvns4gq6xzp4vp74xxxbmzp06vdv0jgh0x1xy0mfklgll8x"; 8634 + rev = "accb84375895946f0d0bed3917e0193074bd4131"; 8635 + sha256 = "0adxbjbmph186amkyhyl9syypfawarxmyk80zz4c0b6bgxy15rc1"; 8636 8636 }; 8637 8637 recipeFile = fetchurl { 8638 8638 url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode"; ··· 9785 9785 enh-ruby-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9786 9786 melpaBuild { 9787 9787 pname = "enh-ruby-mode"; 9788 - version = "20170417"; 9788 + version = "20171101"; 9789 9789 src = fetchFromGitHub { 9790 9790 owner = "zenspider"; 9791 9791 repo = "enhanced-ruby-mode"; 9792 - rev = "2e483fe316ff993c80eafcf4ce4defd87d97776d"; 9793 - sha256 = "1xzhgmbc9iplxmqm7gc4hqk6nfdhqcrxz8g9kkf5ww3dx1czhiv7"; 9792 + rev = "9467cd7fc8b6bb3caf644b223e3046fc32013ccb"; 9793 + sha256 = "0spsgfkka6sld8ac3m2biydyp8xj84vxa0w7apqvhhmfk3klbbhf"; 9794 9794 }; 9795 9795 recipeFile = fetchurl { 9796 9796 url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode"; ··· 10149 10149 erlang = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 10150 10150 melpaBuild { 10151 10151 pname = "erlang"; 10152 - version = "20.1.3"; 10152 + version = "20.1.4"; 10153 10153 src = fetchFromGitHub { 10154 10154 owner = "erlang"; 10155 10155 repo = "otp"; 10156 - rev = "a98379d0519c28f9bc9b673ed2c09fb1ad52456e"; 10157 - sha256 = "1672yqqh7ql88c6ifv555wvqrj8nyn5a2nph43n2nc43h7hhz17c"; 10156 + rev = "3e8c1ff94c0a73df71daadd4eb782c21c49f22d9"; 10157 + sha256 = "19vd6x20i3pc3ddrjalli937i44z6z2yrdg7ir3gpaghhx8fhcav"; 10158 10158 }; 10159 10159 recipeFile = fetchurl { 10160 10160 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; ··· 11051 11051 evil-nerd-commenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11052 11052 melpaBuild { 11053 11053 pname = "evil-nerd-commenter"; 11054 - version = "3.1.1"; 11054 + version = "3.1.2"; 11055 11055 src = fetchFromGitHub { 11056 11056 owner = "redguardtoo"; 11057 11057 repo = "evil-nerd-commenter"; 11058 - rev = "92bee71aa6fbb36299a4e69e710da786f3694637"; 11059 - sha256 = "1sxwiar17jvqj7plf7jdpwx9kymabr0dsfl7mbkcxpzvrfdlmp12"; 11058 + rev = "76fd0c5692e9852a2d6fc6c0ce0e782792c28ddd"; 11059 + sha256 = "1bydqdk52q8777m234jxp03y2zz23204r1fyq39ks9h9bpglc561"; 11060 11060 }; 11061 11061 recipeFile = fetchurl { 11062 11062 url = "https://raw.githubusercontent.com/milkypostman/melpa/a3e1ff69e7cc95a5b5d628524ad836833f4ee736/recipes/evil-nerd-commenter"; ··· 11195 11195 license = lib.licenses.free; 11196 11196 }; 11197 11197 }) {}; 11198 - evil-smartparens = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: 11198 + evil-smartparens = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: 11199 11199 melpaBuild { 11200 11200 pname = "evil-smartparens"; 11201 - version = "0.3.0"; 11201 + version = "0.4.0"; 11202 11202 src = fetchFromGitHub { 11203 11203 owner = "expez"; 11204 11204 repo = "evil-smartparens"; 11205 - rev = "12521212b8e4a02cbec733882bb89c6fac37301f"; 11206 - sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415"; 11205 + rev = "9fe4eed1c6327197afe6c13bb0771e18908aff00"; 11206 + sha256 = "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl"; 11207 11207 }; 11208 11208 recipeFile = fetchurl { 11209 11209 url = "https://raw.githubusercontent.com/milkypostman/melpa/850898fbfc8e0aeb779e8feae56476d989110e79/recipes/evil-smartparens"; 11210 11210 sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; 11211 11211 name = "evil-smartparens"; 11212 11212 }; 11213 - packageRequires = [ cl-lib emacs evil smartparens ]; 11213 + packageRequires = [ emacs evil smartparens ]; 11214 11214 meta = { 11215 11215 homepage = "https://melpa.org/#/evil-smartparens"; 11216 11216 license = lib.licenses.free; ··· 17141 17141 helm-ext = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 17142 17142 melpaBuild { 17143 17143 pname = "helm-ext"; 17144 - version = "0.1.1"; 17144 + version = "0.1.2"; 17145 17145 src = fetchFromGitHub { 17146 17146 owner = "cute-jumper"; 17147 17147 repo = "helm-ext"; 17148 - rev = "115a3ca9a466fa84c1874ac6175fdf2256c3765c"; 17149 - sha256 = "19bcrgj531par1ayhgwxvzz28fyd7dx5flslxf1vl4qawhn173fz"; 17148 + rev = "c8ac56918b200239b3f73a4e6a031deecc2c5646"; 17149 + sha256 = "08c6n4zr6s3h7y0kk6g51xqs6hs29hkfmn55jfjw6hpimbk3vi1j"; 17150 17150 }; 17151 17151 recipeFile = fetchurl { 17152 17152 url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee74cb0aa3445bc9ae4226c2043ee4de3ac6cd3/recipes/helm-ext"; ··· 22758 22758 magithub = callPackage ({ emacs, fetchFromGitHub, fetchurl, ghub-plus, lib, magit, melpaBuild, s }: 22759 22759 melpaBuild { 22760 22760 pname = "magithub"; 22761 - version = "0.1.3"; 22761 + version = "0.1.4"; 22762 22762 src = fetchFromGitHub { 22763 22763 owner = "vermiculus"; 22764 22764 repo = "magithub"; 22765 - rev = "959e7b259697c79ccf46b95827575d3e15e83d30"; 22766 - sha256 = "19m7qmp5pi5l3mak1j475qxgnpr4kc4dm7qj80qc4m844bkacc4h"; 22765 + rev = "2fcd5eebf3e052234950b3b07e43d26ce632a794"; 22766 + sha256 = "0k5bxxfj60vr58g7rnj562ls8ijb0ia66fdiqpyffi5sf0wan13i"; 22767 22767 }; 22768 22768 recipeFile = fetchurl { 22769 22769 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/magithub"; ··· 24987 24987 }) {}; 24988 24988 notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { 24989 24989 pname = "notmuch"; 24990 - version = "0.25.1"; 24990 + version = "0.25.2"; 24991 24991 src = fetchgit { 24992 24992 url = "git://git.notmuchmail.org/git/notmuch"; 24993 - rev = "949c27144e0b9294267511993a109c29d319a23d"; 24994 - sha256 = "088f6f5696v8zrgbipshns6gla4zmfpj8n4jm66slgip9fcrbpvb"; 24993 + rev = "83f266136369452b859393429b8530efac2e09fb"; 24994 + sha256 = "0idim2yslpjzbzy5hh9qhw1gy0h9p92rs0jrr8d2l9y8nsnh6zzr"; 24995 24995 }; 24996 24996 recipeFile = fetchurl { 24997 24997 url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch"; ··· 25641 25641 src = fetchFromGitHub { 25642 25642 owner = "OmniSharp"; 25643 25643 repo = "omnisharp-emacs"; 25644 - rev = "906e29a702237f039f24c215fdb561a728a3df1b"; 25645 - sha256 = "1l1rzl7y5j2wmlgx7ivivwvwvbn4h7pg5s7yqsk65n9kb59ha8s8"; 25644 + rev = "ad4a19c60f7dc3d52a5b11febdcc9b78930a1e7d"; 25645 + sha256 = "0jc2ap9l0cc636kssld1bqalbriib57sw1rzz45s8r19jqa8w5gm"; 25646 25646 }; 25647 25647 recipeFile = fetchurl { 25648 25648 url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; ··· 32576 32576 shx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 32577 32577 melpaBuild { 32578 32578 pname = "shx"; 32579 - version = "0.0.10"; 32579 + version = "0.0.11"; 32580 32580 src = fetchFromGitHub { 32581 32581 owner = "riscy"; 32582 32582 repo = "shx-for-emacs"; 32583 - rev = "e53d798ba4a4c07a3ee1c194840c937b18c02087"; 32584 - sha256 = "0sig9gpa2wn23skwny9jpvwxax0gbwp143anvgkc5gm87iw2jgrd"; 32583 + rev = "dfeb23f99673479b17b5817aeb5641e7cc0e5a2d"; 32584 + sha256 = "1zljrvanwn37jkc9jpqj8c11dfbqxjz9ivzbpqr0ipskw9gaay7k"; 32585 32585 }; 32586 32586 recipeFile = fetchurl { 32587 32587 url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx"; ··· 33920 33920 ssh-deploy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 33921 33921 melpaBuild { 33922 33922 pname = "ssh-deploy"; 33923 - version = "1.2"; 33923 + version = "1.3"; 33924 33924 src = fetchFromGitHub { 33925 33925 owner = "cjohansson"; 33926 33926 repo = "emacs-ssh-deploy"; 33927 - rev = "dbd8608551bc9e05280415b7b3937b1a151c7718"; 33928 - sha256 = "1045snp3xdfa9nf34b1f0w4ql8kjl5m2jl7imxj5n46g579g9dhr"; 33927 + rev = "5cd1f8080fefb64e6eaa1098cc191db6abb97e23"; 33928 + sha256 = "0pn9wf4svka3rxzy09jarjp3ycz2bvm39898qaikjf0dwaydlqlw"; 33929 33929 }; 33930 33930 recipeFile = fetchurl { 33931 33931 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy"; ··· 37591 37591 packageRequires = [ cl-lib emacs ]; 37592 37592 meta = { 37593 37593 homepage = "https://melpa.org/#/wordgen"; 37594 + license = lib.licenses.free; 37595 + }; 37596 + }) {}; 37597 + wordsmith-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 37598 + melpaBuild { 37599 + pname = "wordsmith-mode"; 37600 + version = "1.0.0"; 37601 + src = fetchFromGitHub { 37602 + owner = "istib"; 37603 + repo = "wordsmith-mode"; 37604 + rev = "41b10f2fe3589da9812395cb417c3dcf906f0969"; 37605 + sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs"; 37606 + }; 37607 + recipeFile = fetchurl { 37608 + url = "https://raw.githubusercontent.com/milkypostman/melpa/3b5fda506e5b388cd6824d433b89032ed46858dc/recipes/wordsmith-mode"; 37609 + sha256 = "0s6b6dfqn31jdcgs2mlmvwgpr5a4zs4xi8m002ly11c6sn035xb1"; 37610 + name = "wordsmith-mode"; 37611 + }; 37612 + packageRequires = []; 37613 + meta = { 37614 + homepage = "https://melpa.org/#/wordsmith-mode"; 37594 37615 license = lib.licenses.free; 37595 37616 }; 37596 37617 }) {};
+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 = "20171030"; 4 + version = "20171106"; 5 5 src = fetchurl { 6 - url = "http://orgmode.org/elpa/org-20171030.tar"; 7 - sha256 = "1g2dyzy1844lli2hhfjnbskn1mskccgaaf0mxb1cm0zhhas8bnfd"; 6 + url = "http://orgmode.org/elpa/org-20171106.tar"; 7 + sha256 = "080zkrbivd0y67ydcqj97c672q6d9d33qgb5z723niy8a8xjrp20"; 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 = "20171030"; 17 + version = "20171106"; 18 18 src = fetchurl { 19 - url = "http://orgmode.org/elpa/org-plus-contrib-20171030.tar"; 20 - sha256 = "0pq2hs5d2i6s036pcs0jn6ld2p1ap08dmbjf17hsh899741mg9cj"; 19 + url = "http://orgmode.org/elpa/org-plus-contrib-20171106.tar"; 20 + sha256 = "1ckh7q7kc72qc1wh4xypfadj9dpnn4xzc6ap4gg428q85bi091h1"; 21 21 }; 22 22 packageRequires = []; 23 23 meta = {
+1 -1
pkgs/applications/graphics/phototonic/default.nix
··· 22 22 23 23 meta = with stdenv.lib; { 24 24 description = "An image viewer and organizer"; 25 - homepage = http://oferkv.github.io/phototonic/; 25 + homepage = https://sourceforge.net/projects/phototonic/; 26 26 license = licenses.gpl3; 27 27 platforms = platforms.linux; 28 28 maintainers = with maintainers; [ pSub ];
+11 -6
pkgs/applications/misc/albert/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, makeWrapper, qtbase, qtsvg, qtx11extras, muparser, cmake }: 1 + { mkDerivation, lib, fetchFromGitHub, makeWrapper, qtbase, qtdeclarative, qtsvg, qtx11extras, muparser, 2 + cmake, python3 }: 2 3 3 4 mkDerivation rec { 4 5 name = "albert-${version}"; 5 - version = "0.12.0"; 6 + version = "0.14.7"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "albertlauncher"; 9 10 repo = "albert"; 10 11 rev = "v${version}"; 11 - sha256 = "120l7hli2l4qj2s126nawc4dsy4qvwvb0svc42hijry4l8imdhkq"; 12 + sha256 = "1ryjrbrbgignhkvsv4021l4am8ml7g8v4bs5cp5jj288k4p2rf4n"; 13 + fetchSubmodules = true; 12 14 }; 13 15 14 16 nativeBuildInputs = [ cmake makeWrapper ]; 15 17 16 - buildInputs = [ qtbase qtsvg qtx11extras muparser ]; 18 + buildInputs = [ qtbase qtdeclarative qtsvg qtx11extras muparser python3 ]; 17 19 18 20 enableParallelBuilding = true; 21 + 22 + # We don't have virtualbox sdk so disable plugin 23 + cmakeFlags = [ "-DBUILD_VIRTUALBOX=OFF" "-DCMAKE_INSTALL_LIBDIR=libs" ]; 19 24 20 25 postPatch = '' 21 - sed -i "/QStringList dirs = {/a \"$out/lib\"," \ 22 - src/lib/albert/src/albert/extensionmanager.cpp 26 + sed -i "/QStringList dirs = {/a \"$out/libs\"," \ 27 + lib/albertcore/src/core/albert.cpp 23 28 ''; 24 29 25 30 preBuild = ''
+6 -1
pkgs/applications/misc/hello/default.nix
··· 1 - { stdenv, fetchipfs }: 1 + { stdenv, fetchipfs, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "hello-2.10"; ··· 21 21 license = stdenv.lib.licenses.gpl3Plus; 22 22 maintainers = [ stdenv.lib.maintainers.eelco ]; 23 23 platforms = stdenv.lib.platforms.all; 24 + }; 25 + 26 + passthru.srcTarball = fetchurl { 27 + inherit (src) url; 28 + sha256 = "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"; 24 29 }; 25 30 }
+1 -1
pkgs/applications/misc/viking/default.nix
··· 41 41 on the map, make new tracks and waypoints, see real-time GPS 42 42 position, etc. 43 43 ''; 44 - homepage = http://viking.sourceforge.net/; 44 + homepage = https://sourceforge.net/projects/viking/; 45 45 license = licenses.gpl2Plus; 46 46 maintainers = with maintainers; [ pSub ]; 47 47 platforms = with platforms; linux;
+2 -2
pkgs/applications/networking/instant-messengers/baresip/default.nix
··· 4 4 , gsm, speex, portaudio, spandsp, libuuid, ccache, libvpx 5 5 }: 6 6 stdenv.mkDerivation rec { 7 - version = "0.5.1"; 7 + version = "0.5.6"; 8 8 name = "baresip-${version}"; 9 9 src=fetchurl { 10 10 url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; 11 - sha256 = "0yi80gi2vb600n7wi6mk81zfdi1n5pg1dsz7458sb3z5cv5gj8yg"; 11 + sha256 = "036hvl652zndqj3kmkv8z9pv7r4d1jxq8b7rg8jf0hh82vpyz38l"; 12 12 }; 13 13 nativeBuildInputs = [ pkgconfig ]; 14 14 buildInputs = [zlib openssl libre librem
+1
pkgs/applications/networking/instant-messengers/mcabber/default.nix
··· 25 25 maintainers = with maintainers; [ pSub ]; 26 26 platforms = with platforms; linux; 27 27 updateWalker = true; 28 + downloadPage = "http://mcabber.com/files/"; 28 29 downloadURLRegexp = "mcabber-[0-9.]+[.]tar[.][a-z0-9]+$"; 29 30 }; 30 31 }
+5 -1
pkgs/applications/office/wpsoffice/default.nix
··· 17 17 "0mi3n9kplf82gd0g2m0np957agy53p4g1qh81pbban49r4n0ajcz" else 18 18 "1dk400ap5qwdhjvn8lnk602f5akayr391fkljxdkrpn5xac01m97"; 19 19 }; 20 - 20 + 21 21 meta = { 22 22 description = "Office program originally named Kingsoft Office"; 23 23 homepage = http://wps-community.org/; ··· 41 41 ]; 42 42 43 43 dontPatchELF = true; 44 + 45 + # wpsoffice uses `/build` in its own build system making nix things there 46 + # references to nix own build directory 47 + noAuditTmpdir = true; 44 48 45 49 installPhase = '' 46 50 prefix=$out/opt/kingsoft/wps-office
+2 -2
pkgs/applications/science/math/pari/default.nix
··· 4 4 stdenv.mkDerivation rec { 5 5 6 6 name = "pari-${version}"; 7 - version = "2.9.1"; 7 + version = "2.9.3"; 8 8 9 9 src = fetchurl { 10 10 url = "http://pari.math.u-bordeaux.fr/pub/pari/unix/${name}.tar.gz"; 11 - sha256 = "0rq7wz9df1xs4acdzzb5dapx8vs6m5py39n2wynw2qv4d2b0ylfw"; 11 + sha256 = "0qqal1lpggd6dvs19svnz0dil86xk0xkcj5s3b7104ibkmvjfsp7"; 12 12 }; 13 13 14 14 buildInputs = [ gmp readline libX11 libpthreadstubs tex perl ];
+2 -2
pkgs/applications/science/math/pari/unstable.nix
··· 1 1 { stdenv, fetchurl, gmp, readline, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.8.1.beta"; 4 + version = "2.9.3"; 5 5 name = "pari-unstable-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pari.math.u-bordeaux.fr/pub/pari/unstable/pari-${version}.tar.gz"; 9 - sha256 = "167dcqrqsblqrd7z5pb8jrs9xqm8138mik0s4ihlqcq6c3wndhv1"; 9 + sha256 = "0qqal1lpggd6dvs19svnz0dil86xk0xkcj5s3b7104ibkmvjfsp7"; 10 10 }; 11 11 12 12 buildInputs = [gmp readline];
+10 -17
pkgs/applications/science/misc/golly/default.nix
··· 1 1 {stdenv, fetchurl, wxGTK, perl, python2, zlib, mesa, libX11}: 2 - let 3 - s = # Generated upstream information 4 - rec { 5 - baseName="golly"; 6 - version="2.8"; 7 - name="${baseName}-${version}"; 8 - hash="0a4vn2hm7h4b47v2iwip1z3n9y8isf79v08aipl2iqms2m3p5204"; 9 - url="mirror://sourceforge/project/golly/golly/golly-2.8/golly-2.8-src.tar.gz"; 10 - sha256="0a4vn2hm7h4b47v2iwip1z3n9y8isf79v08aipl2iqms2m3p5204"; 2 + stdenv.mkDerivation rec { 3 + baseName="golly"; 4 + version = "3.1"; 5 + name="${baseName}-${version}"; 6 + 7 + src = fetchurl { 8 + sha256 = "0dn74k3rylhx023n047lz4z6qrqijfcxi0b6jryqklhmm2n532f7"; 9 + url="mirror://sourceforge/project/golly/golly/golly-${version}/golly-${version}-src.tar.gz"; 11 10 }; 11 + 12 12 buildInputs = [ 13 13 wxGTK perl python2 zlib mesa libX11 14 14 ]; 15 - in 16 - stdenv.mkDerivation rec { 17 - inherit (s) name version; 18 - inherit buildInputs; 19 - src = fetchurl { 20 - inherit (s) url sha256; 21 - }; 22 15 23 16 setSourceRoot = '' 24 17 sourceRoot=$(echo */gui-wx/configure) ··· 37 30 ''; 38 31 39 32 meta = { 40 - inherit (s) version; 33 + inherit version; 41 34 description = "Cellular automata simulation program"; 42 35 license = stdenv.lib.licenses.gpl2; 43 36 maintainers = [stdenv.lib.maintainers.raskin];
+3 -3
pkgs/applications/virtualization/lkl/default.nix
··· 1 1 { stdenv, fetchFromGitHub, bc, python, fuse, libarchive }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "lkl-2017-10-18"; 5 - rev = "bfb315c4612c38427e3239d0a427a125d9ba0ede"; 4 + name = "lkl-2017-11-10"; 5 + rev = "52a6a643c7d1dd3031c0cbec75e1ac7a999f3d57"; 6 6 7 7 outputs = [ "dev" "lib" "out" ]; 8 8 ··· 14 14 inherit rev; 15 15 owner = "lkl"; 16 16 repo = "linux"; 17 - sha256 = "172ccn2gsybnji7giiqq63bvp9nsw8kri88pjlvinwpwsv7x81aa"; 17 + sha256 = "1i5ywrfxqpykjjalwh9g4rwd4s186cqk3j806d327a67xb2ivxnp"; 18 18 }; 19 19 20 20 # Fix a /usr/bin/env reference in here that breaks sandboxed builds
-6
pkgs/data/fonts/anonymous-pro/default.upstream
··· 1 - attribute_name anonymousPro 2 - url http://www.ms-studio.com/FontSales/anonymouspro.html 3 - version_link '/AnonymousPro-.*[.]zip$' 4 - do_overwrite (){ 5 - do_overwrite_just_version 6 - }
-7
pkgs/data/fonts/cm-unicode/default.upstream
··· 1 - attribute_name cm_unicode 2 - url http://sourceforge.net/projects/cm-unicode/files/cm-unicode/ 3 - SF_version_dir 4 - version_link '[-]otf[.]tar[.][a-z0-9]+/download$' 5 - SF_redirect 6 - ensure_hash 7 - do_overwrite() { do_overwrite_just_version; }
+3 -3
pkgs/development/compilers/ghc/8.2.2.nix
··· 9 9 10 10 let 11 11 inherit (bootPkgs) ghc; 12 - version = "8.2.1.20171030"; 12 + version = "8.2.1.20171108"; 13 13 14 14 commonBuildInputs = [ alex autoconf automake ghc happy hscolour perl python3 sphinx ]; 15 15 commonPreConfigure = '' ··· 26 26 name = "ghc-${version}"; 27 27 28 28 src = fetchurl { 29 - url = "https://downloads.haskell.org/~ghc/8.2.2-rc2/${name}-src.tar.xz"; 30 - sha256 = "0m2lx13yscgxmb18nrzhgg5h4kwzcnxdw7rjcqwx4dcwl1k0a724"; 29 + url = "https://downloads.haskell.org/~ghc/8.2.2-rc3/${name}-src.tar.xz"; 30 + sha256 = "13h55vcrs243bv4hv8i4jq80rsx5hvhi09r3rcs562d8zk7k665w"; 31 31 }; 32 32 33 33 postPatch = "patchShebangs .";
+6 -6
pkgs/development/coq-modules/CoLoR/default.nix
··· 1 - { stdenv, fetchurl, coq }: 1 + { stdenv, fetchurl, coq, coqPackages }: 2 2 3 3 if !stdenv.lib.versionAtLeast coq.coq-version "8.6" 4 4 then throw "CoLoR is not available for Coq ${coq.coq-version}" 5 5 else 6 6 7 7 stdenv.mkDerivation { 8 - name = "coq${coq.coq-version}-CoLoR-1.3.0"; 8 + name = "coq${coq.coq-version}-CoLoR-1.4.0"; 9 9 10 10 src = fetchurl { 11 - url = https://gforge.inria.fr/frs/download.php/file/36399/color.1.3.0.tar.gz; 12 - sha256 = "0n7431mc4a5bn9fsyk5167j2vnbxz4vgggjch4pm0x58lda8mxv1"; 11 + url = https://gforge.inria.fr/frs/download.php/file/37205/color.1.4.0.tar.gz; 12 + sha256 = "1jsp9adsh7w59y41ihbwchryjhjpajgs9bhf8rnb4b3hzccqxgag"; 13 13 }; 14 14 15 - buildInputs = [ coq ]; 16 - enableParallelBuilding = true; 15 + buildInputs = [ coq coqPackages.bignums ]; 16 + enableParallelBuilding = false; 17 17 18 18 installPhase = '' 19 19 make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
+14 -6
pkgs/development/coq-modules/QuickChick/default.nix
··· 15 15 }; 16 16 17 17 "8.6" = { 18 - version = "20170616"; 19 - rev = "366ee3f8e599b5cab438a63a09713f44ac544c5a"; 20 - sha256 = "06kwnrfndnr6w8bmaa2s0i0rkqyv081zj55z3vcyn0wr6x6mlsz9"; 18 + version = "20171102"; 19 + rev = "0fdb769e1dc87a278383b44a9f5102cc7ccbafcf"; 20 + sha256 = "0fri4nih40vfb0fbr82dsi631ydkw48xszinq43lyinpknf54y17"; 21 + }; 22 + 23 + "8.7" = { 24 + version = "20171102"; 25 + rev = "ddf746809c211fa7edfdbfe459d5a7e1cca47a44"; 26 + sha256 = "0jg3x0w8p088b8369qx492hjpq09f9h2i0li6ph3pny6hdkpdzsi"; 21 27 }; 22 28 23 29 }."${coq.coq-version}" ··· 32 38 inherit (param) rev sha256; 33 39 }; 34 40 35 - buildInputs = [ coq.ocaml coq.camlp5 ]; 41 + buildInputs = [ coq.ocaml coq.camlp5 coq.findlib ]; 36 42 propagatedBuildInputs = [ coq ssreflect ]; 37 43 38 - enableParallelBuilding = true; 44 + enableParallelBuilding = false; 39 45 40 - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; 46 + installPhase = '' 47 + make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install 48 + ''; 41 49 42 50 meta = with stdenv.lib; { 43 51 homepage = git://github.com/QuickChick/QuickChick.git;
+6 -1
pkgs/development/coq-modules/dpdgraph/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, coq, ocamlPackages }: 2 2 3 3 let param = { 4 + "8.7" = { 5 + version = "0.6.2"; 6 + rev = "d76ddde37d918569945774733b7997e8b24daf51"; 7 + sha256 = "04lnf4b25yarysj848cfl8pd3i3pr3818acyp9hgwdgd1rqmhjwm"; 8 + }; 4 9 "8.6" = { 5 10 version = "0.6.1"; 6 11 rev = "c3b87af6bfa338e18b83f014ebd0e56e1f611663"; ··· 22 27 }; 23 28 24 29 nativeBuildInputs = [ autoreconfHook ]; 25 - buildInputs = [ coq ] 30 + buildInputs = [ coq coq.camlp5 ] 26 31 ++ (with ocamlPackages; [ ocaml findlib ocamlgraph ]); 27 32 28 33 preInstall = ''
+45
pkgs/development/coq-modules/equations/default.nix
··· 1 + { stdenv, fetchFromGitHub, coq }: 2 + 3 + let param = 4 + { 5 + "8.6" = { 6 + version = "1.0-beta"; 7 + rev = "v1.0-beta"; 8 + sha256 = "00pzlh5ij7s2hmpvimq1hjq3fjf0nrk997l3dl51kigx5r5dnvxd"; 9 + }; 10 + 11 + "8.7" = { 12 + version = "cdf8c53"; 13 + rev = "cdf8c53f1f2274b29506f53bff476409ce717dc5"; 14 + sha256 = "0ipjzmviwnp0ippbkn03ld4j4j0dkzmyidmj4dvpdvymrkv31ai1"; 15 + }; 16 + 17 + }."${coq.coq-version}" 18 + ; in 19 + 20 + stdenv.mkDerivation rec { 21 + 22 + name = "coq${coq.coq-version}-equations-${version}"; 23 + version = "${param.version}"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "mattam82"; 27 + repo = "Coq-Equations"; 28 + rev = "${param.rev}"; 29 + sha256 = "${param.sha256}"; 30 + }; 31 + 32 + buildInputs = [ coq.ocaml coq.camlp5 coq.findlib coq ]; 33 + 34 + preBuild = "coq_makefile -f _CoqProject -o Makefile"; 35 + 36 + installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; 37 + 38 + meta = with stdenv.lib; { 39 + homepage = https://mattam82.github.io/Coq-Equations/; 40 + description = "A plugin for Coq to add dependent pattern-matching"; 41 + maintainers = with maintainers; [ jwiegley ]; 42 + platforms = coq.meta.platforms; 43 + }; 44 + 45 + }
+2 -2
pkgs/development/coq-modules/interval/default.nix
··· 1 - { stdenv, fetchurl, which, coq, coquelicot, flocq, mathcomp }: 1 + { stdenv, fetchurl, which, coq, coquelicot, flocq, mathcomp, bignums }: 2 2 3 3 let param = 4 4 if stdenv.lib.versionAtLeast coq.coq-version "8.5" ··· 21 21 }; 22 22 23 23 nativeBuildInputs = [ which ]; 24 - buildInputs = [ coq ]; 24 + buildInputs = [ coq bignums ]; 25 25 propagatedBuildInputs = [ coquelicot flocq mathcomp ]; 26 26 27 27 configurePhase = "./configure --libdir=$out/lib/coq/${coq.coq-version}/user-contrib/Interval";
+26 -4
pkgs/development/coq-modules/mathcomp/default.nix
··· 2 2 3 3 let param = 4 4 { 5 - version = "1.6.1"; 6 - url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz; 7 - sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw"; 8 - }; in 5 + "8.4" = { 6 + version = "1.6.1"; 7 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz; 8 + sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw"; 9 + }; 10 + 11 + "8.5" = { 12 + version = "1.6.1"; 13 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz; 14 + sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw"; 15 + }; 16 + 17 + "8.6" = { 18 + version = "1.6.4"; 19 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz; 20 + sha256 = "0qmjjb6jsxmmf4gpw10r30rmrvwqgzirvvgyy41mz2vhgwis8wn6"; 21 + }; 22 + 23 + "8.7" = { 24 + version = "1.6.4"; 25 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz; 26 + sha256 = "0qmjjb6jsxmmf4gpw10r30rmrvwqgzirvvgyy41mz2vhgwis8wn6"; 27 + }; 28 + 29 + }."${coq.coq-version}" 30 + ; in 9 31 10 32 callPackage ./generic.nix { 11 33 name = "coq${coq.coq-version}-mathcomp-${param.version}";
+53
pkgs/development/coq-modules/metalib/default.nix
··· 1 + { stdenv, fetchgit, coq, ocamlPackages, haskellPackages, which, ott 2 + }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "metalib-${coq.coq-version}-${version}"; 6 + version = "20170713"; 7 + 8 + src = fetchgit { 9 + url = https://github.com/plclub/metalib.git; 10 + rev = "44e40aa082452dd333fc1ca2d2cc55311519bd52"; 11 + sha256 = "1pra0nvx69q8d4bvpcvh9ngic1cy6z1chi03x56nisfqnc61b6y9"; 12 + }; 13 + 14 + # The 'lngen' command-line utility is built from Haskell sources 15 + lngen = with haskellPackages; mkDerivation { 16 + pname = "lngen"; 17 + version = "0.0.1"; 18 + src = fetchgit { 19 + url = https://github.com/plclub/lngen; 20 + rev = "ea73ad315de33afd25f87ca738c71f358f1cd51c"; 21 + sha256 = "1a0sj8n3lmsl1wlnqfy176k9lb9s8rl422bvg3ihl2i70ql8wisd"; 22 + }; 23 + isLibrary = true; 24 + isExecutable = true; 25 + libraryHaskellDepends = [ base containers mtl parsec syb ]; 26 + executableHaskellDepends = [ base ]; 27 + homepage = https://github.com/plclub/lngen; 28 + description = "Tool for generating Locally Nameless definitions and proofs in Coq, working together with Ott"; 29 + license = stdenv.lib.licenses.mit; 30 + }; 31 + 32 + buildInputs = [ coq.ocaml coq.camlp5 which coq lngen ott ] 33 + ++ (with ocamlPackages; [ findlib ]); 34 + propagatedBuildInputs = [ coq ]; 35 + 36 + enableParallelBuilding = true; 37 + 38 + buildPhase = '' 39 + (cd Metalib; make) 40 + ''; 41 + 42 + installPhase = '' 43 + (cd Metalib; make -f CoqSrc.mk DSTROOT=/ COQLIB=$out/lib/coq/${coq.coq-version}/ install) 44 + ''; 45 + 46 + meta = with stdenv.lib; { 47 + homepage = https://github.com/plclub/metalib; 48 + license = licenses.mit; 49 + maintainers = [ maintainers.jwiegley ]; 50 + platforms = coq.meta.platforms; 51 + }; 52 + 53 + }
+26 -4
pkgs/development/coq-modules/ssreflect/default.nix
··· 2 2 3 3 let param = 4 4 { 5 - version = "1.6.1"; 6 - url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz; 7 - sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw"; 8 - }; in 5 + "8.4" = { 6 + version = "1.6.1"; 7 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz; 8 + sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw"; 9 + }; 10 + 11 + "8.5" = { 12 + version = "1.6.1"; 13 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.1.tar.gz; 14 + sha256 = "1j9ylggjzrxz1i2hdl2yhsvmvy5z6l4rprwx7604401080p5sgjw"; 15 + }; 16 + 17 + "8.6" = { 18 + version = "1.6.4"; 19 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz; 20 + sha256 = "0qmjjb6jsxmmf4gpw10r30rmrvwqgzirvvgyy41mz2vhgwis8wn6"; 21 + }; 22 + 23 + "8.7" = { 24 + version = "1.6.4"; 25 + url = https://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz; 26 + sha256 = "0qmjjb6jsxmmf4gpw10r30rmrvwqgzirvvgyy41mz2vhgwis8wn6"; 27 + }; 28 + 29 + }."${coq.coq-version}" 30 + ; in 9 31 10 32 callPackage ./generic.nix { 11 33 name = "coq${coq.coq-version}-ssreflect-${param.version}";
+14 -4
pkgs/development/haskell-modules/configuration-common.nix
··· 65 65 options = dontCheck super.options; 66 66 statistics = dontCheck super.statistics; 67 67 68 - # segfault due to missing return: https://github.com/haskell/c2hs/pull/184 69 - c2hs = dontCheck super.c2hs; 70 - 71 68 # https://github.com/gilith/hol/pull/1 72 69 hol = appendPatch (doJailbreak super.hol) (pkgs.fetchpatch { 73 70 name = "hol.patch"; ··· 98 95 name = "git-annex-${drv.version}-src"; 99 96 url = "git://git-annex.branchable.com/"; 100 97 rev = "refs/tags/" + drv.version; 101 - sha256 = "0iz0yz0bwkmpza5qahsxr9plg1ylmkv7znp1a8f0z65px7f300an"; 98 + sha256 = "14449sllp81d23mnjwn1m658kzry5qvww2ykxkbkdcrlz6kl6dy0"; 102 99 }; 103 100 })).override { 104 101 dbus = if pkgs.stdenv.isLinux then self.dbus else null; ··· 978 975 979 976 # missing dependencies: Glob >=0.7.14 && <0.8, data-fix ==0.0.4 980 977 stack2nix = doJailbreak super.stack2nix; 978 + 979 + # Hacks to work around https://github.com/haskell/c2hs/issues/192. 980 + c2hs = (overrideCabal super.c2hs { 981 + version = "0.26.2-28-g8b79823"; 982 + doCheck = false; 983 + src = pkgs.fetchFromGitHub { 984 + owner = "deech"; 985 + repo = "c2hs"; 986 + rev = "8b79823c32e234c161baec67fdf7907952ca62b8"; 987 + sha256 = "0hyrcyssclkdfcw2kgcark8jl869snwnbrhr9k0a9sbpk72wp7nz"; 988 + }; 989 + }).override { language-c = self.language-c_0_7_0; }; 990 + 981 991 }
+244 -65
pkgs/development/haskell-modules/hackage-packages.nix
··· 18022 18022 ({ mkDerivation, base }: 18023 18023 mkDerivation { 18024 18024 pname = "TypeNat"; 18025 - version = "0.4.0.1"; 18026 - sha256 = "1wq4fn4zbmkdg0vwy47j0mxf87z32c1q9rwzsn3h9jj3mlmz8bp6"; 18025 + version = "0.5.0.0"; 18026 + sha256 = "1css4pb2x514s396c35brghgn3pgysdps8k09k1wcx5k2qpg90cx"; 18027 18027 libraryHaskellDepends = [ base ]; 18028 18028 homepage = "https://github.com/avieth/TypeNat"; 18029 18029 description = "Some Nat-indexed types for GHC"; ··· 40984 40984 license = stdenv.lib.licenses.bsd3; 40985 40985 }) {}; 40986 40986 40987 - "cassava-conduit_0_4_0_0" = callPackage 40987 + "cassava-conduit_0_4_0_1" = callPackage 40988 40988 ({ mkDerivation, array, base, bifunctors, bytestring, cassava 40989 40989 , conduit, conduit-extra, containers, criterion, mtl, QuickCheck 40990 40990 , text 40991 40991 }: 40992 40992 mkDerivation { 40993 40993 pname = "cassava-conduit"; 40994 - version = "0.4.0.0"; 40995 - sha256 = "1pl3vbkyjvgz08ijm75rdxnxx5h27mya7bgzi9jpws7v2dwxlg22"; 40994 + version = "0.4.0.1"; 40995 + sha256 = "0y4zlr0k3hcwh8b9ly1aslpz4fbns7xw2h8jwghfl7zpi52zlj9y"; 40996 40996 libraryHaskellDepends = [ 40997 40997 array base bifunctors bytestring cassava conduit conduit-extra 40998 40998 containers mtl text ··· 49219 49219 }: 49220 49220 mkDerivation { 49221 49221 pname = "content-store"; 49222 - version = "0.1.0"; 49223 - sha256 = "1qimbnqfvnl7zhcpklnzp2n7s7swq5knif6li29fyvfb6ls1471c"; 49222 + version = "0.1.1"; 49223 + sha256 = "1rzapw039a2k4g5s0vlw4mm6hrq35xzj6iksp0qpq87150bzy6pp"; 49224 49224 libraryHaskellDepends = [ 49225 49225 aeson base bytestring cond conduit conduit-combinators 49226 49226 conduit-extra cryptonite directory filepath htoml memory ··· 57178 57178 }: 57179 57179 mkDerivation { 57180 57180 pname = "deiko-config"; 57181 - version = "0.5.0.0"; 57182 - sha256 = "0zhi173mm905aqh52fsw1c9y3hxk07yc1g2s0rrjr75cdl7ssljy"; 57181 + version = "0.5.0.1"; 57182 + sha256 = "0jcnidr4b52n12byx96y6k25949xwn3krby691la58jnvgmi22dr"; 57183 57183 libraryHaskellDepends = [ 57184 57184 array base containers exceptions mtl parsec text transformers 57185 57185 ]; 57186 - homepage = "http://github.com/YoEight/deiko-config"; 57186 + homepage = "https://github.com/YoEight/deiko-config"; 57187 57187 description = "Small and typesafe configuration library"; 57188 57188 license = stdenv.lib.licenses.bsd3; 57189 57189 hydraPlatforms = stdenv.lib.platforms.none; ··· 59464 59464 }: 59465 59465 mkDerivation { 59466 59466 pname = "diplomacy"; 59467 - version = "0.1.0.0"; 59468 - sha256 = "0ynq3khwxwiazqlfibd353cqbha5n55576picrx98w3lbnqv3g47"; 59467 + version = "0.2.0.0"; 59468 + sha256 = "0n0vqc65rjkbplamjhc3zx0ahlx6lf72yyqrkd2d7b03jzfmjvfq"; 59469 59469 libraryHaskellDepends = [ 59470 59470 base containers HUnit parsec transformers TypeNat 59471 59471 ]; 59472 59472 homepage = "https://github.com/avieth/diplomacy"; 59473 - description = "The board game Diplomacy, spoken in Haskell"; 59473 + description = "Diplomacy board game"; 59474 59474 license = stdenv.lib.licenses.bsd3; 59475 59475 hydraPlatforms = stdenv.lib.platforms.none; 59476 59476 }) {}; ··· 59988 59988 }: 59989 59989 mkDerivation { 59990 59990 pname = "diskhash"; 59991 - version = "0.0.2.3"; 59992 - sha256 = "08g484knhw96mlk5qa6cx1cm9kblxrz8979c9xcvmidgj44phb8z"; 59991 + version = "0.0.3.2"; 59992 + sha256 = "0sfm7x9pqfbd6p894ivq212ckd7sj2sgdgsdjv5dip2pb95x3i78"; 59993 59993 libraryHaskellDepends = [ base bytestring ]; 59994 59994 testHaskellDepends = [ 59995 59995 base bytestring directory HUnit QuickCheck test-framework ··· 72283 72283 }: 72284 72284 mkDerivation { 72285 72285 pname = "fluid-idl"; 72286 - version = "0.0.2"; 72287 - sha256 = "1qcsdnjwz0gcn8z6ss27f3a687fi47cmm95a9rfag42gvvlwyr9z"; 72286 + version = "0.0.4"; 72287 + sha256 = "1kdiq6mw01dr85ii7vg7bsw8m260y6njjf5afx3p718hsxwiw4yr"; 72288 72288 libraryHaskellDepends = [ 72289 72289 aeson base bytestring containers errors exceptions lifted-async 72290 72290 monad-control monad-logger mtl random safe-exceptions scientific ··· 72968 72968 }: 72969 72969 mkDerivation { 72970 72970 pname = "forest-fire"; 72971 - version = "0.2.1"; 72972 - sha256 = "007jx5iylhfxjdq7x3ffn1cx27wy7201wvxw23w5nds48vfna6ia"; 72971 + version = "0.2.2"; 72972 + sha256 = "053gp1wmzfhn26gq0awhz3fas8vcjbx953cis4r4ahfzwvy71r7r"; 72973 72973 isLibrary = true; 72974 72974 isExecutable = true; 72975 72975 libraryHaskellDepends = [ ··· 77756 77756 ({ mkDerivation, base, process, shake, unordered-containers }: 77757 77757 mkDerivation { 77758 77758 pname = "ghc-make"; 77759 - version = "0.3.2"; 77760 - sha256 = "10vbibmgssb1ichxha92q5mqlaglhkcv4xxiikq4mh3l3bgzw6bj"; 77759 + version = "0.3.3"; 77760 + sha256 = "17rsj6x49iv4vk8vfgqw5y5vxk97lh1b5za07m2aijk4js7rqm75"; 77761 77761 isLibrary = false; 77762 77762 isExecutable = true; 77763 77763 executableHaskellDepends = [ ··· 79800 79800 }: 79801 79801 mkDerivation { 79802 79802 pname = "git-annex"; 79803 - version = "6.20171026"; 79804 - sha256 = "0i44cfxp5wy6y527l9jbj83ilkxilp4jm7106q70czls0hnx6yij"; 79803 + version = "6.20171109"; 79804 + sha256 = "15fl5vazl38yfqi3iz9dqfqkav031wyd306rz1hlgxdqplayz3y5"; 79805 79805 configureFlags = [ 79806 79806 "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" 79807 79807 "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" ··· 100798 100798 ({ mkDerivation, aeson, aeson-pretty, attoparsec 100799 100799 , attoparsec-iso8601, base, bytestring, conduit 100800 100800 , conduit-combinators, conduit-extra, containers, criterion 100801 - , directory, hspec, hspec-attoparsec, hspec-core 100801 + , deepseq, directory, extra, hspec, hspec-attoparsec, hspec-core 100802 100802 , hspec-expectations, ip, lifted-base, monad-control, monad-loops 100803 100803 , monad-par, mtl, optparse-applicative, permute, random, resourcet 100804 - , text, time, transformers-base, unix, unordered-containers, word8 100805 - , yaml, zeromq4-conduit, zeromq4-haskell 100804 + , stm-conduit, text, time, transformers-base, unix 100805 + , unordered-containers, word8, yaml, zeromq4-conduit 100806 + , zeromq4-haskell 100806 100807 }: 100807 100808 mkDerivation { 100808 100809 pname = "hnormalise"; 100809 - version = "0.4.8.0"; 100810 - sha256 = "1s4ilaw574xhvfhsl9afvb7khz50sg7bag6hckbfadf1h4mhblal"; 100810 + version = "0.5.0.0"; 100811 + sha256 = "01xiqkm94amm7kdwvdgcm3f4slylmvc04qxkbddh2xsm8wz4c9a2"; 100811 100812 isLibrary = true; 100812 100813 isExecutable = true; 100813 100814 libraryHaskellDepends = [ 100814 100815 aeson aeson-pretty attoparsec attoparsec-iso8601 base bytestring 100815 - containers directory ip permute resourcet text time 100816 - unordered-containers yaml 100816 + conduit containers deepseq directory ip monad-loops permute 100817 + resourcet text time unordered-containers yaml zeromq4-conduit 100818 + zeromq4-haskell 100817 100819 ]; 100818 100820 executableHaskellDepends = [ 100819 100821 aeson aeson-pretty attoparsec attoparsec-iso8601 base bytestring 100820 - conduit conduit-combinators conduit-extra containers directory ip 100821 - lifted-base monad-control monad-loops monad-par mtl 100822 - optparse-applicative resourcet text time transformers-base unix 100823 - word8 yaml zeromq4-conduit zeromq4-haskell 100822 + conduit conduit-combinators conduit-extra containers deepseq 100823 + directory extra ip lifted-base monad-control monad-loops monad-par 100824 + mtl optparse-applicative resourcet stm-conduit text time 100825 + transformers-base unix word8 yaml zeromq4-conduit zeromq4-haskell 100824 100826 ]; 100825 100827 testHaskellDepends = [ 100826 100828 aeson attoparsec attoparsec-iso8601 base conduit-extra hspec ··· 109849 109851 }: 109850 109852 mkDerivation { 109851 109853 pname = "hw-kafka-client"; 109852 - version = "2.1.2"; 109853 - sha256 = "0q6dclcax4r9mqy8kclz0ipsbgn5zsrgwz5ygl67xz2wbzbhb2n5"; 109854 + version = "2.1.3"; 109855 + sha256 = "006lkyjwjsn1npznzv9ysqsap2f7w3gsxn8rimlpv0manvk8h5bg"; 109854 109856 isLibrary = true; 109855 109857 isExecutable = true; 109856 109858 libraryHaskellDepends = [ ··· 113925 113927 license = stdenv.lib.licenses.bsd3; 113926 113928 }) {}; 113927 113929 113930 + "inspection-testing" = callPackage 113931 + ({ mkDerivation, base, bytestring, containers, generic-lens, ghc 113932 + , template-haskell, text 113933 + }: 113934 + mkDerivation { 113935 + pname = "inspection-testing"; 113936 + version = "0.1"; 113937 + sha256 = "126nxs5q6n2swdgbsa2l7ai7m2ad3br8nh6maskd99cfpji24gjn"; 113938 + libraryHaskellDepends = [ base containers ghc template-haskell ]; 113939 + testHaskellDepends = [ base bytestring generic-lens text ]; 113940 + homepage = "https://github.com/nomeata/inspection-testing"; 113941 + description = "GHC plugin to do inspection esting"; 113942 + license = stdenv.lib.licenses.mit; 113943 + }) {}; 113944 + 113928 113945 "inspector-wrecker" = callPackage 113929 113946 ({ mkDerivation, aeson, base, bytestring, case-insensitive 113930 113947 , connection, data-default, http-client, http-client-tls ··· 127893 127910 }: 127894 127911 mkDerivation { 127895 127912 pname = "log-warper"; 127896 - version = "1.5.2"; 127897 - sha256 = "002b168wv9ij6401scqhya4b3syfrxpyv3ndzbb71snj4wb51hvf"; 127913 + version = "1.5.3"; 127914 + sha256 = "1rp9jarjp867j9fcqkbp9b4mv3f0hywskw738hl915608iijxc7c"; 127898 127915 isLibrary = true; 127899 127916 isExecutable = true; 127900 127917 libraryHaskellDepends = [ ··· 130008 130025 license = stdenv.lib.licenses.publicDomain; 130009 130026 }) {}; 130010 130027 130028 + "magicbane_0_1_3" = callPackage 130029 + ({ mkDerivation, aeson, aeson-qq, attoparsec, base, classy-prelude 130030 + , conduit, conduit-combinators, data-default, data-has, either 130031 + , ekg-core, ekg-wai, envy, errors, fast-logger, http-api-data 130032 + , http-client, http-client-tls, http-conduit, http-date 130033 + , http-link-header, http-media, http-types, lifted-async 130034 + , mime-types, monad-control, monad-logger, monad-metrics, mtl 130035 + , network, network-uri, raw-strings-qq, refined, servant 130036 + , servant-server, split, string-conversions, text, transformers 130037 + , unordered-containers, wai, wai-cli, wai-middleware-metrics 130038 + }: 130039 + mkDerivation { 130040 + pname = "magicbane"; 130041 + version = "0.1.3"; 130042 + sha256 = "164zljyc0wvisj8xb6q5j0xlhjhxw7068jl9s9y4rkd3x637j3as"; 130043 + libraryHaskellDepends = [ 130044 + aeson aeson-qq attoparsec base classy-prelude conduit 130045 + conduit-combinators data-default data-has either ekg-core ekg-wai 130046 + envy errors fast-logger http-api-data http-client http-client-tls 130047 + http-conduit http-date http-link-header http-media http-types 130048 + lifted-async mime-types monad-control monad-logger monad-metrics 130049 + mtl network network-uri raw-strings-qq refined servant 130050 + servant-server split string-conversions text transformers 130051 + unordered-containers wai wai-cli wai-middleware-metrics 130052 + ]; 130053 + homepage = "https://github.com/myfreeweb/magicbane#readme"; 130054 + description = "A web framework that integrates Servant, ClassyPrelude, EKG, fast-logger, wai-cli…"; 130055 + license = stdenv.lib.licenses.publicDomain; 130056 + hydraPlatforms = stdenv.lib.platforms.none; 130057 + }) {}; 130058 + 130011 130059 "magico" = callPackage 130012 130060 ({ mkDerivation, base, hmatrix, transformers, utility-ht }: 130013 130061 mkDerivation { ··· 134954 135002 license = stdenv.lib.licenses.bsd3; 134955 135003 }) {}; 134956 135004 134957 - "model_0_4_1" = callPackage 135005 + "model_0_4_2" = callPackage 134958 135006 ({ mkDerivation, base, containers, convertible, deepseq, doctest 134959 - , filemanip, ghc-prim, pretty, tasty, tasty-hunit, tasty-quickcheck 134960 - , transformers 135007 + , either, filemanip, ghc-prim, pretty, tasty, tasty-hunit 135008 + , tasty-quickcheck, transformers 134961 135009 }: 134962 135010 mkDerivation { 134963 135011 pname = "model"; 134964 - version = "0.4.1"; 134965 - sha256 = "115apma3mbvpskd5kbgccs4g4d1n9g5lj62bd9appd0d0i8rskf8"; 135012 + version = "0.4.2"; 135013 + sha256 = "0ynv6fwns4ix0nhz8b3aqsw6q9avn7n60spakhpa30lya9asinjb"; 134966 135014 libraryHaskellDepends = [ 134967 - base containers convertible deepseq pretty transformers 135015 + base containers convertible deepseq either pretty transformers 134968 135016 ]; 134969 135017 testHaskellDepends = [ 134970 135018 base containers doctest filemanip ghc-prim pretty tasty tasty-hunit ··· 135001 135049 }: 135002 135050 mkDerivation { 135003 135051 pname = "modern-uri"; 135004 - version = "0.1.0.0"; 135005 - sha256 = "04k6v2mdkwdwvphfhhm7dwgy12n3kwxi02azkpzng0qa24vb1w1r"; 135052 + version = "0.1.1.0"; 135053 + sha256 = "0j2h4rh8ws4zcc47kcs0q8zr543aqnc1i6y4vkv2a8a5v2h2wzxr"; 135006 135054 libraryHaskellDepends = [ 135007 135055 base bytestring containers contravariant deepseq exceptions 135008 135056 megaparsec profunctors QuickCheck template-haskell text ··· 136033 136081 "monad-persist" = callPackage 136034 136082 ({ mkDerivation, base, exceptions, hspec, monad-control 136035 136083 , monad-logger, mtl, persistent, persistent-sqlite 136036 - , persistent-template, text, transformers-base 136084 + , persistent-template, text, transformers, transformers-base 136037 136085 }: 136038 136086 mkDerivation { 136039 136087 pname = "monad-persist"; 136040 - version = "0.0.1.4"; 136041 - sha256 = "032732piflwzx43rdndbjy757pmkm68p28bb6znz6dsj7r0xv349"; 136088 + version = "0.0.2.0"; 136089 + sha256 = "17jq41r7bmycnzz028pii14cm0qjvclj01z78aj6aj1h4mlwlbc1"; 136090 + revision = "1"; 136091 + editedCabalFile = "0sghbyfd7jpwi80hivzbh2z77zl9kpzlvablkfx2w0q70hnbbrvd"; 136042 136092 libraryHaskellDepends = [ 136043 136093 base exceptions monad-control monad-logger mtl persistent text 136044 - transformers-base 136094 + transformers transformers-base 136045 136095 ]; 136046 136096 testHaskellDepends = [ 136047 136097 base hspec monad-control monad-logger persistent persistent-sqlite ··· 145217 145267 license = stdenv.lib.licenses.bsd3; 145218 145268 }) {}; 145219 145269 145220 - "opaleye-trans_0_4_0" = callPackage 145270 + "opaleye-trans_0_4_1" = callPackage 145221 145271 ({ mkDerivation, base, mtl, opaleye, postgresql-simple 145222 145272 , product-profunctors, transformers 145223 145273 }: 145224 145274 mkDerivation { 145225 145275 pname = "opaleye-trans"; 145226 - version = "0.4.0"; 145227 - sha256 = "0zzz0b4af2p9r66hbxphsbmdg2524bghawqkkj5r3r4nsk97rnp9"; 145276 + version = "0.4.1"; 145277 + sha256 = "0k1nwx7m7mhc3wsh35zafgmgb71zyyych6nf90zrprh6hyy1ibvk"; 145228 145278 isLibrary = true; 145229 145279 isExecutable = true; 145230 145280 libraryHaskellDepends = [ ··· 159489 159539 "ptr" = callPackage 159490 159540 ({ mkDerivation, base, base-prelude, bug, bytestring, contravariant 159491 159541 , mtl, profunctors, quickcheck-instances, rerebase, semigroups 159492 - , tasty, tasty-hunit, tasty-quickcheck, text, transformers 159542 + , tasty, tasty-hunit, tasty-quickcheck, text, time, transformers 159493 159543 }: 159494 159544 mkDerivation { 159495 159545 pname = "ptr"; 159496 - version = "0.15.6"; 159497 - sha256 = "183g0zw2k5zfdv3l8xb11zwzcdp20sp0v716s7hix01nsh34nz4k"; 159546 + version = "0.15.7"; 159547 + sha256 = "0zbyr8kzz47c1rfjpw8rk0kh4rys8qd8vihz69wmnxgy0fa4z7l4"; 159498 159548 libraryHaskellDepends = [ 159499 159549 base base-prelude bug bytestring contravariant mtl profunctors 159500 - semigroups text transformers 159550 + semigroups text time transformers 159501 159551 ]; 159502 159552 testHaskellDepends = [ 159503 159553 bug quickcheck-instances rerebase tasty tasty-hunit ··· 161485 161535 license = stdenv.lib.licenses.mit; 161486 161536 }) {}; 161487 161537 161538 + "quickcheck-special_0_1_0_6" = callPackage 161539 + ({ mkDerivation, base, QuickCheck, special-values }: 161540 + mkDerivation { 161541 + pname = "quickcheck-special"; 161542 + version = "0.1.0.6"; 161543 + sha256 = "1dhwgy1jwglp4y3nbysr1i182415aibqlcsrvwxn2c5x162qjwwm"; 161544 + libraryHaskellDepends = [ base QuickCheck special-values ]; 161545 + homepage = "https://github.com/minad/quickcheck-special#readme"; 161546 + description = "Edge cases and special values for QuickCheck Arbitrary instances"; 161547 + license = stdenv.lib.licenses.mit; 161548 + hydraPlatforms = stdenv.lib.platforms.none; 161549 + }) {}; 161550 + 161488 161551 "quickcheck-state-machine" = callPackage 161489 161552 ({ mkDerivation, ansi-wl-pprint, async, base, containers 161490 161553 , lifted-async, lifted-base, monad-control, mtl, QuickCheck ··· 178416 178479 license = stdenv.lib.licenses.bsd3; 178417 178480 }) {}; 178418 178481 178482 + "silvi" = callPackage 178483 + ({ mkDerivation, base, bytestring, chronos, http-types, ip 178484 + , quantification, savage, text 178485 + }: 178486 + mkDerivation { 178487 + pname = "silvi"; 178488 + version = "0.0.2"; 178489 + sha256 = "1rls25wifkgkz1fg4xw4bvpxa1807dp1h2q8kk7j7if7b66pj0cx"; 178490 + libraryHaskellDepends = [ 178491 + base bytestring chronos http-types ip quantification savage text 178492 + ]; 178493 + homepage = "https://github.com/chessai/silvi#readme"; 178494 + description = "A generator for different kinds of logs"; 178495 + license = stdenv.lib.licenses.bsd3; 178496 + }) {}; 178497 + 178419 178498 "simd" = callPackage 178420 178499 ({ mkDerivation, base, ghc-prim, primitive, vector }: 178421 178500 mkDerivation { ··· 179556 179635 hydraPlatforms = stdenv.lib.platforms.none; 179557 179636 }) {}; 179558 179637 179638 + "siren-json" = callPackage 179639 + ({ mkDerivation, aeson, base, bytestring, case-insensitive 179640 + , containers, hspec, http-media, http-types, network-uri 179641 + , QuickCheck, quickcheck-instances, test-invariant, text 179642 + , unordered-containers 179643 + }: 179644 + mkDerivation { 179645 + pname = "siren-json"; 179646 + version = "0.1.0.0"; 179647 + sha256 = "01z64vbqk06m500q83x42r3ki8k9a84ynz6gra4cw40v11559a7y"; 179648 + libraryHaskellDepends = [ 179649 + aeson base bytestring containers http-media http-types network-uri 179650 + text unordered-containers 179651 + ]; 179652 + testHaskellDepends = [ 179653 + aeson base bytestring case-insensitive containers hspec http-media 179654 + http-types network-uri QuickCheck quickcheck-instances 179655 + test-invariant text unordered-containers 179656 + ]; 179657 + homepage = "https://github.com/alunduil/siren-json.hs"; 179658 + description = "Siren Tools for Haskell"; 179659 + license = stdenv.lib.licenses.mit; 179660 + }) {}; 179661 + 179559 179662 "sirkel" = callPackage 179560 179663 ({ mkDerivation, base, binary, bytestring, containers, hashtables 179561 179664 , haskell98, random, remote, SHA, transformers ··· 183371 183474 license = stdenv.lib.licenses.bsd3; 183372 183475 }) {}; 183373 183476 183477 + "special-values" = callPackage 183478 + ({ mkDerivation, base, bytestring, ieee754, scientific, text }: 183479 + mkDerivation { 183480 + pname = "special-values"; 183481 + version = "0.1.0.0"; 183482 + sha256 = "1kkdw2c4d2hha99v9f89ahmifjxp7fxmxyfwq9a8xk6s0h9xs51w"; 183483 + libraryHaskellDepends = [ 183484 + base bytestring ieee754 scientific text 183485 + ]; 183486 + homepage = "https://github.com/minad/special-values#readme"; 183487 + description = "Typeclass providing special values"; 183488 + license = stdenv.lib.licenses.mit; 183489 + }) {}; 183490 + 183374 183491 "specialize-th" = callPackage 183375 183492 ({ mkDerivation, base, checkers, composition, DebugTraceHelpers 183376 183493 , derive, HUnit, MissingH, mtl, newtype, newtype-th, QuickCheck ··· 185322 185439 license = stdenv.lib.licenses.mit; 185323 185440 }) {}; 185324 185441 185442 + "stackage-query_0_1_2" = callPackage 185443 + ({ mkDerivation, base, Cabal, containers, directory, filepath 185444 + , optparse-applicative, process, stackage-types, text, yaml 185445 + }: 185446 + mkDerivation { 185447 + pname = "stackage-query"; 185448 + version = "0.1.2"; 185449 + sha256 = "0lxln46nwsz7646yc65c07biqg35vr75l1hdvb864ajv680wp2l0"; 185450 + isLibrary = false; 185451 + isExecutable = true; 185452 + executableHaskellDepends = [ 185453 + base Cabal containers directory filepath optparse-applicative 185454 + process stackage-types text yaml 185455 + ]; 185456 + homepage = "https://github.com/juhp/stackage-query"; 185457 + description = "Stackage package query"; 185458 + license = stdenv.lib.licenses.mit; 185459 + hydraPlatforms = stdenv.lib.platforms.none; 185460 + }) {}; 185461 + 185325 185462 "stackage-sandbox" = callPackage 185326 185463 ({ mkDerivation, attoparsec, base, bytestring, conduit-combinators 185327 185464 , conduit-extra, directory, filepath, optparse-applicative, process ··· 185523 185660 ({ mkDerivation, base }: 185524 185661 mkDerivation { 185525 185662 pname = "star"; 185526 - version = "0.0.0.1"; 185527 - sha256 = "0xlwbkgj4cp9z23jcsnb5k5nmhsavvsr2c4w2s72r5jpsmzkr5ba"; 185663 + version = "0.0.0.2"; 185664 + sha256 = "1xg1gfdkskhkvd1a2nlaxc9942xi1j406p58i4ycb15lqcz8nz27"; 185528 185665 libraryHaskellDepends = [ base ]; 185529 185666 homepage = "https://github.com/chessai/star#readme"; 185530 185667 description = "*-semirings"; ··· 188999 189136 ({ mkDerivation, base, Cabal, containers, directory, filepath }: 189000 189137 mkDerivation { 189001 189138 pname = "superdoc"; 189002 - version = "0.1.2.4"; 189003 - sha256 = "0l32y0g3dymamqkwr8x8syiwvkk1z19xlls9b4qskxzsxrx8w414"; 189139 + version = "0.1.2.5"; 189140 + sha256 = "0b0610pg2b9j5phc0mwsyk8rzp4w77453g4631p3j2wgrjiw425n"; 189004 189141 isLibrary = true; 189005 189142 isExecutable = true; 189006 189143 libraryHaskellDepends = [ ··· 192076 192213 license = stdenv.lib.licenses.mit; 192077 192214 }) {}; 192078 192215 192216 + "tasty-fail-fast_0_0_3" = callPackage 192217 + ({ mkDerivation, base, containers, directory, stm, tagged, tasty 192218 + , tasty-golden, tasty-hunit, tasty-tap 192219 + }: 192220 + mkDerivation { 192221 + pname = "tasty-fail-fast"; 192222 + version = "0.0.3"; 192223 + sha256 = "1pkqa3b1jglmy6g2sx9pyw2f6dlsg2crmgvy039xiyldl985g9w4"; 192224 + libraryHaskellDepends = [ base containers stm tagged tasty ]; 192225 + testHaskellDepends = [ 192226 + base directory tasty tasty-golden tasty-hunit tasty-tap 192227 + ]; 192228 + homepage = "http://github.com/MichaelXavier/tasty-fail-fast#readme"; 192229 + description = "Adds the ability to fail a tasty test suite on first test failure"; 192230 + license = stdenv.lib.licenses.bsd3; 192231 + hydraPlatforms = stdenv.lib.platforms.none; 192232 + }) {}; 192233 + 192079 192234 "tasty-golden" = callPackage 192080 192235 ({ mkDerivation, async, base, bytestring, containers, deepseq 192081 192236 , directory, filepath, mtl, optparse-applicative, process, tagged ··· 198619 198774 }: 198620 198775 mkDerivation { 198621 198776 pname = "tomlcheck"; 198622 - version = "0.1.0.17"; 198623 - sha256 = "0yfy0453j3s5sskz529rd50dbjxhr411a4g5803dsw06kibij05s"; 198777 + version = "0.1.0.18"; 198778 + sha256 = "1csnwkxkj9wwcwf20ij66a4nz6cn9rsyy69h51qn8pmlzxn7hgyk"; 198624 198779 isLibrary = true; 198625 198780 isExecutable = true; 198626 198781 enableSeparateDataOutput = true; ··· 201778 201933 ({ mkDerivation, base, ghc-prim }: 201779 201934 mkDerivation { 201780 201935 pname = "type-level-sets"; 201781 - version = "0.8.0.0"; 201782 - sha256 = "0kxp9faby0zph9bkccvw5hrxq3m3ps9hg22aymqcah57sd8zlg92"; 201936 + version = "0.8.5.0"; 201937 + sha256 = "1ahfrwrlbdh61w6vh2v5j2ammkvcjxvw53d28pgqy296mpxikwvz"; 201783 201938 libraryHaskellDepends = [ base ghc-prim ]; 201784 201939 description = "Type-level sets and finite maps (with value-level counterparts)"; 201785 201940 license = stdenv.lib.licenses.bsd3; ··· 220055 220210 homepage = "http://github.com/tittoassini/zm"; 220056 220211 description = "Language independent, reproducible, absolute types"; 220057 220212 license = stdenv.lib.licenses.bsd3; 220213 + }) {}; 220214 + 220215 + "zm_0_3" = callPackage 220216 + ({ mkDerivation, base, bytestring, containers, convertible 220217 + , cryptonite, deepseq, doctest, either, filemanip, flat, memory 220218 + , model, mtl, pretty, tasty, tasty-hunit, tasty-quickcheck, text 220219 + , timeit, transformers 220220 + }: 220221 + mkDerivation { 220222 + pname = "zm"; 220223 + version = "0.3"; 220224 + sha256 = "1v2h66ahd3bpgyc59xj6ggzxfmzs0zgf4d5pgsz3by07iz5jk5ig"; 220225 + libraryHaskellDepends = [ 220226 + base bytestring containers convertible cryptonite deepseq either 220227 + flat memory model mtl pretty text transformers 220228 + ]; 220229 + testHaskellDepends = [ 220230 + base bytestring containers doctest filemanip flat model pretty 220231 + tasty tasty-hunit tasty-quickcheck text timeit 220232 + ]; 220233 + homepage = "http://github.com/tittoassini/zm"; 220234 + description = "Language independent, reproducible, absolute types"; 220235 + license = stdenv.lib.licenses.bsd3; 220236 + hydraPlatforms = stdenv.lib.platforms.none; 220058 220237 }) {}; 220059 220238 220060 220239 "zmcat" = callPackage
+2 -1
pkgs/development/libraries/SDL_gfx/default.nix
··· 11 11 12 12 buildInputs = [ SDL ] ; 13 13 14 - configureFlags = [ "--disable-mmx" ]; 14 + configureFlags = [ "--disable-mmx" ] 15 + ++ stdenv.lib.optional stdenv.isDarwin "--disable-sdltest"; 15 16 16 17 meta = with stdenv.lib; { 17 18 description = "SDL graphics drawing primitives and support functions";
+2
pkgs/development/libraries/SDL_image/default.nix
··· 17 17 }) 18 18 ]; 19 19 20 + configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest"; 21 + 20 22 buildInputs = [ SDL libpng libjpeg libtiff libungif libXpm ]; 21 23 22 24 meta = with stdenv.lib; {
+3 -1
pkgs/development/libraries/SDL_mixer/default.nix
··· 12 12 13 13 buildInputs = [ SDL libogg libvorbis fluidsynth smpeg ]; 14 14 15 - configureFlags = [ "--disable-music-ogg-shared" ] ++ lib.optional enableNativeMidi " --enable-music-native-midi-gpl"; 15 + configureFlags = [ "--disable-music-ogg-shared" ] 16 + ++ lib.optional enableNativeMidi " --enable-music-native-midi-gpl" 17 + ++ lib.optional stdenv.isDarwin "--disable-sdltest"; 16 18 17 19 meta = with stdenv.lib; { 18 20 description = "SDL multi-channel audio mixer library";
+2
pkgs/development/libraries/SDL_net/default.nix
··· 11 11 sha256 = "1d5c9xqlf4s1c01gzv6cxmg0r621pq9kfgxcg3197xw4p25pljjz"; 12 12 }; 13 13 14 + configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest"; 15 + 14 16 propagatedBuildInputs = [ SDL ]; 15 17 16 18 meta = with stdenv.lib; {
+2
pkgs/development/libraries/SDL_ttf/default.nix
··· 21 21 22 22 buildInputs = [ SDL freetype ]; 23 23 24 + configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest"; 25 + 24 26 meta = with stdenv.lib; { 25 27 description = "SDL TrueType library"; 26 28 license = licenses.zlib;
+2 -2
pkgs/development/libraries/botan/2.0.upstream
··· 1 - url http://botan.randombit.net/download.html 2 - version_link 'Botan-[0-9]+[.][0-9]*[02468]([.][0-9]+)?[.](tgz|tbz|tbz2|tar[.]bz2)$' 1 + url https://botan.randombit.net/ 2 + version_link 'Botan-[0-9]+([.][0-9]+)*[.](tgz|tbz|tbz2|tar[.]bz2)$' 3 3 ensure_version 4 4 attribute_name botan2 5 5 do_overwrite(){
+1
pkgs/development/libraries/dbus/make-dbus-conf.nix
··· 11 11 runCommand "dbus-1" 12 12 { 13 13 inherit serviceDirectories suidHelper; 14 + preferLocalBuild = true; 14 15 XML_CATALOG_FILES = writeText "dbus-catalog.xml" '' 15 16 <?xml version="1.0"?> 16 17 <!DOCTYPE catalog PUBLIC
+1 -1
pkgs/development/libraries/dotconf/default.nix
··· 17 17 meta = with stdenv.lib; { 18 18 description = "A configuration parser library"; 19 19 maintainers = with maintainers; [ pSub ]; 20 - homepage = http://www.azzit.de/dotconf/; 20 + homepage = https://github.com/williamh/dotconf; 21 21 license = licenses.lgpl21Plus; 22 22 platforms = with platforms; unix; 23 23 };
+2 -10
pkgs/development/libraries/folly/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "folly-${version}"; 6 - version = "2017.07.24.00"; 6 + version = "2017.11.06.00"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "facebook"; 10 10 repo = "folly"; 11 11 rev = "v${version}"; 12 - sha256 = "1cmqrm9yjxrw4xr1kcgzl0s7vcvp125wcgb0cz7whssgj11mf169"; 12 + sha256 = "11sn4gwqw94ygc2s4bzqy5k67v3rr20gy375brdcrl5rv0r2hhc0"; 13 13 }; 14 - 15 - patches = [ 16 - # Fix compilation 17 - (fetchpatch { 18 - url = "https://github.com/facebook/folly/commit/9fc87c83d93f092859823ec32289ed1b6abeb683.patch"; 19 - sha256 = "0ix0grqlzm16hwa4rjbajjck8kr9lksh6c3gn7p3ihbbchsmlhvl"; 20 - }) 21 - ]; 22 14 23 15 nativeBuildInputs = [ autoreconfHook python pkgconfig ]; 24 16 buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
+4 -4
pkgs/development/libraries/gtdialog/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="gtdialog"; 6 - version="1.3"; 6 + version="1.4"; 7 7 name="${baseName}-${version}"; 8 - hash="0y7sln877940bpj0s38cs5s97xg8csnaihh18lmnchf7c2kkbxpq"; 9 - url="http://foicica.com/gtdialog/download/gtdialog_1.3.zip"; 10 - sha256="0y7sln877940bpj0s38cs5s97xg8csnaihh18lmnchf7c2kkbxpq"; 8 + hash="1lhsaz56s8m838fi6vnfcd2r6djymvy3n2pbqhii88hraapq3rfk"; 9 + url="http://foicica.com/gtdialog/download/gtdialog_1.4.zip"; 10 + sha256="1lhsaz56s8m838fi6vnfcd2r6djymvy3n2pbqhii88hraapq3rfk"; 11 11 }; 12 12 nativeBuildInputs = [ pkgconfig ]; 13 13 buildInputs = [
-1
pkgs/development/libraries/libatomic_ops/default.upstream
··· 1 - url https://github.com/ivmai/libatomic_ops/wiki/Download
+10 -1
pkgs/development/libraries/libexif/default.nix
··· 1 - { stdenv, fetchurl, gettext }: 1 + { stdenv, fetchurl, fetchpatch, gettext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libexif-0.6.21"; ··· 7 7 url = "mirror://sourceforge/libexif/${name}.tar.bz2"; 8 8 sha256 = "06nlsibr3ylfwp28w8f5466l6drgrnydgxrm4jmxzrmk5svaxk8n"; 9 9 }; 10 + 11 + patches = [ 12 + (fetchpatch { 13 + name = "CVE-2017-7544.patch"; 14 + url = https://sourceforge.net/p/libexif/bugs/_discuss/thread/fc394c4b/489a/attachment/xx.pat; 15 + sha256 = "1qgk8hgnxr8d63jsc4vljxz9yg33mbml280dq4a6050rmk9wq4la"; 16 + }) 17 + ]; 18 + patchFlags = "-p0"; 10 19 11 20 buildInputs = [ gettext ]; 12 21
+2 -2
pkgs/development/libraries/libextractor/default.nix
··· 7 7 assert videoSupport -> ffmpeg != null && libmpeg2 != null; 8 8 9 9 stdenv.mkDerivation rec { 10 - name = "libextractor-1.4"; 10 + name = "libextractor-1.6"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://gnu/libextractor/${name}.tar.gz"; 14 - sha256 = "0v7ns5jhsyp1wzvbaydfgxnva5zd63gkzm9djhckmam9liq824l4"; 14 + sha256 = "17gnpgspdhfgcr27j8sn9105vb4lw22yqdrhic62l79q5v5avm16"; 15 15 }; 16 16 17 17 preConfigure =
-9
pkgs/development/libraries/libgphoto2/default.upstream
··· 1 - url http://sourceforge.net/projects/gphoto/files/libgphoto/ 2 - SF_version_dir 3 - version_link '[.]tar[.]bz2/download$' 4 - SF_redirect 5 - do_overwrite () { 6 - ensure_hash 7 - set_var_value version "$CURRENT_VERSION" 8 - set_var_value sha256 "$CURRENT_HASH" 9 - }
+18 -11
pkgs/development/libraries/libtomcrypt/default.nix
··· 1 - {stdenv, fetchurl, libtool}: 1 + { stdenv, fetchurl, libtool }: 2 2 3 - stdenv.mkDerivation { 4 - name = "libtomcrypt-1.17"; 3 + stdenv.mkDerivation rec { 4 + name = "libtomcrypt-${version}"; 5 + version = "1.18.0"; 5 6 6 7 src = fetchurl { 7 - url = "https://github.com/libtom/libtomcrypt/releases/download/1.17/crypt-1.17.tar.bz2"; 8 - sha256 = "e33b47d77a495091c8703175a25c8228aff043140b2554c08a3c3cd71f79d116"; 8 + url = "https://github.com/libtom/libtomcrypt/releases/download/v${version}/crypt-${version}.tar.xz"; 9 + sha256 = "0ymqi0zf5gzn8pq4mnylwgg6pskml2v1p9rsjrqspyja65mgb7fs"; 9 10 }; 10 11 11 - buildInputs = [libtool]; 12 + nativeBuildInputs = [ libtool ]; 13 + 14 + postPatch = '' 15 + substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool" 16 + ''; 12 17 13 18 preBuild = '' 14 - makeFlagsArray=(LIBPATH=$out/lib INCPATH=$out/include \ 15 - DATAPATH=$out/share/doc/libtomcrypt/pdf \ 19 + makeFlagsArray=(PREFIX=$out \ 16 20 INSTALL_GROUP=$(id -g) \ 17 21 INSTALL_USER=$(id -u)) 18 22 ''; 19 23 20 24 makefile = "makefile.shared"; 21 25 22 - meta = { 23 - homepage = http://libtom.org/?page=features&newsitems=5&whatfile=crypt; 26 + enableParallelBuilding = true; 27 + 28 + meta = with stdenv.lib; { 29 + homepage = http://www.libtom.net/LibTomCrypt/; 24 30 description = "A fairly comprehensive, modular and portable cryptographic toolkit"; 25 - platforms = stdenv.lib.platforms.linux; 31 + license = with licenses; [ publicDomain wtfpl ]; 32 + platforms = platforms.linux; 26 33 }; 27 34 }
+20 -12
pkgs/development/libraries/libtommath/default.nix
··· 1 - {stdenv, fetchurl, libtool}: 1 + { stdenv, fetchurl, libtool }: 2 2 3 - stdenv.mkDerivation { 4 - name = "libtommath-1.0"; 5 - 3 + stdenv.mkDerivation rec { 4 + name = "libtommath-${version}"; 5 + version = "1.0.1"; 6 + 6 7 src = fetchurl { 7 - url = https://github.com/libtom/libtommath/releases/download/v1.0/ltm-1.0.tar.xz; 8 - sha256 = "0v5mpd8zqjfs2hr900w1mxifz23xylyjdqyx1i1wl7q9xvwpsflr"; 8 + url = "https://github.com/libtom/libtommath/releases/download/v${version}/ltm-${version}.tar.xz"; 9 + sha256 = "0sbccdwbkfc680id2fi0x067j23biqcjqilwkk7y9339knrjy0s7"; 9 10 }; 10 11 11 - buildInputs = [libtool]; 12 + nativeBuildInputs = [ libtool ]; 13 + 14 + postPatch = '' 15 + substituteInPlace makefile.shared --replace "LT:=glibtool" "LT:=libtool" 16 + substituteInPlace makefile_include.mk --replace "shell arch" "shell uname -m" 17 + ''; 12 18 13 19 preBuild = '' 14 - makeFlagsArray=(LIBPATH=$out/lib INCPATH=$out/include \ 15 - DATAPATH=$out/share/doc/libtommath/pdf \ 20 + makeFlagsArray=(PREFIX=$out \ 16 21 INSTALL_GROUP=$(id -g) \ 17 22 INSTALL_USER=$(id -u)) 18 23 ''; 19 24 20 25 makefile = "makefile.shared"; 21 26 22 - meta = { 23 - homepage = http://math.libtomcrypt.com/; 27 + enableParallelBuilding = true; 28 + 29 + meta = with stdenv.lib; { 30 + homepage = http://www.libtom.net/LibTomMath/; 24 31 description = "A library for integer-based number-theoretic applications"; 25 - platforms = stdenv.lib.platforms.unix; 32 + license = with licenses; [ publicDomain wtfpl ]; 33 + platforms = platforms.unix; 26 34 }; 27 35 }
+1 -1
pkgs/development/libraries/libtorrent-rasterbar/generic.nix
··· 38 38 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 39 39 license = licenses.bsd3; 40 40 maintainers = [ maintainers.phreedom ]; 41 - platforms = platforms.linux; 41 + platforms = platforms.unix; 42 42 }; 43 43 }
+5 -5
pkgs/development/libraries/qpdf/default.nix
··· 1 - { stdenv, fetchurl, pcre, zlib, perl }: 1 + { stdenv, fetchurl, libjpeg, zlib, perl }: 2 2 3 - let version = "6.0.0"; 3 + let version = "7.0.0"; 4 4 in 5 5 stdenv.mkDerivation rec { 6 6 name = "qpdf-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz"; 10 - sha256 = "0csj2p2gkxrc0rk8ykymlsdgfas96vzf1dip3y1x7z1q9plwgzd9"; 10 + sha256 = "0py6p27fx4qrwq9mvcybna42b0bdi359x38lzmggxl5a9khqvl7y"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ perl ]; 14 14 15 - buildInputs = [ pcre zlib ]; 15 + buildInputs = [ zlib libjpeg ]; 16 16 17 17 postPatch = '' 18 18 patchShebangs qpdf/fix-qdf ··· 28 28 meta = with stdenv.lib; { 29 29 homepage = http://qpdf.sourceforge.net/; 30 30 description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files"; 31 - license = licenses.artistic2; 31 + license = licenses.asl20; # as of 7.0.0, people may stay at artistic2 32 32 maintainers = with maintainers; [ abbradar ]; 33 33 platforms = platforms.all; 34 34 };
+4 -4
pkgs/development/lisp-modules/asdf/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="asdf"; 6 - version="3.2.0"; 6 + version="3.3.0"; 7 7 name="${baseName}-${version}"; 8 - hash="0ns4hh5f0anfgvy4q68wsylgwfin82kb1k2p53h29cf8jiil0p9a"; 9 - url="http://common-lisp.net/project/asdf/archives/asdf-3.2.0.tar.gz"; 10 - sha256="0ns4hh5f0anfgvy4q68wsylgwfin82kb1k2p53h29cf8jiil0p9a"; 8 + hash="16qphj2ilds4plzr36jbnrxxl5s21q53m9vasv3208gb5wjwcnv8"; 9 + url="http://common-lisp.net/project/asdf/archives/asdf-3.3.0.tar.gz"; 10 + sha256="16qphj2ilds4plzr36jbnrxxl5s21q53m9vasv3208gb5wjwcnv8"; 11 11 }; 12 12 buildInputs = [ 13 13 texinfo texLive perl
+1 -1
pkgs/development/lisp-modules/quicklisp-to-nix/system-info.lisp
··· 264 264 (source-file (asdf:system-source-file asdf-system))) 265 265 (cond 266 266 (source-file 267 - (loop :for system-name :being :the :hash-keys :of asdf/find-system:*defined-systems* :do 267 + (loop :for system-name :being :the :hash-keys :of asdf/find-system::*registered-systems* :do 268 268 (when (and (parasitic-relationship-p system system-name) 269 269 (not (blacklisted-parasite-p system-name))) 270 270 (found-new-parasite system-name)
+2 -2
pkgs/development/ocaml-modules/angstrom/default.nix
··· 1 - { stdenv, fetchFromGitHub, ocaml, ocamlbuild, cstruct, result, findlib, ocaml_oasis }: 1 + { stdenv, fetchFromGitHub, ocaml, ocamlbuild, cstruct, result, findlib }: 2 2 3 3 let param = 4 4 if stdenv.lib.versionAtLeast ocaml.version "4.03" ··· 24 24 25 25 createFindlibDestdir = true; 26 26 27 - buildInputs = [ ocaml ocaml_oasis findlib ocamlbuild ]; 27 + buildInputs = [ ocaml findlib ocamlbuild ]; 28 28 propagatedBuildInputs = [ result cstruct ]; 29 29 30 30 meta = {
+2 -2
pkgs/development/ocaml-modules/camomile/default.nix
··· 1 1 { stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, cppo }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.8.6"; 4 + version = "0.8.7"; 5 5 name = "ocaml${ocaml.version}-camomile-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "yoriyuki"; 9 9 repo = "camomile"; 10 10 rev = "rel-${version}"; 11 - sha256 = "1jq1xhaikczk6lbvas7c35aa04q0kjaqd8m54c4jivpj80yvg4x9"; 11 + sha256 = "0rh58nl5jrnx01hf0yqbdcc2ncx107pq29zblchww82ci0x1xwsf"; 12 12 }; 13 13 14 14 buildInputs = [ ocaml findlib jbuilder cppo ];
+2 -2
pkgs/development/ocaml-modules/containers/default.nix
··· 1 - { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, cppo, gen, sequence, qtest, ounit, ocaml_oasis, result 1 + { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, cppo, gen, sequence, qtest, ounit, result 2 2 , qcheck }: 3 3 4 4 let ··· 20 20 sha256 = "1gjs9d6759zpgp68djv296zwmvhdc6dqfb27aip7dhj6ic2bwgil"; 21 21 }; 22 22 23 - buildInputs = [ ocaml findlib ocamlbuild cppo gen sequence qtest ounit ocaml_oasis qcheck ]; 23 + buildInputs = [ ocaml findlib ocamlbuild cppo gen sequence qtest ounit qcheck ]; 24 24 25 25 propagatedBuildInputs = [ result ]; 26 26
+3 -3
pkgs/development/ocaml-modules/fileutils/default.nix
··· 1 1 { stdenv, fetchurl, ocaml, findlib, ocamlbuild, ounit }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "ocaml-fileutils-0.5.2"; 4 + name = "ocaml${ocaml.version}-fileutils-0.5.3"; 5 5 6 6 src = fetchurl { 7 - url = https://forge.ocamlcore.org/frs/download.php/1695/ocaml-fileutils-0.5.2.tar.gz; 8 - sha256 = "06l8hva3jmb2b7n4aa84dhhh1lr2mj8632gz4q83glc00khkn1vv"; 7 + url = https://forge.ocamlcore.org/frs/download.php/1728/ocaml-fileutils-0.5.3.tar.gz; 8 + sha256 = "1rc4cqlvdhbs55i85zfbfhz938fsy4fj6kwlkfm3ra7bpwn8bmpd"; 9 9 }; 10 10 11 11 buildInputs = [ ocaml findlib ocamlbuild ounit ];
+9 -2
pkgs/development/ocaml-modules/gen/default.nix
··· 1 1 { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, ounit }: 2 2 3 - let version = "0.4.0.1"; in 3 + let version = "0.5"; in 4 4 5 5 stdenv.mkDerivation { 6 6 name = "ocaml${ocaml.version}-gen-${version}"; ··· 9 9 owner = "c-cube"; 10 10 repo = "gen"; 11 11 rev = "${version}"; 12 - sha256 = "0gg94f5l899rni3r7s7wq8plgazmbsaw498xckp25kkgpmkk61ml"; 12 + sha256 = "14b8vg914nb0yp1hgxzm29bg692m0gqncjj43b599s98s1cwl92h"; 13 13 }; 14 14 15 15 buildInputs = [ ocaml findlib ocamlbuild qtest ounit ]; 16 + 17 + configureFlags = [ 18 + "--enable-tests" 19 + ]; 20 + 21 + doCheck = true; 22 + checkTarget = "test"; 16 23 17 24 createFindlibDestdir = true; 18 25
+2 -2
pkgs/development/ocaml-modules/nocrypto/default.nix
··· 1 1 { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, opam, topkg 2 2 , cpuid, ocb-stubblr 3 - , cstruct, zarith, ocaml_oasis, ppx_sexp_conv, sexplib 3 + , cstruct, zarith, ppx_sexp_conv, sexplib 4 4 , lwt ? null 5 5 }: 6 6 ··· 18 18 sha256 = "0nhnlpbqh3mf9y2cxivlvfb70yfbdpvg6jslzq64xblpgjyg443p"; 19 19 }; 20 20 21 - buildInputs = [ ocaml ocaml_oasis findlib ocamlbuild topkg opam cpuid ocb-stubblr 21 + buildInputs = [ ocaml findlib ocamlbuild topkg opam cpuid ocb-stubblr 22 22 ppx_sexp_conv ]; 23 23 propagatedBuildInputs = [ cstruct zarith sexplib ] ++ optional withLwt lwt; 24 24
+4 -4
pkgs/development/ocaml-modules/ocaml-gettext/default.nix
··· 1 1 { stdenv, fetchurl, ocaml, findlib, camlp4, ounit, gettext, fileutils, camomile }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "ocaml-gettext-${version}"; 5 - version = "0.3.5"; 4 + name = "ocaml${ocaml.version}-gettext-${version}"; 5 + version = "0.3.7"; 6 6 7 7 src = fetchurl { 8 - url = "https://forge.ocamlcore.org/frs/download.php/1433/ocaml-gettext-${version}.tar.gz"; 9 - sha256 = "0s625h7y9xxqvzk4bnw45k4wvl4fn8gblv56bp47il0lgsx8956i"; 8 + url = "https://forge.ocamlcore.org/frs/download.php/1678/ocaml-gettext-${version}.tar.gz"; 9 + sha256 = "1zhvzc9x3j57xf2mzg5rshgp14cb4dsqbnj52jjv1qnja97plyjp"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ gettext fileutils camomile ];
+7 -12
pkgs/development/python-modules/folium/default.nix
··· 9 9 , jinja2 10 10 , branca 11 11 , six 12 + , requests 12 13 }: 13 14 14 15 buildPythonPackage rec { 15 16 pname = "folium"; 16 17 version = "0.5.0"; 17 - name = "${pname}-${version}"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 21 sha256 = "748944521146d85c6cd6230acf234e885864cd0f42fea3758d655488517e5e6e"; 22 22 }; 23 23 24 - postPatch = '' 25 - # Causes trouble because a certain file cannot be found 26 - rm tests/notebooks/test_notebooks.py 27 - ''; 28 - 29 24 checkInputs = [ pytest numpy nbconvert pandas mock ]; 30 - propagatedBuildInputs = [ jinja2 branca six ]; 25 + propagatedBuildInputs = [ jinja2 branca six requests ]; 31 26 32 - # 33 - # doCheck = false; 27 + # No tests in archive 28 + doCheck = false; 34 29 35 - # checkPhase = '' 36 - # py.test -k 'not test_notebooks' 37 - # ''; 30 + checkPhase = '' 31 + py.test 32 + ''; 38 33 39 34 meta = { 40 35 description = "Make beautiful maps with Leaflet.js & Python";
+2 -2
pkgs/development/python-modules/libnacl/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "libnacl"; 5 - version = "1.6.0"; 5 + version = "1.6.1"; 6 6 name = "${pname}-${version}"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "saltstack"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "0iaql3mrj3hf48km8177bi6nmjdar26kmqjc3jw8mrjc940v99fk"; 12 + sha256 = "05iamhbsqm8binqhc2zchfqdkajlx2icf8xl5vkd5fbrhw6yylad"; 13 13 }; 14 14 15 15 buildInputs = [ pytest ];
+7 -1
pkgs/development/python-modules/yowsup/default.nix
··· 1 - { buildPythonPackage, stdenv, fetchFromGitHub, six, python-axolotl, pytest }: 1 + { buildPythonPackage, stdenv, fetchFromGitHub, six, python-axolotl, pytest 2 + , isPy3k 3 + }: 2 4 3 5 buildPythonPackage rec { 4 6 name = "${pname}-${version}"; 5 7 pname = "yowsup"; 6 8 version = "2.5.2"; 9 + 10 + # python2 is currently incompatible with yowsup: 11 + # https://github.com/tgalal/yowsup/issues/2325#issuecomment-343516519 12 + disabled = !isPy3k; 7 13 8 14 src = fetchFromGitHub { 9 15 owner = "tgalal";
+11 -3
pkgs/development/tools/analysis/radare2/default.nix
··· 1 - {stdenv, fetchFromGitHub, fetchurl, pkgconfig, libusb, readline, libewf, perl, zlib, openssl, 1 + {stdenv, fetchFromGitHub, fetchurl, fetchpatch, pkgconfig, libusb, readline, libewf, perl, zlib, openssl, 2 2 gtk2 ? null, vte ? null, gtkdialog ? null, 3 3 python ? null, 4 4 ruby ? null, ··· 13 13 inherit (stdenv.lib) optional; 14 14 in 15 15 stdenv.mkDerivation rec { 16 - version = "2.0.0"; 16 + version = "2.0.1"; 17 17 name = "radare2-${version}"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "radare"; 21 21 repo = "radare2"; 22 22 rev = version; 23 - sha256 = "1ahai9x6jc15wjzdbdkri3rc88ark2i5s8nv2pxcp0wwldvawlzi"; 23 + sha256 = "031ndvinsypagpkdszxjq0hj91ijq9zx4dzk53sz7il7s3zn65c7"; 24 24 }; 25 + 26 + patches = [ 27 + (fetchpatch { 28 + name = "CVE-2017-15385.patch"; 29 + url = https://github.com/radare/radare2/commit/21a6f570ba33fa9f52f1bba87f07acc4e8c178f4.patch; 30 + sha256 = "19qg5j9yr5r62nrq2b6mscxsz0wyyfah2z5jz8dvj9kqxq186d43"; 31 + }) 32 + ]; 25 33 26 34 postPatch = let 27 35 cs_ver = "3.0.4"; # version from $sourceRoot/shlr/Makefile
+4 -4
pkgs/development/tools/misc/luarocks/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="luarocks"; 6 - version="2.4.2"; 6 + version="2.4.3"; 7 7 name="${baseName}-${version}"; 8 - hash="1rfjfjgnafjxs1zrd1gy0ga5lw28sf5lrdmgzgh6bcp1hd2w67hf"; 9 - url="http://luarocks.org/releases/luarocks-2.4.2.tar.gz"; 10 - sha256="1rfjfjgnafjxs1zrd1gy0ga5lw28sf5lrdmgzgh6bcp1hd2w67hf"; 8 + hash="0binkd8mpzdzvx0jw0dwm4kr1p7jny015zykf8f15fymzqr4shad"; 9 + url="http://luarocks.org/releases/luarocks-2.4.3.tar.gz"; 10 + sha256="0binkd8mpzdzvx0jw0dwm4kr1p7jny015zykf8f15fymzqr4shad"; 11 11 }; 12 12 buildInputs = [ 13 13 lua curl makeWrapper which unzip
+1 -1
pkgs/development/tools/parsing/ragel/default.nix
··· 25 25 doCheck = true; 26 26 27 27 meta = with stdenv.lib; { 28 - homepage = http://www.complang.org/ragel; 28 + homepage = https://www.colm.net/open-source/ragel/; 29 29 description = "State machine compiler"; 30 30 inherit license; 31 31 platforms = platforms.unix;
+28
pkgs/games/braincurses/default.nix
··· 1 + { stdenv, fetchFromGitHub, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "braincurses-${version}"; 5 + version = "1.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "bderrly"; 9 + repo = "braincurses"; 10 + rev = version; 11 + sha256 = "0gpny9wrb0zj3lr7iarlgn9j4367awj09v3hhxz9r9a6yhk4anf5"; 12 + }; 13 + 14 + buildInputs = [ ncurses ]; 15 + 16 + # There is no install target in the Makefile 17 + installPhase = '' 18 + install -Dt $out/bin braincurses 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://github.com/bderrly/braincurses; 23 + description = "A version of the classic game Mastermind"; 24 + license = licenses.gpl2; 25 + maintainers = with maintainers; [ dotlambda ]; 26 + platforms = platforms.linux; 27 + }; 28 + }
+67
pkgs/games/cataclysm-dda/git.nix
··· 1 + { fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, 2 + SDL2_mixer, freetype, gettext }: 3 + 4 + stdenv.mkDerivation rec { 5 + version = "2017-07-12"; 6 + name = "cataclysm-dda-git-${version}"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "CleverRaven"; 10 + repo = "Cataclysm-DDA"; 11 + rev = "2d7aa8c"; 12 + sha256 = "0xx7si4k5ivyb5gv98fzlcghrg3w0dfblri547x7x4is7fj5ffjd"; 13 + }; 14 + 15 + nativeBuildInputs = [ makeWrapper pkgconfig ]; 16 + 17 + buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]; 18 + 19 + postPatch = '' 20 + patchShebangs . 21 + sed -i Makefile \ 22 + -e 's,-Werror,,g' \ 23 + -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g' 24 + 25 + sed '1i#include <cmath>' \ 26 + -i src/{crafting,skill,weather_data,melee,vehicle,overmap,iuse_actor}.cpp 27 + ''; 28 + 29 + makeFlags = "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"; 30 + 31 + postInstall = '' 32 + wrapProgram $out/bin/cataclysm-tiles \ 33 + --add-flags "--datadir $out/share/cataclysm-dda/" 34 + ''; 35 + 36 + enableParallelBuilding = true; 37 + 38 + meta = with stdenv.lib; { 39 + description = "A free, post apocalyptic, zombie infested rogue-like"; 40 + longDescription = '' 41 + Cataclysm: Dark Days Ahead is a roguelike set in a post-apocalyptic world. 42 + Surviving is difficult: you have been thrown, ill-equipped, into a 43 + landscape now riddled with monstrosities of which flesh eating zombies are 44 + neither the strangest nor the deadliest. 45 + 46 + Yet with care and a little luck, many things are possible. You may try to 47 + eke out an existence in the forests silently executing threats and 48 + providing sustenance with your longbow. You can ride into town in a 49 + jerry-rigged vehicle, all guns blazing, to settle matters in a fug of 50 + smoke from your molotovs. You could take a more measured approach and 51 + construct an impregnable fortress, surrounded by traps to protect you from 52 + the horrors without. The longer you survive, the more skilled and adapted 53 + you will get and the better equipped and armed to deal with the threats 54 + you are presented with. 55 + 56 + In the course of your ordeal there will be opportunities and temptations 57 + to improve or change your very nature. There are tales of survivors fitted 58 + with extraordinary cybernetics giving great power and stories too of 59 + gravely mutated survivors who, warped by their ingestion of exotic 60 + substances or radiation, now more closely resemble insects, birds or fish 61 + than their original form. 62 + ''; 63 + homepage = http://en.cataclysmdda.com/; 64 + license = licenses.cc-by-sa-30; 65 + platforms = platforms.linux; 66 + }; 67 + }
+2 -2
pkgs/games/sgt-puzzles/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "sgt-puzzles-r${version}"; 8 - version = "20170228.1f613ba"; 8 + version = "20171029.69773d8"; 9 9 10 10 src = fetchurl { 11 11 url = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${version}.tar.gz"; 12 - sha256 = "02nqc18fhvxr545wgk55ly61fi0a06q61ljzwadprqxa1n0g0fz5"; 12 + sha256 = "0m1gaa802jyih9hcwpvb05zrzprgj6akafgvbsnq321s0sqzaxf0"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig perl wrapGAppsHook ];
+26 -14
pkgs/games/steam/chrootenv.nix
··· 37 37 ++ lib.optional withPrimus primus 38 38 ++ extraPkgs pkgs; 39 39 40 + ldPath = map (x: "/steamrt/${steam-runtime-wrapped.arch}/" + x) steam-runtime-wrapped.libs 41 + ++ lib.optionals (steam-runtime-wrapped-i686 != null) (map (x: "/steamrt/${steam-runtime-wrapped-i686.arch}/" + x) steam-runtime-wrapped-i686.libs); 42 + 43 + runSh = writeScript "run.sh" '' 44 + #!${stdenv.shell} 45 + runtime_paths="${lib.concatStringsSep ":" ldPath}" 46 + if [ "$1" == "--print-steam-runtime-library-paths" ]; then 47 + echo "$runtime_paths" 48 + exit 0 49 + fi 50 + export LD_LIBRARY_PATH="$runtime_paths:$LD_LIBRARY_PATH" 51 + exec "$@" 52 + ''; 53 + 40 54 in buildFHSUserEnv rec { 41 55 name = "steam"; 42 56 ··· 74 88 ${lib.optionalString (steam-runtime-wrapped-i686 != null) '' 75 89 ln -s ../lib32/steam-runtime steamrt/${steam-runtime-wrapped-i686.arch} 76 90 ''} 91 + ln -s ${runSh} steamrt/run.sh 77 92 ''; 78 93 79 94 extraInstallCommands = '' ··· 96 111 targetPkgs = commonTargetPkgs; 97 112 inherit multiPkgs extraBuildCommands; 98 113 99 - runScript = 100 - let ldPath = map (x: "/steamrt/${steam-runtime-wrapped.arch}/" + x) steam-runtime-wrapped.libs 101 - ++ lib.optionals (steam-runtime-wrapped-i686 != null) (map (x: "/steamrt/${steam-runtime-wrapped-i686.arch}/" + x) steam-runtime-wrapped-i686.libs); 102 - in writeScript "steam-run" '' 103 - #!${stdenv.shell} 104 - run="$1" 105 - if [ "$run" = "" ]; then 106 - echo "Usage: steam-run command-to-run args..." >&2 107 - exit 1 108 - fi 109 - shift 110 - export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH 111 - exec "$run" "$@" 112 - ''; 114 + runScript = writeScript "steam-run" '' 115 + #!${stdenv.shell} 116 + run="$1" 117 + if [ "$run" = "" ]; then 118 + echo "Usage: steam-run command-to-run args..." >&2 119 + exit 1 120 + fi 121 + shift 122 + export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH 123 + exec "$run" "$@" 124 + ''; 113 125 }; 114 126 }
+1 -1
pkgs/misc/screensavers/xlockmore/default.nix
··· 32 32 33 33 meta = with lib; { 34 34 description = "Screen locker for the X Window System"; 35 - homepage = http://www.tux.org/~bagleyd/xlockmore.html; 35 + homepage = http://sillycycle.com/xlockmore.html; 36 36 license = licenses.gpl2; 37 37 maintainers = with maintainers; [ pSub ]; 38 38 platforms = platforms.linux;
+2 -2
pkgs/misc/screensavers/xscreensaver/default.nix
··· 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "5.36"; 8 + version = "5.37"; 9 9 name = "xscreensaver-${version}"; 10 10 11 11 src = fetchurl { 12 12 url = "http://www.jwz.org/xscreensaver/${name}.tar.gz"; 13 - sha256 = "0v60mdhvv42jla5hljp77igng11kxpah5fs9j7ci65kz0hw552vb"; 13 + sha256 = "1ng5ddzb4k2h1w54pvk9hzxvnxxmc54bc4a2ibk974nzjjjaxivs"; 14 14 }; 15 15 16 16 buildInputs =
+14 -2
pkgs/os-specific/linux/busybox/default.nix
··· 1 - { stdenv, lib, buildPackages, fetchurl 1 + { stdenv, lib, buildPackages, fetchurl, fetchpatch 2 2 , enableStatic ? false 3 3 , enableMinimal ? false 4 4 , useMusl ? false, musl ··· 39 39 40 40 hardeningDisable = [ "format" ] ++ lib.optionals enableStatic [ "fortify" ]; 41 41 42 - patches = [ ./busybox-in-store.patch ]; 42 + patches = [ 43 + ./busybox-in-store.patch 44 + (fetchpatch { 45 + name = "CVE-2017-15873.patch"; 46 + url = "https://git.busybox.net/busybox/patch/?id=0402cb32df015d9372578e3db27db47b33d5c7b0"; 47 + sha256 = "1s3xqifd0dww19mbnzrks0i1az0qwd884sxjzrx33d6a9jxv4dzn"; 48 + }) 49 + (fetchpatch { 50 + name = "CVE-2017-15874.patch"; 51 + url = "https://git.busybox.net/busybox/patch/?id=9ac42c500586fa5f10a1f6d22c3f797df11b1f6b"; 52 + sha256 = "0169p4ylz9zd14ghhb39yfjvbdca2kb21pphylfh9ny7i484ahql"; 53 + }) 54 + ]; 43 55 44 56 configurePhase = '' 45 57 export KCONFIG_NOTIMESTAMP=1
+2 -2
pkgs/servers/nosql/apache-jena/binary.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="apache-jena"; 6 - version = "3.2.0"; 6 + version = "3.5.0"; 7 7 name="${baseName}-${version}"; 8 8 url="http://archive.apache.org/dist/jena/binaries/apache-jena-${version}.tar.gz"; 9 - sha256 = "0n15mx8lnamkf3a1wlgx5slh6615m14wclv8fzkbb1xqq001c3j4"; 9 + sha256 = "08hfn359l9s4lckba9xgghkn32r12gqzjjr5s5hn3fzkbsig7njy"; 10 10 }; 11 11 buildInputs = [ 12 12 makeWrapper
+2 -2
pkgs/servers/nosql/apache-jena/fuseki-binary.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="apache-jena-fuseki"; 6 - version = "2.5.0"; 6 + version = "3.5.0"; 7 7 name="${baseName}-${version}"; 8 8 url="http://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${version}.tar.gz"; 9 - sha256 = "0qkdpifv30138y7d6vj0dksk4fbgcnwl26dqm89q0d66sc0czfbv"; 9 + sha256 = "0pdq103vqpkbwi84yyigw4dy60ch7xzazaj3gfcbipg73v81wpvp"; 10 10 }; 11 11 buildInputs = [ 12 12 makeWrapper
+9 -1
pkgs/servers/nosql/redis/default.nix
··· 1 - { stdenv, fetchurl, lua }: 1 + { stdenv, fetchurl, fetchpatch, lua }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "4.0.2"; ··· 8 8 url = "http://download.redis.io/releases/${name}.tar.gz"; 9 9 sha256 = "04s8cgvwjj1979s3hg8zkwc9pyn3jkjpz5zidp87kfcipifr385i"; 10 10 }; 11 + 12 + patches = [ 13 + (fetchpatch { 14 + name = "CVE-2017-15047.patch"; 15 + url = https://github.com/antirez/redis/commit/ffcf7d5ab1e98d84c28af9bea7be76c6737820ad.patch; 16 + sha256 = "0cgx3lm0n7jxhsly8v9hdvy6vlamj3ck2jsid4fwyapz6907h64l"; 17 + }) 18 + ]; 11 19 12 20 buildInputs = [ lua ]; 13 21 makeFlags = "PREFIX=$(out)";
+2 -2
pkgs/servers/search/groonga/default.nix
··· 7 7 stdenv.mkDerivation rec { 8 8 9 9 name = "groonga-${version}"; 10 - version = "7.0.3"; 10 + version = "7.0.8"; 11 11 12 12 src = fetchurl { 13 13 url = "http://packages.groonga.org/source/groonga/${name}.tar.gz"; 14 - sha256 = "17pp4sbfa6wpiiiqvdbnvd1qxrchmj7zh27zdrmmnbvwpyc5g2n6"; 14 + sha256 = "1j5biji86dicm8whbqjgjmyycxsfl5qfyxqfc4bxaspd6w18vj87"; 15 15 }; 16 16 17 17 buildInputs = with stdenv.lib;
+26
pkgs/shells/nix-bash-completions/default.nix
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "0.2"; 5 + name = "nix-bash-completions-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "hedning"; 9 + repo = "nix-bash-completions"; 10 + rev = "v${version}"; 11 + sha256 = "0clr3c0zf73pnabab4n5b5x8cd2yilksvvlp4i0rj0cfbr1pzxgr"; 12 + }; 13 + 14 + installPhase = '' 15 + mkdir -p $out/share/bash-completion/completions 16 + cp _nix $out/share/bash-completion/completions 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + homepage = http://github.com/hedning/nix-bash-completions; 21 + description = "Bash completions for Nix, NixOS, and NixOps"; 22 + license = licenses.bsd3; 23 + platforms = platforms.all; 24 + maintainers = with maintainers; [ hedning ]; 25 + }; 26 + }
+1 -1
pkgs/stdenv/linux/make-bootstrap-tools.nix
··· 216 216 $CXX -v -o $out/bin/bar bar.cc 217 217 $out/bin/bar 218 218 219 - tar xvf ${hello.src} 219 + tar xvf ${hello.srcTarball} 220 220 cd hello-* 221 221 ./configure --prefix=$out 222 222 make
+7 -4
pkgs/tools/X11/xpra/default.nix
··· 11 11 let 12 12 inherit (python2Packages) python cython buildPythonApplication; 13 13 in buildPythonApplication rec { 14 - name = "xpra-2.0.2"; 15 - namePrefix = ""; 14 + name = "xpra-${version}"; 15 + version = "2.1.3"; 16 + 16 17 src = fetchurl { 17 18 url = "http://xpra.org/src/${name}.tar.xz"; 18 - sha256 = "09hzgbsj9v5qyh41rbz968ipi7016jk66b60vm6piryna9kbnha3"; 19 + sha256 = "0r0l3p59q05fmvkp3jv8vmny2v8m1vyhqkg6b9r2qgxn1kcxx7rm"; 19 20 }; 20 21 21 22 nativeBuildInputs = [ pkgconfig ]; ··· 50 51 51 52 preBuild = '' 52 53 export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)" 53 - substituteInPlace xpra/server/auth/pam.py --replace "/lib/libpam.so.1" "${pam}/lib/libpam.so" 54 + substituteInPlace xpra/server/auth/pam_auth.py --replace "/lib/libpam.so.1" "${pam}/lib/libpam.so" 54 55 ''; 55 56 setupPyBuildFlags = ["--with-Xdummy" "--without-strict"]; 56 57 ··· 74 75 75 76 meta = { 76 77 homepage = http://xpra.org/; 78 + downloadPage = "https://xpra.org/src/"; 79 + downloadURLRegexp = "xpra-.*[.]tar[.]xz$"; 77 80 description = "Persistent remote applications for X"; 78 81 platforms = platforms.linux; 79 82 maintainers = with maintainers; [ tstrobel offline ];
+9 -4
pkgs/tools/X11/xpra/gtk3.nix
··· 3 3 , xorg, gtk3, glib, pango, cairo, gdk_pixbuf, atk, pygobject3, pycairo, gobjectIntrospection 4 4 , makeWrapper, xkbcomp, xorgserver, getopt, xauth, utillinux, which, fontsConf 5 5 , ffmpeg, x264, libvpx, libwebp 6 - , libfakeXinerama }: 6 + , libfakeXinerama, pam }: 7 7 8 8 buildPythonApplication rec { 9 - name = "xpra-0.16.2"; 10 - namePrefix = ""; 9 + name = "xpra-${version}"; 10 + version = "2.1.3"; 11 11 12 12 src = fetchurl { 13 13 url = "http://xpra.org/src/${name}.tar.xz"; 14 - sha256 = "0h55rv46byzv2g8g77bm0a0py8jpz3gbr5fhr5jy9sisyr0vk6ff"; 14 + sha256 = "0r0l3p59q05fmvkp3jv8vmny2v8m1vyhqkg6b9r2qgxn1kcxx7rm"; 15 15 }; 16 16 17 17 patchPhase = '' ··· 31 31 ffmpeg libvpx x264 libwebp 32 32 33 33 makeWrapper 34 + 35 + pam 34 36 ]; 35 37 36 38 propagatedBuildInputs = [ ··· 39 41 40 42 preBuild = '' 41 43 export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-3.0) $(pkg-config --cflags xtst)" 44 + substituteInPlace xpra/server/auth/pam_auth.py --replace "/lib/libpam.so.1" "${pam}/lib/libpam.so" 42 45 ''; 43 46 setupPyBuildFlags = [ "--without-strict" "--with-gtk3" "--without-gtk2" "--with-Xdummy" ]; 44 47 ··· 67 70 68 71 meta = { 69 72 homepage = http://xpra.org/; 73 + downloadPage = "https://xpra.org/src/"; 74 + downloadURLRegexp = "xpra-.*[.]tar[.]xz$"; 70 75 description = "Persistent remote applications for X"; 71 76 platforms = stdenv.lib.platforms.linux; 72 77 };
+2 -2
pkgs/tools/admin/bubblewrap/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "bubblewrap-${version}"; 5 - version = "0.1.8"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz"; 9 - sha256 = "1gyy7paqwdrfgxamxya991588ryj9q9c3rhdh31qldqyh9qpy72c"; 9 + sha256 = "0ahw30ngpclk3ssa81cb7ydc6a4xc5dpqn6kmxfpc9xr30vimdnc"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ libcap libxslt docbook_xsl ];
+2 -2
pkgs/tools/backup/partclone/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "partclone-${version}"; 7 - version = "0.2.89"; 7 + version = "0.3.11"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "Thomas-Tsai"; 11 11 repo = "partclone"; 12 12 rev = version; 13 - sha256 = "0gw47pchqshhm00yf34qgxh6bh2jfryv0sm7ghwn77bv5gzwr481"; 13 + sha256 = "0bv15i0gxym4dv48rgaavh8p94waryn1l6viis6qh5zm9cd08skg"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ autoreconfHook pkgconfig ];
+9 -1
pkgs/tools/compression/rzip/default.nix
··· 1 - {stdenv, fetchurl, bzip2}: 1 + {stdenv, fetchurl, fetchpatch, bzip2}: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "rzip-2.1"; ··· 7 7 sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7"; 8 8 }; 9 9 buildInputs = [ bzip2 ]; 10 + 11 + patches = [ 12 + (fetchpatch { 13 + name = "CVE-2017-8364-fill-buffer.patch"; 14 + url = https://sources.debian.net/data/main/r/rzip/2.1-4.1/debian/patches/80-CVE-2017-8364-fill-buffer.patch; 15 + sha256 = "0jcjlx9ksdvxvjyxmyzscx9ar9992iy5icw0sc3n0p09qi4d6x1r"; 16 + }) 17 + ]; 10 18 11 19 meta = { 12 20 homepage = http://rzip.samba.org/;
+3 -5
pkgs/tools/filesystems/disorderfs/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "disorderfs-${version}"; 5 - version = "0.5.1"; 5 + version = "0.5.2"; 6 6 7 7 src = fetchurl { 8 - url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.gz"; 9 - sha256 = "0nnxk0qqww16ra52mi5giw50zpssvan62nkig5dcxvgcvv51akik"; 8 + url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.bz2"; 9 + sha256 = "0jdadb1ppd5qrnngpjv14az32gwslag2wwv1k8rs29iqlfy38cjf"; 10 10 }; 11 - 12 - sourceRoot = "."; 13 11 14 12 nativeBuildInputs = [ pkgconfig asciidoc ]; 15 13
-5
pkgs/tools/filesystems/glusterfs/default.upstream
··· 1 - url http://download.gluster.org/pub/gluster/glusterfs/ 2 - version_link '/[0-9.]+/$' 3 - version_link '/[0-9.]+/$' 4 - version_link 'glusterfs-[0-9.]+[.]tar[.]' 5 - minimize_overwrite
+2 -2
pkgs/tools/filesystems/nilfs-utils/default.nix
··· 1 1 { stdenv, fetchurl, libuuid, libselinux }: 2 2 let 3 3 sourceInfo = rec { 4 - version = "2.2.6"; 4 + version = "2.2.7"; 5 5 url = "http://nilfs.sourceforge.net/download/nilfs-utils-${version}.tar.bz2"; 6 - sha256 = "1rjj6pv7yx5wm7b3w6hv88v6r53jqaam5nrnkw2and4ifhsprf3y"; 6 + sha256 = "01f09bvjk2crx65pxmxiw362wkkl3v2v144dfn3i7bk5gz253xic"; 7 7 baseName = "nilfs-utils"; 8 8 name = "${baseName}-${version}"; 9 9 };
+1 -1
pkgs/tools/misc/ncdu/default.nix
··· 13 13 14 14 meta = with stdenv.lib; { 15 15 description = "Ncurses disk usage analyzer"; 16 - homepage = http://dev.yorhel.nl/ncdu; 16 + homepage = https://dev.yorhel.nl/ncdu; 17 17 license = licenses.mit; 18 18 platforms = platforms.all; 19 19 maintainers = with maintainers; [ pSub ];
+1 -1
pkgs/tools/misc/rrdtool/default.nix
··· 29 29 ''; 30 30 31 31 meta = with stdenv.lib; { 32 - homepage = http://oss.oetiker.ch/rrdtool/; 32 + homepage = https://oss.oetiker.ch/rrdtool/; 33 33 description = "High performance logging in Round Robin Databases"; 34 34 license = licenses.gpl2; 35 35 platforms = platforms.linux ++ platforms.darwin;
+1 -1
pkgs/tools/misc/vorbisgain/default.nix
··· 18 18 ''; 19 19 20 20 meta = with stdenv.lib; { 21 - homepage = http://sjeng.org/vorbisgain.html; 21 + homepage = https://sjeng.org/vorbisgain.html; 22 22 description = "A utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness"; 23 23 license = licenses.gpl2; 24 24 platforms = platforms.linux;
+2 -2
pkgs/tools/networking/getmail/default.nix
··· 1 1 { stdenv, fetchurl, python2Packages }: 2 2 3 3 python2Packages.buildPythonApplication rec { 4 - version = "4.54.0"; 4 + version = "5.4"; 5 5 name = "getmail-${version}"; 6 6 namePrefix = ""; 7 7 8 8 src = fetchurl { 9 9 url = "http://pyropus.ca/software/getmail/old-versions/${name}.tar.gz"; 10 - sha256 = "0r9s91zrdm6xklnj1fwzz74cxhkbmrgrrp86n62qgijkafa5fmnl"; 10 + sha256 = "1iwss9z94p165gxr2yw7s9q12a0bn71fcdbikzkykr5s7xxnz2ds"; 11 11 }; 12 12 13 13 doCheck = false;
+6 -6
pkgs/tools/networking/lftp/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "lftp-${version}"; 5 - version = "4.8.2"; 5 + version = "4.8.3"; 6 6 7 7 src = fetchurl { 8 8 urls = [ 9 - "https://lftp.tech/ftp/${name}.tar.bz2" 10 - "ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${name}.tar.bz2" 11 - "http://lftp.yar.ru/ftp/old/${name}.tar.bz2" 9 + "https://lftp.tech/ftp/${name}.tar.xz" 10 + "https://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${name}.tar.xz" 11 + "http://lftp.yar.ru/ftp/${name}.tar.xz" 12 12 ]; 13 - sha256 = "0a4sp9khqgny1md0b2c9vvg4c7sz0g31w3sfdslxw7dsvijin3mn"; 13 + sha256 = "12y77jlfs4x4zvcah92mw2h2sb4j0bvbaxkh3wwsm8gs392ywyny"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ pkgconfig ]; ··· 28 28 29 29 meta = with stdenv.lib; { 30 30 description = "A file transfer program supporting a number of network protocols"; 31 - homepage = http://lftp.tech/; 31 + homepage = https://lftp.tech/; 32 32 license = licenses.gpl3; 33 33 platforms = platforms.unix; 34 34 maintainers = [ maintainers.bjornfor ];
+2 -2
pkgs/tools/security/yara/default.nix
··· 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "3.6.0"; 8 + version = "3.6.3"; 9 9 name = "yara-${version}"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "VirusTotal"; 13 13 repo = "yara"; 14 14 rev = "v${version}"; 15 - sha256 = "05nadqpvihdyxym11mn6n02rzv2ng8ga7j9l0g5gnjx366gcai42"; 15 + sha256 = "13znbdwin9lvql43wpms5hh13h8rk5x5wajgmphz18rxwp8h7j78"; 16 16 }; 17 17 18 18 # FIXME: this is probably not the right way to make it work
+2 -2
pkgs/tools/system/dd_rescue/default.nix
··· 1 1 { stdenv, fetchurl, autoconf }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.99.5"; 4 + version = "1.99.7"; 5 5 name = "dd_rescue-${version}"; 6 6 7 7 src = fetchurl { 8 - sha256 = "0db94piwcdyqhnlhgfs0bfp0gp2mqyrcr2l5nljapgni31qk4p8j"; 8 + sha256 = "0d318i1i5d7hbj06wmb3xag14x542cv7fpkh5zjf5ccm64nyzir4"; 9 9 url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; 10 10 }; 11 11
+2 -2
pkgs/tools/system/ipmiutil/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 baseName = "ipmiutil"; 5 - version = "3.0.5"; 5 + version = "3.0.7"; 6 6 name = "${baseName}-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/project/${baseName}/${name}.tar.gz"; 10 - sha256 = "0ppfxh04c0aj9dxpkzj3xv1kylc17k1kvqabp8r7h70k6ljzgmxj"; 10 + sha256 = "0bsl4czbwmz1f42b15y0fabys50bbfll4z73nm9xk161i2njzz6y"; 11 11 }; 12 12 13 13 buildInputs = [ openssl ];
+14 -2
pkgs/top-level/all-packages.nix
··· 5315 5315 5316 5316 bash-completion = callPackage ../shells/bash-completion { }; 5317 5317 5318 + nix-bash-completions = callPackage ../shells/nix-bash-completions { }; 5319 + 5318 5320 dash = callPackage ../shells/dash { }; 5319 5321 5320 5322 es = callPackage ../shells/es { }; ··· 6690 6692 6691 6693 pyrex096 = callPackage ../development/interpreters/pyrex/0.9.6.nix { }; 6692 6694 6693 - racket = callPackage ../development/interpreters/racket { }; 6695 + racket = callPackage ../development/interpreters/racket { 6696 + # racket 6.11 doesn't build with gcc6 + recent glibc: 6697 + # https://github.com/racket/racket/pull/1886 6698 + # https://github.com/NixOS/nixpkgs/pull/31017#issuecomment-343574769 6699 + stdenv = overrideCC stdenv gcc7; 6700 + }; 6694 6701 6695 6702 rakudo = callPackage ../development/interpreters/rakudo { 6696 6703 inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices; ··· 13730 13737 13731 13738 amsn = callPackage ../applications/networking/instant-messengers/amsn { }; 13732 13739 13733 - androidStudioPackages = callPackage ../applications/editors/android-studio/packages.nix {}; 13740 + androidStudioPackages = callPackage ../applications/editors/android-studio { }; 13734 13741 android-studio = androidStudioPackages.stable; 13735 13742 android-studio-preview = androidStudioPackages.preview; 13736 13743 ··· 17671 17678 17672 17679 blobby = callPackage ../games/blobby { }; 17673 17680 17681 + braincurses = callPackage ../games/braincurses { }; 17682 + 17674 17683 brogue = callPackage ../games/brogue { }; 17675 17684 17676 17685 bsdgames = callPackage ../games/bsdgames { }; ··· 17680 17689 bzflag = callPackage ../games/bzflag { }; 17681 17690 17682 17691 cataclysm-dda = callPackage ../games/cataclysm-dda { }; 17692 + 17693 + cataclysm-dda-git = callPackage ../games/cataclysm-dda/git.nix { }; 17683 17694 17684 17695 chessdb = callPackage ../games/chessdb { }; 17685 17696 ··· 18705 18716 HoTT = callPackage ../development/coq-modules/HoTT {}; 18706 18717 interval = callPackage ../development/coq-modules/interval {}; 18707 18718 mathcomp = callPackage ../development/coq-modules/mathcomp { }; 18719 + metalib = callPackage ../development/coq-modules/metalib { }; 18708 18720 paco = callPackage ../development/coq-modules/paco {}; 18709 18721 ssreflect = callPackage ../development/coq-modules/ssreflect { }; 18710 18722 QuickChick = callPackage ../development/coq-modules/QuickChick {};
+1 -1
pkgs/top-level/ocaml-packages.nix
··· 99 99 100 100 camomile_0_8_2 = callPackage ../development/ocaml-modules/camomile/0.8.2.nix { }; 101 101 camomile = 102 - if lib.versionOlder "4.03" ocaml.version 102 + if lib.versionOlder "4.02" ocaml.version 103 103 then callPackage ../development/ocaml-modules/camomile { } 104 104 else callPackage ../development/ocaml-modules/camomile/0.8.5.nix { }; 105 105
+50 -10
pkgs/top-level/perl-packages.nix
··· 2308 2308 }; 2309 2309 }; 2310 2310 2311 - ConfigGrammar = buildPerlPackage { 2312 - name = "Config-Grammar-1.11"; 2311 + ConfigGrammar = buildPerlPackage rec { 2312 + name = "Config-Grammar-1.12"; 2313 2313 src = fetchurl { 2314 - url = mirror://cpan/authors/id/D/DS/DSCHWEI/Config-Grammar-1.11.tar.gz; 2315 - sha256 = "dd819f89b19c51e9fac6965360cd9db54436e1328968c802416ac34188ca65ee"; 2314 + url = "mirror://cpan/authors/id/D/DS/DSCHWEI/${name}.tar.gz"; 2315 + sha256 = "7a52a3657d96e6f1f529caaa09ec3bf7dd6a245b47875382c323902f6d9590b0"; 2316 2316 }; 2317 2317 meta = { 2318 + homepage = https://github.com/schweikert/Config-Grammar; 2318 2319 description = "A grammar-based, user-friendly config parser"; 2319 - license = "unknown"; 2320 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 2320 2321 }; 2321 2322 }; 2322 2323 ··· 4812 4813 }; 4813 4814 }; 4814 4815 4815 - Encode = buildPerlPackage { 4816 - name = "Encode-2.78"; 4816 + Encode = buildPerlPackage rec { 4817 + name = "Encode-2.93"; 4817 4818 src = fetchurl { 4818 - url = mirror://cpan/authors/id/D/DA/DANKOGAI/Encode-2.78.tar.gz; 4819 - sha256 = "1fc8d5c0e75ef85beeac71d1fe4a3bfcb8207755a46b32f783a3a6682672762a"; 4819 + url = "mirror://cpan/authors/id/D/DA/DANKOGAI/${name}.tar.gz"; 4820 + sha256 = "2d06b0375c84a75cf3762685e6d94c3aef25833fd0427daa0ae87b04ae6f739c"; 4820 4821 }; 4821 4822 meta = { 4822 - description = "Unknown"; 4823 + description = "Character encodings in Perl"; 4823 4824 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 4824 4825 }; 4825 4826 }; ··· 5104 5105 buildInputs = [ PerlOSType ]; 5105 5106 }; 5106 5107 5108 + ExtUtilsCChecker = buildPerlPackage rec { 5109 + name = "ExtUtils-CChecker-0.10"; 5110 + src = fetchurl { 5111 + url = "mirror://cpan/authors/id/P/PE/PEVANS/${name}.tar.gz"; 5112 + sha256 = "50bfe76870fc1510f56bae4fa2dce0165d9ac4af4e7320d6b8fda14dfea4be0b"; 5113 + }; 5114 + buildInputs = [ ModuleBuild TestFatal ]; 5115 + meta = { 5116 + description = "Configure-time utilities for using C headers,"; 5117 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5118 + }; 5119 + }; 5120 + 5107 5121 ExtUtilsConfig = buildPerlPackage { 5108 5122 name = "ExtUtils-Config-0.007"; 5109 5123 src = fetchurl { ··· 5538 5552 sha256 = "c30c688027a52ff4f58cd69d6d8ef35472a7cf106d4ce94eb73a796ba7c7ffa7"; 5539 5553 }; 5540 5554 propagatedBuildInputs = [ CryptRijndael ]; 5555 + }; 5556 + 5557 + Filelchown = buildPerlPackage rec { 5558 + name = "File-lchown-0.02"; 5559 + src = fetchurl { 5560 + url = "mirror://cpan/authors/id/P/PE/PEVANS/${name}.tar.gz"; 5561 + sha256 = "a02fbf285406a8a4d9399284f032f2d55c56975154c2e1674bd109837b8096ec"; 5562 + }; 5563 + buildInputs = [ ExtUtilsCChecker ModuleBuild ]; 5564 + meta = { 5565 + description = "Modify attributes of symlinks without dereferencing them"; 5566 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5567 + }; 5541 5568 }; 5542 5569 5543 5570 FileLibMagic = buildPerlPackage rec { ··· 8151 8178 description = "The World-Wide Web library for Perl"; 8152 8179 license = with licenses; [ artistic1 gpl1Plus ]; 8153 8180 platforms = platforms.unix; 8181 + }; 8182 + }; 8183 + 8184 + LWPAuthenOAuth = buildPerlPackage rec { 8185 + name = "LWP-Authen-OAuth-1.02"; 8186 + src = fetchurl { 8187 + url = "mirror://cpan/authors/id/T/TI/TIMBRODY/${name}.tar.gz"; 8188 + sha256 = "e78e0bd7de8002cfb4760073258d555ef55b2c27c07a94b3d8a2166a17fd96bc"; 8189 + }; 8190 + propagatedBuildInputs = [ LWP URI ]; 8191 + meta = { 8192 + description = "Generate signed OAuth requests"; 8193 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 8154 8194 }; 8155 8195 }; 8156 8196
+1 -1
pkgs/top-level/python-packages.nix
··· 9082 9082 9083 9083 meta = { 9084 9084 description = "A command-line tool that helps you clean up Git branches"; 9085 - homepage = http://lab.arc90.com/2012/04/03/git-sweep/; 9085 + homepage = https://github.com/arc90/git-sweep; 9086 9086 license = licenses.mit; 9087 9087 maintainers = with maintainers; [ pSub ]; 9088 9088 };